Skip to content

Commit

Permalink
relax rails dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsuelim committed May 13, 2017
1 parent 10c53c5 commit 19ce76d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ gemspec
gem 'pry', group: :development

group :test do
gem 'actionpack', '5.1.0'
gem 'activerecord', '5.1.0'
gem 'actionpack', '5.1.1'
gem 'activerecord', '5.1.1'
# logstash does not release any gems on rubygems, but they have two gemspecs within their repo.
# Using the tag is an attempt of having a stable version to test against where we can ensure that
# we test against the correct code.
Expand Down
6 changes: 3 additions & 3 deletions lograge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '0.46.0'

s.add_runtime_dependency 'activesupport', '>= 4', '<= 5.1.0'
s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0'
s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0'
s.add_runtime_dependency 'activesupport', '>= 4', '< 5.2'
s.add_runtime_dependency 'actionpack', '>= 4', '< 5.2'
s.add_runtime_dependency 'railties', '>= 4', '< 5.2'
end

0 comments on commit 19ce76d

Please sign in to comment.