-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathact_as_api_client.gemspec
42 lines (35 loc) · 1.79 KB
/
act_as_api_client.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "act_as_api_client"
spec.version = "1.3.0"
spec.authors = ["Max Rukomoynikov"]
spec.email = ["[email protected]"]
spec.summary = "Collection of predefined API clients"
spec.description = "Helps you to build reliable API clients in a minute. Just add act_as_api_client to your classes"
spec.homepage = "https://rubygems.org/gems/act_as_api_client"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.metadata = {
"source_code_uri" => "https://github.com/Rukomoynikov/act_as_api_client",
"homepage_uri" => spec.homepage,
"documentation_uri" => "https://rukomoynikov.github.io/act_as_api_client/",
"bug_tracker_uri" => "https://github.com/Rukomoynikov/act_as_api_client/issues"
}
# 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.
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.require_paths = ["lib"]
spec.add_dependency "event_stream_parser"
# Uncomment to register a new dependency of your gem
spec.add_development_dependency "byebug", "~> 11.1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 0.80"
spec.add_development_dependency "rubocop-rspec"
spec.add_development_dependency "vcr", "~> 6.1"
spec.add_development_dependency "webmock", "~> 3.14"
# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html
end