forked from product-definition-center/pdc-ruby-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (32 loc) · 660 Bytes
/
Copy pathGemfile
File metadata and controls
37 lines (32 loc) · 660 Bytes
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
36
37
source 'https://rubygems.org'
group :tools do
gem 'guard', '<= 2.12.0'
gem 'guard-minitest', '~> 2.4.4'
gem 'guard-shell'
end
group :development do
gem 'awesome_print'
gem 'colorize'
gem 'pry'
gem 'pry-byebug'
gem 'rake', '~> 10.0'
gem 'rake-notes'
end
group :test do
gem 'coveralls'
gem 'minitest-focus'
gem 'minitest-reporters', '~> 1.1.9'
gem 'mocha'
gem 'simplecov'
gem 'timecop'
gem 'vcr'
gem 'webmock', '~> 1.18.0'
end
group :development, :test do
# Pronto
gem 'pronto'
gem 'pronto-flay', require: false
gem 'pronto-rubocop', require: false
end
# Specify your gem's dependencies in pdc-ruby.gemspec
gemspec