railsware / capistrano-multiconfig

Capistrano extension that allows to use multiple configurations
MIT License
65 stars 19 forks source link

conflict with activesupport #5

Closed jhsu closed 12 years ago

jhsu commented 12 years ago

when the gem is included in a project where active support is loaded:

$ bundle exec rake --trace environment
wrong number of arguments (0 for 1)
activesupport-3.1.4/lib/active_support/dependencies.rb:232:in `load'
capistrano-multiconfig-0.0.3/lib/capistrano/multiconfig/configurations.rb:1:in `<top (required)>'
....

solution

# Gemfile
gem 'rails'
gem 'capistrano-multiconfig', :require => false

is this an issue? any ideas?

ayanko commented 12 years ago

This conflict is not activesupport or even rails related. New bundler is now more smarter so it can automatically load lib/foo/ext.rb for gem called foo-ext when Bundler.require invoked.

I'll fix it

ayanko commented 12 years ago

v0.0.4