Organize Gemfile
This commit is contained in:
parent
a856736739
commit
b31c9d0048
1 changed files with 18 additions and 9 deletions
27
Gemfile
27
Gemfile
|
@ -1,12 +1,21 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
source "https://rubygems.org"
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
# Documentation
|
ruby '2.4.2'
|
||||||
gem "rdoc"
|
|
||||||
gem "redcarpet"
|
|
||||||
gem "thor"
|
|
||||||
gem "yard"
|
|
||||||
gem "yard-ghpages"
|
|
||||||
|
|
||||||
# Testing
|
gem 'thor'
|
||||||
gem "rubocop"
|
|
||||||
|
group :documentation do
|
||||||
|
gem 'rdoc'
|
||||||
|
gem 'redcarpet'
|
||||||
|
gem 'yard'
|
||||||
|
gem 'yard-ghpages'
|
||||||
|
end
|
||||||
|
|
||||||
|
group :test do
|
||||||
|
gem 'rubocop'
|
||||||
|
end
|
||||||
|
|
||||||
|
group :web do
|
||||||
|
gem 'rack'
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue