summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 095cb547613013c7568f34f9f29bd6ce43a9ce4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
source 'https://rubygems.org'

gemspec

group :development do
  gem 'guard'
  gem 'guard-bundler'
  gem 'guard-rspec'
  gem 'simplecov'
  gem 'yard'
  gem 'redcarpet', :platform => :ruby
  gem 'kramdown',  :platform => :jruby
end

group :test do
  gem 'thor'
  gem 'rspec'
  gem 'rack'
end