forked from puppetlabs-toy-chest/razor-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (32 loc) · 1 KB
/
Gemfile
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
38
source 'https://rubygems.org'
raise 'Ruby should be >2.0' unless RUBY_VERSION.to_f > 2.0
gem 'rest-client', '> 2.0.0'
gem 'command_line_reporter', '>=3.0'
gem 'gettext-setup'
gem 'rack', '< 2.0.0', '>= 1.5.4'
gem 'multi_json'
group :doc do
gem 'yard'
gem 'kramdown'
end
# This group will be excluded by default in `torquebox archive`
group :test do
gem 'public_suffix', '~> 1.4.6'
gem 'rack-test'
gem 'rspec', '~> 2.13.0'
gem 'rspec-core', '~> 2.13.1'
gem 'rspec-expectations', '~> 2.13.0'
gem 'rspec-mocks', '~> 2.13.1'
gem 'simplecov'
gem 'webmock', '~> 2.3.1'
gem 'vcr', '~> 4.0.0'
end
group :development do
gem 'rake'
end
# This allows you to create `Gemfile.local` and have it loaded automatically;
# the purpose of this is to allow you to put additional development gems
# somewhere convenient without having to constantly mess with this file.
#
# Gemfile.local is in the .gitignore file; do not check one in!
eval(File.read(File.dirname(__FILE__) + '/Gemfile.local'), binding) rescue nil