Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@adamcrown
Last active November 7, 2023 06:34
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save adamcrown/932231 to your computer and use it in GitHub Desktop.
Save adamcrown/932231 to your computer and use it in GitHub Desktop.
My Bundler proof .irbrc file including wirble, awesome_print, hirb, console logging and route helpers
require 'rubygems' unless defined? Gem # rubygems is only needed in 1.8
def unbundled_require(gem)
loaded = false
if defined?(::Bundler)
Gem.path.each do |gems_path|
gem_path = Dir.glob("#{gems_path}/gems/#{gem}*").last
unless gem_path.nil?
$LOAD_PATH << "#{gem_path}/lib"
require gem
loaded = true
end
end
else
require gem
loaded = true
end
raise(LoadError, "couldn't find #{gem}") unless loaded
loaded
end
def load_gem(gem, &block)
begin
if unbundled_require gem
yield if block_given?
end
rescue Exception => err
warn "Couldn't load #{gem}: #{err}"
end
end
# Highlighting and other features
load_gem 'wirble' do
Wirble.init
Wirble.colorize
end
# Improved formatting for objects
load_gem 'awesome_print'
# Improved formatting for collections
load_gem 'hirb' do
Hirb.enable
end
# Show log in Rails console
if defined? Rails
require 'logger'
if Rails.version =~ /^2\./ # Rails 2.3
Object.const_set('RAILS_DEFAULT_LOGGER', Logger.new(STDOUT))
else # Rails 3
ActiveRecord::Base.logger = Logger.new(STDOUT) if defined? ActiveRecord
end
end
# Enable route helpers in Rails console
if defined? Rails
include Rails.application.routes.url_helpers
end
# Benchmarking helper (http://ozmm.org/posts/time_in_irb.html)
if defined? Benchmark
def benchmark(times = 1)
ret = nil
Benchmark.bm { |x| x.report { times.times { ret = yield } } }
ret
end
end
# Load and configure biola_web_services gem if it exists
# Grabs configuration values from environment variables upcased and prefixed with BIOLA_WS_
load_gem 'biola_web_services' do
BiolaWebServices.configure do |config|
[:url, :cert_path, :key_path, :key_password, :verify_ssl, :ssl_version].each do |key|
env_value = ENV["BIOLA_WS_#{key.upcase}"]
config.send(:"#{key}=", env_value)# unless env_value = nil?
end
end
end
# Random time method
class Time
def self.random(from=Time.at(0), to=Time.now)
Time.at rand(to.to_f - from.to_f) + from.to_f
end
end
@zaius
Copy link

zaius commented May 5, 2012

Adding the gem folder to $LOAD_PATH means that the require doesn't pass through the Gem system. Which means things like Gem.datadir('wirble') aren't going to work. Any idea on how to fix that?

@zaius
Copy link

zaius commented May 9, 2012

I've got a mostly working solution to the gem problem here:
https://github.com/zaius/dotfiles/blob/master/ruby/irbrc.symlink

@adamcrown
Copy link
Author

Interesting. I hadn't run into the Gem.datadir issue you mentioned previously. When I have some time I'll see if I can experiment with it a bit and maybe work some of your code into my .irbrc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment