Sha256: 391ad727c1c4965de7e0f0e013ca465823188f744c1789b242b189bb21de1a26
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "has_email_authentication/version" Gem::Specification.new do |spec| spec.name = "has_email_authentication" spec.version = HasEmailAuthentication::VERSION spec.authors = ["Michael van Rooijen"] spec.email = ["michael@vanrooijen.io"] spec.summary = "The email equivalent of has_secure_password for ActiveRecord." spec.homepage = "https://github.com/mrrooijen/has_email_authentication" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.5.0" spec.add_dependency "activerecord", ">= 5.0.0" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 13.0.0" spec.add_development_dependency "rspec", "~> 3.9.0" spec.add_development_dependency "database_cleaner", "~> 1.8.0" spec.add_development_dependency "pry", "~> 0.12.0" spec.add_development_dependency "simplecov", "~> 0.18.0" spec.add_development_dependency "yard", "~> 0.9.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
has_email_authentication-1.0.0 | has_email_authentication.gemspec |