forked from swiftype/swiftype-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswiftype.gemspec
25 lines (22 loc) · 996 Bytes
/
swiftype.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
$:.push File.expand_path("../lib", __FILE__)
require "swiftype/version"
Gem::Specification.new do |s|
s.name = "swiftype"
s.version = Swiftype::VERSION
s.authors = ["Quin Hoxie", "Matt Riley"]
s.email = ["[email protected]"]
s.homepage = "https://swiftype.com"
s.summary = %q{Official gem for accessing the Swiftype Search API}
s.description = %q{API client for accessing the Swiftype Search API with no dependencies (on Ruby 1.9, JSON needed for Ruby 1.8).}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rspec', '~> 3.0.0'
s.add_development_dependency 'awesome_print'
s.add_development_dependency 'vcr', '~> 2.9.0'
s.add_development_dependency 'webmock'
if RUBY_VERSION < '1.9'
s.add_runtime_dependency 'json'
end
end