forked from Houdini/two_factor_authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwo_factor_authentication.gemspec
More file actions
44 lines (39 loc) · 1.67 KB
/
two_factor_authentication.gemspec
File metadata and controls
44 lines (39 loc) · 1.67 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
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "two_factor_authentication/version"
Gem::Specification.new do |s|
s.name = "two_factor_authentication"
s.version = TwoFactorAuthentication::VERSION.dup
s.authors = ["Dmitrii Golub"]
s.email = ["dmitrii.golub@gmail.com"]
s.homepage = "https://github.com/Houdini/two_factor_authentication"
s.summary = %q{Two factor authentication plugin for devise}
s.license = "MIT"
s.description = <<-EOF
### Features ###
* control sms code pattern
* configure max login attempts
* per user level control if he really need two factor authentication
* your own sms logic
EOF
s.rubyforge_project = "two_factor_authentication"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency 'rails', '>= 5.2'
s.add_runtime_dependency 'devise', '>= 4.8'
s.add_runtime_dependency 'randexp', '>= 0.1.7'
s.add_runtime_dependency 'rotp', '>= 6.0'
s.add_runtime_dependency 'encryptor', '>= 3.0.0'
s.add_development_dependency 'bundler', '>= 2.4'
s.add_development_dependency 'rake', '>= 13.0'
s.add_development_dependency 'rspec-rails', '>= 5.1'
s.add_development_dependency 'capybara', '>= 3.39'
s.add_development_dependency 'benchmark'
s.add_development_dependency 'bigdecimal'
s.add_development_dependency 'mutex_m'
s.add_development_dependency 'tsort'
s.add_development_dependency 'pry', '>= 0.14'
s.add_development_dependency 'timecop', '>= 0.9'
end