-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04d7560
commit ae4a3d5
Showing
14 changed files
with
29 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,30 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "rake", "< 11" | ||
gem "rdoc", "~> 4.2.2" # This is to support Ruby 1.8 and 1.9 | ||
|
||
group :development do | ||
gem "pry" | ||
platforms :ruby_21 do | ||
gem "pry-byebug" | ||
end | ||
platforms :ruby_19, :ruby_20 do | ||
platforms :ruby_20 do | ||
gem "pry-debugger" | ||
gem "pry-stack_explorer" | ||
end | ||
end | ||
|
||
group :test do | ||
gem "addressable", "~> 2.3.6", :platforms => [:ruby_18] | ||
gem "childlabor" | ||
gem "coveralls", ">= 0.8.19" | ||
gem "json", "< 2" # This is to support Ruby 1.8 and 1.9 | ||
gem "mime-types", "~> 1.25", :platforms => [:jruby, :ruby_18] | ||
gem "rest-client", "~> 1.6.0", :platforms => [:jruby, :ruby_18] | ||
gem "mime-types", "~> 1.25", :platforms => [:jruby] | ||
gem "rest-client", "~> 1.6.0", :platforms => [:jruby] | ||
gem "rspec", ">= 3" | ||
gem "rspec-mocks", ">= 3" | ||
gem "rubocop", ">= 0.19", :platforms => [:ruby_20, :ruby_21, :ruby_22, :ruby_23, :ruby_24] | ||
gem "rubocop", ">= 0.19" | ||
gem "simplecov", ">= 0.13" | ||
gem "term-ansicolor", "~> 1.3.2" # This is to support Ruby 1.8 and 1.9 | ||
gem "tins", "< 1.7" # This is to support Ruby 1.8 and 1.9 | ||
if RUBY_VERSION < "1.9.3" | ||
gem "webmock", ">= 1.20", "< 2" # This is to support Ruby 1.8 and 1.9.2 | ||
gem "hashdiff", "< 0.3.6" # Hashdiff 0.3.6 no longer supports Ruby 1.8 | ||
else | ||
gem "webmock" | ||
end | ||
if RUBY_VERSION >= '1.9' | ||
# `did_you_mean` can't build with Ruby 1.8. | ||
gem 'did_you_mean' | ||
end | ||
gem "webmock" | ||
end | ||
|
||
gem 'did_you_mean' | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.