Sha256: 18e7197d70d89e4bb4e59f7166ca432e3293b8ca654230512d52088c71f6ecc4
Contents?: true
Size: 444 Bytes
Versions: 4
Compression:
Stored size: 444 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/indentation.rb'}" puts "Loading indentation gem" exec "#{irb} #{libs} --simple-prompt"
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
indentation-0.0.4 | script/console |
indentation-0.0.3 | script/console |
indentation-0.0.2 | script/console |
indentation-0.0.1 | script/console |