mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 14:15:04 -05:00
18 lines
220 B
Ruby
Executable File
18 lines
220 B
Ruby
Executable File
#! /usr/bin/env ruby
|
|
|
|
$:.unshift File.dirname(__FILE__)
|
|
|
|
require 'octopress'
|
|
require 'irb'
|
|
require 'irb/completion'
|
|
|
|
ARGV.delete_if do |arg|
|
|
if arg =~ /(.+)=(.+)/
|
|
ENV[$1] = $2
|
|
else
|
|
false
|
|
end
|
|
end
|
|
|
|
IRB.start
|