Skip to content

Commit

Permalink
(maint) do not install license_finder on appveyor on old rubies
Browse files Browse the repository at this point in the history
license_finder 4.0 and onwards contain a symlink that does not install
with older rubugem versions.

See pivotal/LicenseFinder#445 for a upstream fix
  • Loading branch information
DavidS committed Jan 4, 2018
1 parent b932ed9 commit dadbd22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ gemspec
group :tests do
gem 'coveralls'
gem 'codecov'
gem 'license_finder'
# license_finder does not install on windows using older versions of rubygems.
# ruby 2.4 is confirmed working on appveyor.
gem 'license_finder' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.4.0')
gem 'rake', '~> 10.0'
gem 'rspec', '~> 3.0'
gem 'rubocop-rspec'
Expand Down

0 comments on commit dadbd22

Please sign in to comment.