Remove upper dependency for activerecord
We are trying to test our application on rails 6.0.0.alpha but we can't install this because of the version lock Probably this will be helpful that we can try and report any issues with edge rails
Showing
... | ... | @@ -7,14 +7,18 @@ platforms :jruby do |
end | ||
platforms :rbx do | ||
gem 'rubinius-developer_tools' | ||
gem 'rubysl', '~> 2.0' | ||
gem 'rubysl-test-unit' | ||
gem 'rubinius-developer_tools' | ||
end | ||
rails = ENV['RAILS'] || '~> 5.2.0' | ||
gem 'rails', rails | ||
if rails == 'master' | ||
gem 'rails', github: 'rails/rails' | ||
else | ||
gem 'rails', rails | ||
end | ||
# Specify your gem's dependencies in paranoia.gemspec | ||
gemspec |
... | ... | @@ -24,7 +24,7 @@ Gem::Specification.new do |s| |
s.required_ruby_version = '>= 2.0' | ||
s.add_dependency 'activerecord', '>= 4.0', '< 5.3' | ||
s.add_dependency 'activerecord', '>= 4.0' | ||
s.add_development_dependency "bundler", ">= 1.0.0" | ||
s.add_development_dependency "rake" | ||
... | ... |
Please
register
or
sign in
to comment