forked from devise-two-factor/devise-two-factor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevise-two-factor.gemspec
More file actions
31 lines (27 loc) · 1.25 KB
/
devise-two-factor.gemspec
File metadata and controls
31 lines (27 loc) · 1.25 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
$:.push File.expand_path('lib', __dir__)
require 'devise_two_factor/version'
Gem::Specification.new do |s|
s.name = 'devise-two-factor'
s.version = DeviseTwoFactor::VERSION.dup
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.summary = 'Barebones two-factor authentication with Devise'
s.email = 'dev@bonus.ly'
s.homepage = 'https://gitlab.com/bonusly/engineering/gems/devise-two-factor'
s.description = 'Barebones two-factor authentication with Devise'
s.authors = ['Shane Wilton']
s.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/bonusly'
s.files = `git ls-files`.split("\n").delete_if { |x| x.match('demo/*') }
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
s.add_runtime_dependency 'activesupport', '<= 8.0'
s.add_runtime_dependency 'devise', '~> 4.0'
s.add_runtime_dependency 'railties', '<= 8.0'
s.add_runtime_dependency 'rotp', '~> 6.0'
s.add_development_dependency 'activemodel'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'bundler', '> 1.0'
s.add_development_dependency 'faker'
s.add_development_dependency 'rspec', '> 3'
s.add_development_dependency 'simplecov'
end