-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirbc
34 lines (30 loc) · 770 Bytes
/
irbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#require 'irb/ext/save-history'
##History configuration
#IRB.conf[:SAVE_HISTORY] = 1000
#IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history"
#require 'irb/completion'
## Standard interesting_methods method
#if (defined?interesting_methods).nil?
#class Object
#def interesting_methods
#(self.methods - Object.new.methods).sort
#end
#end
#end
## Load .railsrc if in the rails console
#load File.dirname(__FILE__) + '/.railsrc' if $0 == 'script/rails'
# Gem dependent configuration
#
# Colorize
#begin
#require 'wirble'
#Wirble.init
#Wirble.colorize
#colors = Wirble::Colorize.colors.merge({
#:object_class => :purple,
#:symbol => :purple,
#:symbol_prefix => :purple
#})
#Wirble::Colorize.colors = colors
#rescue
#end