You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
893 B
27 lines
893 B
13 years ago
|
# -*- 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
|
||
|
s.authors = ["Dmitrii Golub"]
|
||
|
s.email = ["dmitrii.golub@gmail.com"]
|
||
|
s.homepage = ""
|
||
|
s.summary = %q{Two factor authentication plugin for devise}
|
||
|
s.description = s.summary
|
||
|
|
||
|
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', '>= 3.1.1'
|
||
|
s.add_runtime_dependency 'devise'
|
||
|
s.add_runtime_dependency 'randexp'
|
||
|
|
||
|
s.add_development_dependency 'bundler'
|
||
|
end
|