forked from hmsimple/devise_google_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevise_google_authenticator.gemspec
More file actions
33 lines (29 loc) · 1000 Bytes
/
devise_google_authenticator.gemspec
File metadata and controls
33 lines (29 loc) · 1000 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
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = "devise_google_authenticator"
s.version = "0.3.4"
s.authors = ["Christian Frichot"]
s.date = "2012-04-06"
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.8.6'
s.required_rubygems_version = '>= 1.3.6'
s.add_development_dependency('bundler', '~> 1.1.3')
{
'rails' => ['>= 3.0.0'],
'devise' => ['>= 2.0.0'],
'rotp' => ['<= 1.3.2']
}.each do |lib, version|
s.add_runtime_dependency(lib, *version)
end
end