This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
hypernova.gemspec
51 lines (47 loc) · 1.82 KB
/
hypernova.gemspec
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hypernova/version"
Gem::Specification.new do |spec|
spec.authors = [
'Jake Teton-Landis',
'Jordan Harband',
'Ian Christian Myers',
'Tommy Dang',
'Josh Perez'
]
spec.bindir = "exe"
spec.description = "[deprecated] A Ruby client for the Hypernova service"
spec.email = %w(
)
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.homepage = 'https://github.com/airbnb/hypernova-ruby'
spec.license = 'MIT'
spec.name = 'hypernova'
spec.require_paths = ["lib"]
spec.summary = %q{Batch interface for Hypernova, the React render service.}
spec.version = Hypernova::VERSION
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = 'https://rubygems.org'
spec.metadata['deprecated'] = 'true'
end
spec.add_development_dependency "json", "~> 1.8"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "simplecov", "~> 0.11"
spec.add_development_dependency "pry", "~> 0.10"
# this is pinned because ruby devs hate semver
# see https://github.com/bblimke/webmock/issues/667
spec.add_development_dependency "webmock", "=2.1.0"
# below works around travis-ci requiring github-pages-health-check, whose subdep public_suffix
# stopped being compatible with ruby 1.9
# see https://github.com/weppos/publicsuffix-ruby/issues/127
spec.add_development_dependency "public_suffix", "=1.4.6"
spec.add_runtime_dependency "faraday", "~> 0.8"
end