blob: 9039b30717db7066c3c4fdf2194786c436e4f4c9 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | source 'https://rubygems.org'
gemspec
group :development do
  gem 'guard'
  gem 'guard-bundler'
  gem 'guard-rspec'
  gem 'yard'
  gem 'redcarpet'
end
group :test do
  gem 'thor'
  gem 'simplecov'
end
 |