-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebauthn-rails.gemspec
More file actions
27 lines (21 loc) · 995 Bytes
/
webauthn-rails.gemspec
File metadata and controls
27 lines (21 loc) · 995 Bytes
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
require_relative "lib/webauthn/rails/version"
Gem::Specification.new do |spec|
spec.name = "webauthn-rails"
spec.version = Webauthn::Rails::VERSION
spec.authors = [ "Cedarcode" ]
spec.email = [ "webauthn@cedarcode.com" ]
spec.homepage = "https://github.com/cedarcode/webauthn-rails"
spec.summary = "Authentication for Rails using Passkeys"
spec.description = "Provides a set of generators that will extend your Rails 8+ application's authentication
to enable Passkey usage as first or second factor."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.require_paths = %w[lib]
spec.required_ruby_version = ">= 3.2"
spec.add_dependency "railties", ">= 8"
end