1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/script/console

10 lines
436 B
Text
Raw Normal View History

2009-12-15 00:35:55 -05:00
#!/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'}"
2009-12-15 00:39:44 -05:00
libs << " -I #{File.dirname(__FILE__) + '/../lib'} -r v8"
2009-12-15 00:35:55 -05:00
puts "Loading therubyracer gem"
exec "#{irb} #{libs} --simple-prompt"