views:

75

answers:

1

Environment: Ubuntu.

I have followed the instructions thusly:

$ sudo gem install gemsonrails

This runs successfully.

It fails on this step:

$ cd rails_app_folder 
$ gemsonrails

This fails because gemsonrails is not on the path. However runnings gemsonrails like so:

/blahblah/gemsonrails

Yields the following error message: : No such file or directory

Trying to run it from the gem's bin directory and attempting to supply a rails_root option gives the same error.

Ideas?

A: 

I gave up on gemsonrails and instead:

1) In your config/enviroment.rb, add a line

  config.gem "icalendar"

2) run

rake gems:unpack GEM=icalendar

then take a peek in vendor/gems/

James