rvm/extoptparse

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
=begin
Copyright 2017 Michal Papis <mpapis@gmail.com>

This file is part of extoptparse.

Extoptparse is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Extoptparse is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with extoptparse.  If not, see <http://www.gnu.org/licenses/>.
=end

source "https://rubygems.org"

#ruby=2.4.1

gemspec

group :development do
  # statistics only on MRI 2.4 - avoid problems on older rubies
  gem "redcarpet",      :platforms => [:mri_24]
  gem "simplecov",      :platforms => [:mri_24]
  gem "coveralls",      :platforms => [:mri_24], require: false
  gem "guard",          :platforms => [:mri_24]
  gem "guard-minitest", :platforms => [:mri_24]
  gem "guard-yard",     :platforms => [:mri_24]
  gem "yard", ">=0.8.7.5", :platforms => [:mri_24]
end if RUBY_VERSION>='2.4.0'