Hi Drew,

Here are my stats - windows 7. ruby 1.9.3p125 - radiant 1.1.0 - rake (10.0.3, 10.0.2)

OK, so this is quite similar to what I have here.
The rake version that works for me is 0.9.2.2

You can force install that version by doing:
cmd> gem install rake -v "=0.9.9.2"

Once that is done, go to the directory where you have your radiant project. That will have a file called Gemfile. Open it in a text editor and you will see these lines near the top.

source :rubygems

# If you make any changes in this file, please run `bundle install`.
# If new versions of your installed gems are available, run `bundle update`

gem "radiant", "~> 1.1.0"
gem "compass-rails", "~> 1.0.3"


Change that by adding in the specific version for rake - so the top few lines look like this:

source :rubygems

# If you make any changes in this file, please run `bundle install`.
# If new versions of your installed gems are available, run `bundle update`

gem "rake", "~> 0.9.2.2"
gem "radiant", "~> 1.1.0"
gem "compass-rails", "~> 1.0.3"

Now, on your command prompt, do:
cmd> bundle update

and then do the necessary to bootstrap the database.

Hope this helps.

Best Regards,
Mohit.




Reply via email to