tips  

$ bundle
Fetching source index from http://rubygems.org/
Fetching source index from https://rubygems.org/

time for coffee break…but then I found this tip on bundler FAQ

$ bundle install --full-index

How much faster is it? Your mileage may vary.

 
0
Kudos
 
0
Kudos

Now read this

ruby defined? operator

Run this on ruby 1.9 require 'delegate' class Bam < SimpleDelegator def bam defined? Bam end def rails defined? Rails end end module Rails; end bam = Bam.new(Object.new) # I'm expecting "constant" to be returned but it's something... Continue →