mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
85fa373cb4
Deprecation note indicates it will be removing even no-op support for 1.8, so clarify now that it won’t even be installed on those builds.
12 lines
272 B
Ruby
12 lines
272 B
Ruby
require File.expand_path('on_what', File.dirname(__FILE__))
|
|
source 'https://rubygems.org'
|
|
|
|
# Travis-only dependencies go here
|
|
if on_travis? && !on_1_8?
|
|
group :test do
|
|
gem 'codecov', :require => false
|
|
end
|
|
end
|
|
|
|
# Specify gem's dependencies in docile.gemspec
|
|
gemspec
|