forked from CocoaPods/Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
31 lines (26 loc) · 961 Bytes
/
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
source 'https://rubygems.org'
gemspec
# This is the version that ships with OS X 10.10, so be sure we test against it.
# At the same time, the 1.7.7 version won't install cleanly on Ruby > 2.2,
# so we use a fork that makes a trivial change to a macro invocation.
gem 'json', :git => 'https://github.com/segiddins/json.git', :branch => 'seg-1.7.7-ruby-2.2'
group :development do
gem 'activesupport', '>= 4.0.2', '!= 4.2.11.12', '< 5' # Pinned < 5 to ensure we're speccing 4.x.x
gem 'public_suffix', '>= 2.0.5', '< 3' # pinned since 3+ drops support for Ruby 2.0
gem 'minitest', '5.12.0' # Pinned since > 5.12.0+ drops support for Ruby 2.0
gem 'bacon'
gem 'mocha'
gem 'mocha-on-bacon'
gem 'prettybacon'
gem 'rake', '~> 12.0'
gem 'vcr'
gem 'webmock'
gem 'codeclimate-test-reporter', '~> 0.4.1', :require => nil
gem 'rubocop', '~> 0.38.0'
end
group :debugging do
gem 'awesome_print'
gem 'kicker'
gem 'pry'
gem 'rb-fsevent'
end