forked from g3d/devise_google_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevise_google_authenticator.gemspec
More file actions
34 lines (31 loc) · 1.12 KB
/
devise_google_authenticator.gemspec
File metadata and controls
34 lines (31 loc) · 1.12 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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = "devise_google_authenticator"
s.version = "0.3.19"
s.authors = ["Christian Frichot"]
s.date = "2016-08-12"
s.description = "Devise Google Authenticator Extension, for adding Google's OTP to your Rails apps!"
s.email = "xntrik@gmail.com"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = Dir["{app,config,lib}/**/*"] + %w[LICENSE.txt README.rdoc]
s.homepage = "http://github.com/AsteriskLabs/devise_google_authenticator"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.summary = "Devise Google Authenticator Extension"
s.required_ruby_version = '>= 1.9.2'
# s.required_rubygems_version = '>= 2.1.0'
{
# 'railties' => '~> 3.0',
# removed the following to try and get past this bundle update not finding compatible versions for gem issue
# 'actionmailer' => '>= 3.0',
#'actionmailer' => '~> 3.2',# '>= 3.2.12',
'devise' => '~> 4.1.0',
'rotp' => '~> 1.6',
'rqrcode' => '~> 0.10.1'
}.each do |lib, version|
s.add_runtime_dependency(lib, *version)
end
end