source 'https://rubygems.org'
gemspec

gem 'rake'

group :development do
  # https://github.com/guard/guard
  gem 'guard'
  # https://github.com/guard/guard-rspec
  gem 'guard-rspec'
  # https://github.com/guard/guard-bundler
  gem 'guard-bundler'
end

group :test do
  # https://github.com/rspec/rspec
  gem 'rspec'
  # https://github.com/simplecov-ruby/simplecov
  gem 'simplecov', require: false
  # https://github.com/bblimke/webmock
  gem 'webmock'
end

group :development, :test do
  # https://github.com/pry/pry
  gem 'pry'
  # https://github.com/lsegal/yard
  gem 'yard'
  # https://github.com/airbnb/ruby/tree/master/rubocop
  gem 'rubocop'
  # https://github.com/airbnb/ruby/tree/master/rubocop-airbnb
  gem 'rubocop-airbnb'
end
