diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2020-01-28 05:31:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-28 05:31:40 -0700 |
| commit | d91576b22be2179ee83c4b39df0239e90c6ea8a4 (patch) | |
| tree | 8e9548ac8602a14ca4a270fdcef8869360d409da /Gemfile | |
| parent | 7af00dee14c1b3bd0c187bb762b46fd670fbe8e4 (diff) | |
enable CI for Ruby 2.3 on Windows (PR #1526)
- move rubocop deps into group in Gemfile
- exclude lint group when building on Windows
- move simplecov dep to Gemfile
- disable lint deps on Ruby 2.3 on Windows
- pin version of bundler
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,6 +22,14 @@ group :docs do gem 'yard', require: false end +group :lint do + unless Gem.win_platform? && RUBY_ENGINE == 'ruby' && (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0') + gem 'rubocop', '~> 0.78.0', require: false + gem 'rubocop-rspec', '~> 1.37.0', require: false + end +end + group :coverage do - gem 'deep-cover-core', '~> 0.7.0', require: false if ENV.key? 'COVERAGE' + gem 'simplecov', '~> 0.17.0', require: false + gem 'deep-cover-core', '~> 0.7.0', require: false end |
