-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplazucchini.gemspec
More file actions
41 lines (34 loc) · 1.73 KB
/
plazucchini.gemspec
File metadata and controls
41 lines (34 loc) · 1.73 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
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true
require_relative "lib/plazucchini/version"
Gem::Specification.new do |s|
s.name = "plazucchini"
s.version = Plazucchini::VERSION
s.authors = ["Geoff Ower"]
s.email = ["gdower@illinois.edu"]
s.summary = "Plazi TreatmentBank API Client"
s.description = "plazucchini is a low-level wrapper around the Plazi TreatmentBank API."
s.homepage = "https://github.com/SpeciesFileGroup/plazucchini"
s.license = "MIT"
s.required_ruby_version = ">= 2.5.0"
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = "https://github.com/SpeciesFileGroup/plazucchini"
s.metadata["changelog_uri"] = "https://github.com/SpeciesFileGroup/plazucchini/releases/tag/v#{s.version}"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
s.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|s|features)/}) }
end
s.bindir = "exe"
s.executables = s.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 2.1", ">= 2.1.4"
s.add_development_dependency "rake", "~> 13.0", ">= 13.0.1"
s.add_development_dependency "test-unit", "~> 3.3", ">= 3.3.6"
s.add_development_dependency "vcr", "~> 6.0"
s.add_development_dependency "webmock", "~> 3.18"
s.add_development_dependency "rexml", "~> 3.3", ">= 3.3.6"
s.add_runtime_dependency "faraday", "~> 2.2"
s.add_runtime_dependency "faraday-follow_redirects", "~> 0.1"
s.add_runtime_dependency "multi_json", "~> 1.15"
s.add_runtime_dependency "nokogiri", "~> 1.16"
end