Vote #74605
完了bundle install --without development test fails
0%
説明
When installing per the instructions at
http://www.redmine.org/projects/redmine/wiki/RedmineInstall
bundler completes without incident. However, I am unable to rake generate_secret_token (the next step)
I get the message:
redmine@shawshank ~/redmine-2.4.0 $ rake generate_secret_token Could not find gem 'database_cleaner (>= 0) ruby' in the gems available on this machine. Run `bundle install` to install missing gems.
This is because database_cleaner is part of the test section.
Solution: move database_cleaner out of test and into main
Workaround: bundle install --without development # maybe, trying this now.
journals
<pre>
redmine@shawshank ~/redmine-2.4.0 $ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [arm-linux-eabihf]
redmine@shawshank ~/redmine-2.4.0 $ rails -v
Could not find gem 'rmagick (>= 2.0.0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
</pre>
Currently stepping through the remaining missing requirements.
--------------------------------------------------------------------------------
Please head over to the forum#2 forum and post your support request there instead of posting it here as a defect in the tracker.
--------------------------------------------------------------------------------
It's not a support request (stepping through the rest of the requirements lead to no surprises). The fact of the matter is, the documented installation procedure is incorrect. I'm doing fine, but `bundle install --without development test` leads to a broken installation that needs to be repaired. Not exactly a rewarding OOB experience.
Not to worry, I can provide patches (just not at this moment). I suspect just moving database_cleaner to the main bundler set will do the trick, or, instructing users to install the rails gem first (iirc, Rails also provides database_cleaner).
--------------------------------------------------------------------------------
@rake generate_secret_token@ runs just fine for me when using @bundle install --without development test@. I'll remove this dependency anyway as it's no longer needed.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
related_issues
duplicates,Closed,15797,Could not find gem 'database_cleaner (>= 0) x86-mingw32' in the gems available on this machine.