Skip to content

Commit

Permalink
Merge pull request #33 from asonas/feature/gemfile_group
Browse files Browse the repository at this point in the history
Add group to Gemfile
  • Loading branch information
sue445 committed Jan 8, 2018
2 parents bd491d2 + 42d7929 commit a1e221d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ source "https://rubygems.org"
gemspec

if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
gem "backport_dig"
group :test do
gem "backport_dig", group: :development
end
end

if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.2")
gem "activesupport", "< 5.0.0"
group :test do
gem "activesupport", "< 5.0.0", group: :development
end
end

0 comments on commit a1e221d

Please sign in to comment.