mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
408fdc7bc4
It appears that the codecov gem now uses the &. operator, which appeared in Ruby 2.3.
12 lines
311 B
Ruby
12 lines
311 B
Ruby
require File.expand_path("on_what", File.dirname(__FILE__))
|
|
source "https://rubygems.org"
|
|
|
|
# Travis-only dependencies go here
|
|
if on_travis? && !on_less_than_2_3? && !on_rubinius?
|
|
group :test do
|
|
gem "codecov", ">= 0.0.9", :require => false
|
|
end
|
|
end
|
|
|
|
# Specify gem's dependencies in docile.gemspec
|
|
gemspec
|