-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcufinder-ruby.gemspec
More file actions
29 lines (24 loc) · 1.16 KB
/
cufinder-ruby.gemspec
File metadata and controls
29 lines (24 loc) · 1.16 KB
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
Gem::Specification.new do |spec|
spec.name = "cufinder-ruby"
spec.version = "1.1.0"
spec.authors = ["CUFinder Team"]
spec.email = ["support@cufinder.io"]
spec.summary = "Ruby SDK for the CUFinder API"
spec.description = "Official Ruby SDK for accessing CUFinder's services"
spec.homepage = "https://github.com/cufinder/cufinder-ruby"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/cufinder/cufinder-ruby"
spec.metadata["changelog_uri"] = "https://github.com/cufinder/cufinder-ruby/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "httparty", "~> 0.21"
spec.add_dependency "json", "~> 2.6"
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "webmock", "~> 3.18"
spec.add_development_dependency "rake", "~> 13.0"
end