Sha256: 2e6c4c7167970349065355fa9be626ece932c548c3bea503c3f488b03ba4c2c0
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 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 = Dir['lib/**/*.{rb,rake}'] + Dir['bin/*'] gem.files += Dir['[A-Z]*'] + Dir['spec/**/*.rb'] gem.files.reject! { |fn| fn.include? "CVS" } 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 = GoogleAuthenticatorRails::VERSION gem.add_dependency "rotp", ">= 5.0", "< 7.0" gem.add_dependency "rails" gem.add_dependency "activerecord" gem.add_dependency "rqrcode" gem.add_dependency "actionpack" gem.add_development_dependency "rake", "~> 13.0" gem.add_development_dependency "rspec", "~> 3.4.0" gem.add_development_dependency "appraisal", "~> 2.4.1" gem.add_development_dependency "simplecov" gem.add_development_dependency "sqlite3", "~> 1.7" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
google-authenticator-rails-3.4.2 | google-authenticator.gemspec |
google-authenticator-rails-3.4.1 | google-authenticator.gemspec |