forked from michaelbanfield/devise-pwned_password
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devise-pwned_password.gemspec
29 lines (23 loc) · 1.11 KB
/
devise-pwned_password.gemspec
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
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "devise/pwned_password/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "devise-pwned_password"
s.version = Devise::PwnedPassword::VERSION
s.authors = ["Michael Banfield"]
s.email = ["michael@michaelbanfield.com"]
s.homepage = "https://github.com/michaelbanfield/devise-pwned_password"
s.summary = "Devise extension that checks user passwords against the PwnedPasswords dataset."
s.description = "Devise extension that checks user passwords against the PwnedPasswords dataset https://haveibeenpwned.com/Passwords."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "devise", "~> 4"
s.add_dependency "pwned", "~> 2.0"
s.add_development_dependency "byebug"
s.add_development_dependency "capybara"
s.add_development_dependency "rails", "~> 5.1.2"
s.add_development_dependency "rubocop", "~> 0.52.1"
s.add_development_dependency "sqlite3"
end