Sha256: 8294cbf8eae1fc413be6741d7d19d6820ee37bb5a8b4f229d9753b719991f2a3

Contents?: true

Size: 442 Bytes

Versions: 11

Compression:

Stored size: 442 Bytes

Contents

#!/usr/bin/env ruby
# File: script/console
irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'

libs =  " -r irb/completion"
# Perhaps use a console_lib to store any extra methods I may want available in the cosole
# libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
libs <<  " -r #{File.dirname(__FILE__) + '/../lib/rubypython.rb'}"
puts "Loading rubypython gem"
exec "#{irb} #{libs} --simple-prompt"

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rubypython-0.2.10 script/console
rubypython-0.2.9 script/console
rubypython-0.2.8 script/console
rubypython-0.2.7 script/console
rubypython-0.2.0 script/console
rubypython-0.2.1 script/console
rubypython-0.2.6 script/console
rubypython-0.2.4 script/console
rubypython-0.2.2 script/console
rubypython-0.2.5 script/console
rubypython-0.2.3 script/console