-
Notifications
You must be signed in to change notification settings - Fork 2
/
rodauth-oauth.gemspec
35 lines (28 loc) · 1.5 KB
/
rodauth-oauth.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
# frozen_string_literal: true
require File.expand_path("lib/rodauth/oauth/version", __dir__)
Gem::Specification.new do |spec|
spec.name = "rodauth-oauth"
spec.version = Rodauth::OAuth::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Tiago Cardoso"]
spec.email = ["[email protected]"]
spec.summary = "Implementation of the OAuth 2.0 protocol on top of rodauth."
spec.description = "Implementation of the OAuth 2.0 protocol on top of rodauth."
spec.homepage = "https://gitlab.com/os85/rodauth-oauth"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata = {
"homepage_uri" => "https://os85.gitlab.io/rodauth-oauth/",
"documentation_uri" => "https://os85.gitlab.io/rodauth-oauth/rdoc/",
"bug_tracker_uri" => "https://gitlab.com/os85/rodauth-oauth/issues",
"source_code_uri" => "https://gitlab.com/os85/rodauth-oauth",
"changelog_uri" => "https://gitlab.com/os85/rodauth-oauth/-/blob/master/CHANGELOG.md",
"rubygems_mfa_required" => "true"
}
spec.license = "Apache-2.0"
spec.files = Dir["LICENSE.txt", "README.md", "MIGRATION-GUIDE-V1.md", "lib/**/*.{rb,erb}", "templates/*", "locales/**/*.yml", "CHANGELOG.md",
"doc/release_notes/*.md"]
spec.extra_rdoc_files = Dir["LICENSE.txt", "README.md", "MIGRATION-GUIDE-V1.md", "CHANGELOG.md", "doc/release_notes/*.md"]
spec.require_paths = ["lib"]
spec.add_dependency "base64"
spec.add_dependency "rodauth", "~> 2.0"
end