forked from AsteriskLabs/devise_google_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdevise_google_authenticator.gemspec
34 lines (30 loc) · 1.08 KB
/
devise_google_authenticator.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
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.16"
s.authors = ["Christian Frichot"]
s.date = "2015-02-08"
s.description = "Devise Google Authenticator Extension, for adding Google's OTP to your Rails apps!"
s.email = "[email protected]"
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.3',
'rotp' => '~> 1.6'
}.each do |lib, version|
s.add_runtime_dependency(lib, *version)
end
end