Last active
October 21, 2015 21:01
-
-
Save retrography/d2331bc08d7670f63377 to your computer and use it in GitHub Desktop.
Creates an Interactive Ruby RC file with decent history and color-coding.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
gem install awesome_print --conservative | |
# configuring irb | |
cat >> ~/.irbrc <<RCFromHere | |
IRB.conf[:SAVE_HISTORY] = 1000 | |
IRB.conf[:HISTORY_FILE] = "/Users/$USER/.irb-history" | |
IRB.conf[:EVAL_HISTORY] = 200 | |
require "awesome_print" | |
AwesomePrint.irb! | |
RCFromHere | |
# configuring pry | |
gem install pry-suite pry-theme pry-gist pry-awesome_print pry-editline pry-coolline --conservative | |
cat >> ~/.pryrc <<RCFromHere | |
Pry.config.theme = 'twilight' | |
def echo state | |
if state.is_a? FalseClass or state.is_a? TrueClass | |
Pry.config.print = state ? Pry::DEFAULT_PRINT : proc{} | |
result = Pry.config.print == Pry::DEFAULT_PRINT ? "Echo On" : "Echo Off" | |
Pry.output.puts result | |
else | |
Pry.output.puts state | |
end | |
end | |
RCFromHere | |
echo "All set!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run using: