Sha256: 38c567866d05b1662ed91644ab42ac127f6237d9d9d1cf30b1e75d0e0411c29f

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/google-authenticator-rails/version', __FILE__)

version_info = RUBY_VERSION.split(".")

major  = version_info.first.to_i
minor  = version_info[1].to_i
hotfix = version_info.last.to_i

Gem::Specification.new do |gem|
  gem.authors       = ["Jared McFarland"]
  gem.email         = ["jared.online@gmail.com"]
  gem.description   = %q{Add the ability to use the Google Authenticator with ActiveRecord.}
  gem.summary       = %q{Add the ability to use the Google Authenticator with ActiveRecord.}
  gem.homepage      = "http://github.com/jaredonline/google-authenticator"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = "google-authenticator-rails"
  gem.require_paths = ["lib"]
  gem.version       = Google::Authenticator::Rails::VERSION

  gem.add_dependency "rotp", "= 1.6.1"
  gem.add_dependency "activerecord", "< 4.0.0"
  gem.add_dependency "google-qr"
  gem.add_dependency "actionpack"

  gem.add_development_dependency "rspec",     "~> 2.8.0"
  gem.add_development_dependency "appraisal", "~> 0.5.1"
  gem.add_development_dependency "sqlite3"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google-authenticator-rails-0.0.11 google-authenticator.gemspec
google-authenticator-rails-0.0.10 google-authenticator.gemspec
google-authenticator-rails-0.0.9 google-authenticator.gemspec
google-authenticator-rails-0.0.8 google-authenticator.gemspec