miksturait / cucumber_fm-plugin

Help to manage with big amount of features in project (gui for rails)
http://cucumber.fm
MIT License
96 stars 2 forks source link

Missing documentation on installation #37

Closed meza closed 12 years ago

meza commented 12 years ago

I've tried some things that comes to mind when installing, but failed. Either there's a bug in the process somewhere, or I'm missing something from the documentation.

I created a new app, Added the gemfile contents bundle install rails plugin install ... and nothing happnes. The vendor/plugins/cucumber_fm-plugin directory ends up being empty.

Is that valid?

cs3b commented 12 years ago

Directory should not be empty ( you may have problem in rails master - plugins are removed - up 3.x it should work)

I've tested it with new rails (3.2.2)

204  rails new sample
205  cd sample/
206  ls
207  rails plugin install git://github.com/cs3b/cucumber_fm-plugin.git

first time it fail because i have enable therubyracer, together with that i've added two gems (diff-lcs and cucumber_fm-core)

208  vim Gemfile
209  bundle 
210  rails plugin install git://github.com/cs3b/cucumber_fm-plugin.git
211  ls
212  ls -alh
213  rails s

cucumber fm requires at least empty features directory

214  mkdir features
215  rails s
216  history

and i point browser to localhost:3000/documentation/features and get cucumber fm screen

meza commented 12 years ago

okay, I was missing therubyracer, which requires python too. I'll get back to you when I've installed them :)

meza commented 12 years ago

So it turns out V8 (dependency of therubyracer) cannot be installed on Windows. This makes cucumber_fm not installable on windows.

I'll go with linux, you just might want to add this to your readme :)

cs3b commented 12 years ago

it's rails thing - not related with this particular plugin at all, after I will rewrite it as gem it will not be relevant at all