-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathserrano.gemspec
More file actions
48 lines (41 loc) · 1.72 KB
/
Copy pathserrano.gemspec
File metadata and controls
48 lines (41 loc) · 1.72 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
42
43
44
45
46
47
48
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "serrano/version"
Gem::Specification.new do |s|
s.name = "serrano"
s.version = Serrano::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 3.0"
s.summary = "Crossref Client"
s.description = "Low Level Ruby Client for the Crossref Search API"
s.authors = "Scott Chamberlain"
s.email = "myrmecocystus@gmail.com"
s.homepage = "https://github.com/sckott/serrano"
s.licenses = "MIT"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.require_paths = ["lib"]
s.bindir = "bin"
s.executables = ["serrano"]
s.add_development_dependency "bundler", "~> 4.0", ">= 4.0.7"
s.add_development_dependency "json", "~> 2.18", ">= 2.18.1"
s.add_development_dependency "rake", "~> 13.0", ">= 13.0.1"
s.add_development_dependency "standard", "~> 1.54"
s.add_development_dependency "test-unit", "~> 3.7", ">= 3.7.7"
s.add_development_dependency "vcr", "~> 6.4"
s.add_development_dependency "webmock", "~> 3.26", ">= 3.26.1"
s.add_runtime_dependency "faraday", "~> 2.14", ">= 2.14.1"
s.add_runtime_dependency "faraday-follow_redirects", "~> 0.5.0"
s.add_runtime_dependency "multi_json", "~> 1.19", ">= 1.19.1"
s.add_runtime_dependency "rexml", "~> 3.4", ">= 3.4.4"
s.add_runtime_dependency "thor", "~> 1.5"
s.metadata = {
"documentation_uri" => "https://www.rubydoc.info/gems/serrano",
"changelog_uri" =>
"https://github.com/sckott/serrano/releases/tag/v#{s.version}",
"source_code_uri" => "https://github.com/sckott/serrano",
"bug_tracker_uri" => "https://github.com/sckott/serrano/issues"
}
end