├── bundle.gemspec └── Readme.md /bundle.gemspec: -------------------------------------------------------------------------------- 1 | Gem::Specification.new do |s| 2 | s.name = "bundle" 3 | s.version = "0.0.1" 4 | s.homepage = "http://gembundler.com" 5 | s.author = "Will Leinweber" 6 | s.email = "will@bitfission.com" 7 | s.summary = "s/bundle/bundler" 8 | s.description = "You really mean `gem install bundler`. It's okay. I'll fix it for you this one last time..." 9 | 10 | s.add_runtime_dependency "bundler" 11 | end 12 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Has this ever happened to you? 2 | ~ $ bundle 3 | /Library/Ruby/Site/1.8/rubygems.rb:779:in `report_activate_error': Could not find RubyGem bundler (>= 0) (Gem::LoadError) 4 | from /Library/Ruby/Site/1.8/rubygems.rb:214:in `activate' 5 | from /Library/Ruby/Site/1.8/rubygems.rb:1082:in `gem' 6 | from /usr/local/bin/bundle:18 7 | ~ $ gem install bundle 8 | ERROR: Could not find a valid gem 'bundle' (>= 0) in any repository 9 | ERROR: Possible alternatives: bundler, bungle, jbundle, jungle, sundae 10 | ~ $ echo every fucking time ahhhhhhhhhhhh 11 | every fucking time ahhhhhhhhhhhh 12 | ~ $ gem install bundler 13 | Successfully installed bundler-1.0.10 14 | 1 gem installed 15 | # Yeah me too. --------------------------------------------------------------------------------