Hello…
I am trying to install Dradis on FreeBSD, and having some trouble. I followed the guide listed here and was able to complete most of the build. When trying to start Dradis it seemed like it was missing specific versions of some gems, but now Im at a point that I am not sure how to proceed.
Here is the error I am getting:
# sh /usr/local/etc/rc.d/dradis start
WARN: Unresolved specs during Gem::Specification.reset:
thor (< 2.0, >= 0.14.6)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
/usr/local/lib/ruby/gems/2.1/gems/bundler-1.10.5/lib/bundler/runtime.rb:34:in `block in setup': You have already activated activesupport 3.2.22, but your Gemfile requires activesupport 3.0.4. Prepending `bundle exec` to your command may solve this. (Gem::LoadError)
from /usr/local/lib/ruby/gems/2.1/gems/bundler-1.10.5/lib/bundler/runtime.rb:19:in `setup'
from /usr/local/lib/ruby/gems/2.1/gems/bundler-1.10.5/lib/bundler.rb:127:in `setup'
from /usr/local/dradis/server/config/boot.rb:8:in `<top (required)>'
from /usr/local/lib/ruby/site_ruby/2.1/rubygems/core_ext/kernel_require.rb:121:in `require'
from /usr/local/lib/ruby/site_ruby/2.1/rubygems/core_ext/kernel_require.rb:121:in `require'
from script/rails:35:in `<main>'
Here is what my gem list looks like:
# gem list
*** LOCAL GEMS ***
abstract (1.0.0)
actionmailer (3.2.22, 3.0.4)
actionpack (3.2.22, 3.0.4)
activemodel (3.2.22, 3.0.4)
activerecord (3.2.22, 3.0.4)
activeresource (3.2.22, 3.0.4)
activesupport (3.2.22, 3.0.4)
ansi (1.5.0)
arel (3.0.3, 2.0.10)
builder (3.0.4, 2.1.2)
bundler (1.10.5)
coffee-rails (3.2.2)
coffee-script (2.4.1)
coffee-script-source (1.9.1.1)
erubis (2.7.0, 2.6.6)
execjs (2.5.2)
hike (1.2.3)
i18n (0.7.0)
journey (1.0.4)
jquery-rails (3.1.3)
json (1.8.3)
json_pure (1.8.2)
mail (2.5.4, 2.2.20)
mime-types (1.25.1)
minitest (5.7.0)
multi_json (1.11.1)
polyglot (0.3.5)
rack (1.6.4, 1.4.7, 1.2.8)
rack-cache (1.2)
rack-mount (0.6.14)
rack-ssl (1.4.1)
rack-test (0.6.3, 0.5.7)
rails (3.2.22, 3.0.4)
railties (3.2.22, 3.0.4)
rake (10.4.2)
rdoc (3.12.2)
RedCloth (4.2.9, 4.2.5)
sass (3.4.15)
sass-rails (3.2.6)
sprockets (2.2.3)
sqlite3 (1.3.10)
sqlite3-ruby (1.3.2)
thor (0.19.1, 0.14.6)
tilt (2.0.1, 1.4.1)
treetop (1.6.3, 1.4.15)
turn (0.9.7)
tzinfo (0.3.44)
uglifier (2.7.1)
As you can see, I have two versions of activesupport installed which seems to be giving it problems. I tried uninstalling activesupport 3.2.22, but it complained about dependencies. Not sure where to go from here?
Any help would be appreciated.