diff options
| author | mo <mo@mokhan.ca> | 2018-05-07 13:10:50 -0600 |
|---|---|---|
| committer | mo <mo@mokhan.ca> | 2018-05-07 13:10:50 -0600 |
| commit | f6dc5b1a302351f2fbdc7b24131ec5124b61f61e (patch) | |
| tree | 918487f8e17e56fdbeaad1993a9aebb605ecfc1a /net-hippie.gemspec | |
initial commit.
Diffstat (limited to 'net-hippie.gemspec')
| -rw-r--r-- | net-hippie.gemspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-hippie.gemspec b/net-hippie.gemspec new file mode 100644 index 0000000..ab80998 --- /dev/null +++ b/net-hippie.gemspec @@ -0,0 +1,27 @@ + +lib = File.expand_path("../lib", __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require "net/hippie/version" + +Gem::Specification.new do |spec| + spec.name = "net-hippie" + spec.version = Net::Hippie::VERSION + spec.authors = ["mo"] + spec.email = ["mo@mokhan.ca"] + + spec.summary = %q{net/http for hippies.} + spec.description = %q{net/http for hippies.} + spec.homepage = "https://www.mokhan.ca/" + spec.license = "MIT" + + spec.files = `git ls-files -z`.split("\x0").reject do |f| + f.match(%r{^(test|spec|features)/}) + end + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler", "~> 1.16" + spec.add_development_dependency "rake", "~> 10.0" + spec.add_development_dependency "minitest", "~> 5.0" +end |
