-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrp-api.gemspec
More file actions
34 lines (26 loc) · 1.38 KB
/
srp-api.gemspec
File metadata and controls
34 lines (26 loc) · 1.38 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
require_relative "lib/srp/api/version"
Gem::Specification.new do |spec|
spec.name = "srp-api"
spec.version = Srp::Api::VERSION
spec.authors = ["Adam Milligan", "Grant Hutchins"]
spec.email = ["adam@srp-ok.com", "grant.hutchins@srp-ok.com"]
spec.summary = "Common API behavior"
spec.homepage = "https://github.com/StrongholdResourcePartners/srp-api"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/StrongholdResourcePartners/srp-api"
spec.metadata["changelog_uri"] = "https://github.com/StrongholdResourcePartners/srp-api/releases"
# 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__)) { `git ls-files -z`.split("\x0") }
spec.require_paths = ["lib"]
# Support both HTTP.rb 4 and 5
spec.add_dependency("http", ">= 4.4")
spec.add_development_dependency("activesupport")
spec.add_development_dependency("rake")
spec.add_development_dependency("rspec")
spec.add_development_dependency("rubocop")
end