-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Bundler resolves wrong depedency version #5444
Comments
Can you please share the output of |
Environment
Gemfile.lock
Gemspecsreleaf.gemspecrequire File.expand_path('lib/releaf/version', __dir__)
require File.expand_path('lib/releaf/gems', __dir__)
Gem::Specification.new do |s|
s.name = "releaf"
s.version = Releaf::VERSION
s.summary = "Administration interface for Ruby on Rails"
s.description = "Administration interface for Ruby on Rails"
s.authors = ["CubeSystems"]
s.email = '[email protected]'
s.homepage = 'https://github.com/cubesystems/releaf'
s.require_paths = %w(lib)
s.license = "MIT"
s.files = Dir["lib/**/*"] + ["LICENSE"]
s.test_files = Dir["spec/factories/**/*"] + Dir["spec/support/**/*"] + Dir["spec/*.rb"]
Releaf::GEMS.each do|gem|
s.add_dependency gem, Releaf::VERSION
end
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'capybara'
s.add_development_dependency 'poltergeist'
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'syntax'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-rcov'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'shoulda-matchers', '~> 2.8'
s.add_development_dependency 'db-query-matchers'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'timecop'
s.add_development_dependency 'with_model'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-nav'
s.add_development_dependency 'roo'
s.required_ruby_version = '>= 2.2.0'
end |
@miks Does it do the right thing with latest Rubygems installed? |
Yes, it's same with 2.6.10. |
Can you see if master, which includes #5443, resolves properly? Thanks! |
What's proper way to install gem from github branch? With tool like |
I installed latest version from master branch with
|
Ugh thanks, guess I'll have to see why the resolver is choking on this 😔 |
I don't understand this https://travis-ci.org/cubesystems/releaf/jobs/202965587 |
Can confirm this is fixed on |
Running
bundle install
with bundler version 1.14.4 I'm getting:Where in fact actionpack 4.2.7.1 depends on activesupport 4.2.7.1 (https://rubygems.org/gems/actionpack/versions/4.2.7.1)
Possible related with #5095
Bundler 1.13.6 is working correctly. I got this error on travis-ci where latest (1.14.4) version is used.
The text was updated successfully, but these errors were encountered: