-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added license information to the gemspec. closes #98
- Loading branch information
Showing
1 changed file
with
15 additions
and
14 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,27 +1,28 @@ | ||
lib = File.expand_path("../lib/", __FILE__) | ||
lib = File.expand_path('../lib/', __FILE__) | ||
$:.unshift lib unless $:.include?(lib) | ||
|
||
require "httpi/version" | ||
require 'httpi/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "httpi" | ||
s.name = 'httpi' | ||
s.version = HTTPI::VERSION | ||
s.authors = ["Daniel Harrington", "Martin Tepper"] | ||
s.email = "[email protected]" | ||
s.homepage = "http://github.com/savonrb/#{s.name}" | ||
s.authors = ['Daniel Harrington', 'Martin Tepper'] | ||
s.email = '[email protected]' | ||
s.homepage = 'http://github.com/savonrb/#{s.name}' | ||
s.summary = "Common interface for Ruby's HTTP libraries" | ||
s.description = s.summary | ||
|
||
s.rubyforge_project = s.name | ||
s.license = 'MIT' | ||
|
||
s.add_dependency "rack" | ||
s.add_dependency "rubyntlm", "~> 0.3.2" | ||
s.add_dependency 'rack' | ||
s.add_dependency 'rubyntlm', '~> 0.3.2' | ||
|
||
s.add_development_dependency "rake", "~> 10.0" | ||
s.add_development_dependency "rspec", "~> 2.12" | ||
s.add_development_dependency "mocha", "~> 0.13" | ||
s.add_development_dependency "puma", "~> 2.3.2" | ||
s.add_development_dependency 'rake', '~> 10.0' | ||
s.add_development_dependency 'rspec', '~> 2.12' | ||
s.add_development_dependency 'mocha', '~> 0.13' | ||
s.add_development_dependency 'puma', '~> 2.3.2' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.require_path = "lib" | ||
s.files = `git ls-files`.split('\n') | ||
s.require_path = 'lib' | ||
end |