Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I run the commands for the Annotate Model Gem to annotate my models I get the following errors and I used these two ways to install the gem:

$ annotate --exclude tests, fixtures
c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require':
        from c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:i
        from c:/Ruby192/lib/ruby/gems/1.9.1/gems/annotate-2.5.0/bin/annotate:3:i
        from c:/Ruby192/bin/annotate:19:in `load'
        from c:/Ruby192/bin/annotate:19:in `<main>'

$ bundle exec annotate --exclude tests, fixtures
c:/Ruby192/lib/ruby/gems/1.9.1/gems/annotate-2.5.0/bin/annotate:3:in `require': no such file to load -- rake/dsl_definition (LoadError)
        from c:/Ruby192/lib/ruby/gems/1.9.1/gems/annotate-2.5.0/bin/annotate:3:in `<top (required)>'
        from c:/Ruby192/lib/ruby/gems/1.9.1/bin/annotate:19:in `load'
        from c:/Ruby192/lib/ruby/gems/1.9.1/bin/annotate:19:in `<main>'

Gemfile

gem "rails", "3.1.0"
gem "rake", "0.8.7"

group :development do
  gem "annotate", "2.5.0"
end

command line:

$ gem install annotate
Successfully installed annotate-2.5.0
1 gem installed

How can I get this gem to work?

share|improve this question
Is the group blob in a Gemfile? If so you probably just need to bundle install before you bundle exec. – Matt Glover Aug 5 '12 at 18:33
@MattGlover Yeah it is. Let me edit my question. – LearningRoR Aug 5 '12 at 18:36
What version of rake are you using? bundle exec rake --version – iltempo Aug 5 '12 at 18:36
@iltempo included too. It's "rake", "0.8.7". – LearningRoR Aug 5 '12 at 18:38

1 Answer

up vote 3 down vote accepted

Update rake please. Rake::DSL has been introduced in version 0.9.

bundle update rake
share|improve this answer
Ok Cool. I uninstalled rake 0.8.7 and went to "rake", "0.9.2.2". Thanks. – LearningRoR Aug 5 '12 at 18:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.