-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallow2-service.gemspec
More file actions
37 lines (29 loc) · 1.46 KB
/
allow2-service.gemspec
File metadata and controls
37 lines (29 loc) · 1.46 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
# frozen_string_literal: true
require_relative "lib/allow2_service/version"
Gem::Specification.new do |spec|
spec.name = "allow2-service"
spec.version = Allow2Service::VERSION
spec.authors = ["Allow2 Pty Ltd"]
spec.email = ["support@allow2.com"]
spec.summary = "Allow2 Parental Freedom Service SDK for Ruby"
spec.description = "Official Allow2 Parental Freedom Service SDK for Ruby -- for web services " \
"with user accounts (Rails apps, Sinatra, etc.). Handles OAuth2 pairing, " \
"permission checking, all 3 request types, voice codes, and feedback via " \
"the Allow2 Service API."
spec.homepage = "https://developer.allow2.com"
spec.license = "Proprietary"
spec.required_ruby_version = ">= 3.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Allow2/Allow2Ruby-Service"
spec.metadata["changelog_uri"] = "https://github.com/Allow2/Allow2Ruby-Service/blob/master/CHANGELOG.md"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?("spec/", ".git", ".github", "scripts/")
end
end
spec.require_paths = ["lib"]
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "webmock", "~> 3.18"
end