Skip to content

Instantly share code, notes, and snippets.

@maiha
Created December 16, 2009 00:23
Show Gist options
  • Save maiha/257455 to your computer and use it in GitHub Desktop.
Save maiha/257455 to your computer and use it in GitHub Desktop.
### Problem (1.0.15)
% merb-gen app hello
/usr/local/lib/site_ruby/1.8/rubygems.rb:827:in `report_activate_error': RubyGem version error: thor(0.12.0 not ~> 0.9.9) (Gem::LoadError)
from /usr/local/lib/site_ruby/1.8/rubygems.rb:261:in `activate'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:296:in `activate'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:295:in `each'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:295:in `activate'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:296:in `activate'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:295:in `each'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:295:in `activate'
from /usr/local/lib/site_ruby/1.8/rubygems.rb:68:in `gem'
from /usr/bin/merb-gen:18
### Pessimistic Version Constraint is broken???
% vi specifications/merb-core-1.0.15.gemspec
- s.add_dependency(%q<thor>, ["~> 0.9.9"])
+ s.add_dependency(%q<thor>, [">= 0.9.9"])
### That's okey
% merb-gen app hello
Generating with app generator:
[ADDED] Rakefile
[ADDED] app/controllers/exceptions.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment