forked from bensie/enom
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from thewoolleyman/master
Add HTTP proxy support
- Loading branch information
Showing
7 changed files
with
44 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
source "http://rubygems.org" | ||
|
||
# chrisk is updating it, but hasn't released a gem yet - see https://github.com/chrisk/fakeweb/issues/57#issuecomment-325515168 | ||
# Once a gem is released, remove this line and uncomment the one in enom.gemspec | ||
gem 'fakeweb', git: 'https://github.com/chrisk/fakeweb.git' | ||
gem "jruby-openssl", :platform => :jruby | ||
|
||
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 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 |
---|---|---|
|
@@ -8,13 +8,15 @@ Gem::Specification.new do |s| | |
s.email = "[email protected]" | ||
s.files = %w( README.md Rakefile LICENSE ) + ["lib/enom.rb"] + Dir.glob("lib/enom/*.rb") + Dir.glob("lib/enom/commands/*.rb") + Dir.glob("test/**/*") + Dir.glob("bin/*") | ||
s.has_rdoc = false | ||
s.add_dependency "httparty", "~> 0.10.0" | ||
s.add_dependency "httparty", "~> 0.15" | ||
s.add_dependency "public_suffix", "~> 3.0.0" | ||
s.add_dependency "activesupport", "> 4.2" | ||
s.add_development_dependency "test-unit" | ||
s.add_development_dependency "shoulda" | ||
s.add_development_dependency "fakeweb" | ||
s.add_development_dependency "rake", "~> 0.9" | ||
s.add_development_dependency "shoulda", "~> 3.5" | ||
# chrisk is updating fakeweb, but hasn't released a gem yet - see https://github.com/chrisk/fakeweb/issues/57#issuecomment-325515168 | ||
# Once a gem is released, remove the line in the Gemfile and uncomment this one | ||
# s.add_development_dependency "fakeweb" | ||
s.add_development_dependency "rake", "~> 12.0" | ||
s.executables = %w(enom) | ||
s.default_executable = "enom" | ||
end |
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 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