-
Notifications
You must be signed in to change notification settings - Fork 1
/
rodauth-select-account.gemspec
31 lines (24 loc) · 1.24 KB
/
rodauth-select-account.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
# frozen_string_literal: true
require File.expand_path("lib/rodauth/select-account/version", __dir__)
Gem::Specification.new do |spec|
spec.name = "rodauth-select-account"
spec.version = Rodauth::SelectAccount::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Tiago Cardoso"]
spec.email = ["[email protected]"]
spec.summary = "Multiple authenticated accounts per session in rodauth."
spec.description = "Multiple authenticated accounts per session in rodauth."
spec.homepage = "https://gitlab.com/os85/rodauth-select-account"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://gitlab.com/os85/rodauth-select-account"
spec.metadata["changelog_uri"] = "https://gitlab.com/os85/rodauth-select-account/-/blob/master/CHANGELOG.md"
spec.license = "Apache 2.0"
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*.rb", "locales/*", "templates/*", "CHANGELOG.md"]
spec.extra_rdoc_files = Dir["LICENSE.txt", "README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]
spec.add_dependency "rodauth", "~> 2.0"
spec.metadata = {
"rubygems_mfa_required" => "true"
}
end