Skip to content

Commit

Permalink
Merge pull request #451 from cucumber/feature/use-old-version-of-lice…
Browse files Browse the repository at this point in the history
…nse-finder

Use old version of license_finder for old rubies
  • Loading branch information
maxmeyer authored Jul 12, 2017
2 parents 757dc20 + ed586e7 commit a604649
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ group :development, :test do
# gem 'cucumber-pro', '~> 0.0'

# License compliance
gem 'license_finder', '~> 3.0'
if RUBY_VERSION < '2.3'
gem 'license_finder', '~> 2.0'
else
gem 'license_finder', '~> 3.0'
end

# Upload documentation
# gem 'relish', '~> 0.7.1'
Expand Down

0 comments on commit a604649

Please sign in to comment.