mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 06:05:00 -05:00
18 lines
220 B
Plaintext
18 lines
220 B
Plaintext
|
#! /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
|