-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
35 lines (27 loc) · 1.22 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
=begin
Copyright 2017 Michal Papis <[email protected]>
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'