password_reuse_policy 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +72 -0
- data/Rakefile +15 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/password_reuse_policy.rb +10 -0
- data/lib/password_reuse_policy/ar.rb +17 -0
- data/lib/password_reuse_policy/configuration.rb +50 -0
- data/lib/password_reuse_policy/errors.rb +7 -0
- data/lib/password_reuse_policy/instance_methods.rb +30 -0
- data/lib/password_reuse_policy/mongo.rb +17 -0
- data/lib/password_reuse_policy/version.rb +3 -0
- data/password_reuse_policy.gemspec +38 -0
- data/password_reuse_policy_test.sqlite3 +0 -0
- metadata +179 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 011e5cab70f40a3ca19c0ef4b9e7a2b620dfd877
|
4
|
+
data.tar.gz: e0e8e781906132b4801aeda27e84e5d46ec0b402
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3d4088f9e8055eee4c4186013cff6ee26e35c4962e30b15818c0efc0ce14edcca3aa23f36bb9d36f195447f279d881837780442218de3c448218885e103ad26f
|
7
|
+
data.tar.gz: d9bae617a363acaf216344d33fd05bacf5aa1dadf30b7544f59d40a1941a24b29d1eadced5e65658478fffab7bca8735cef9f54add90d16d983d97f0ecf35aa7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
password_reuse_policy
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.3.0
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at naveenagarwal287@gmail.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Naveen Agarwal
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
# PasswordReusePolicy
|
2
|
+
|
3
|
+
It is a module/gem to set the password resue policy for the registered users. Means you can set a limit, only after which a user will be able to resue the same password. For example if a user's password is "12345" and limit is 3, then he can only use password "12345" again after setting three different password.
|
4
|
+
|
5
|
+
It should work with any authentication library which supports either active record or mongoid ORM. In case you have any difficulty in using this module in your applicaition do write me at [naveenagarwal287@gmail.com](mailto:naveenagarwal287@gmail.com)
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'password_reuse_policy'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install password_reuse_policy
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
I am setting the example here for rails app, you can use it in any ruby app.
|
26
|
+
|
27
|
+
Configuration:
|
28
|
+
|
29
|
+
create a file named `password_reuse_policy.rb`
|
30
|
+
|
31
|
+
To add default configuration:
|
32
|
+
|
33
|
+
```ruby
|
34
|
+
PasswordReusePolicy::Configuration.default!
|
35
|
+
```
|
36
|
+
|
37
|
+
To override default configuration:
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
PasswordReusePolicy::Configuration.config do |c|
|
41
|
+
c.number_of_passwords_cannot_be_used = 3 #default, number of last used password which can not be used
|
42
|
+
c.error_field_name = :password #default, error field name in which error will be set
|
43
|
+
c.password_field_name = :password #default, field name from which password should be picked
|
44
|
+
endc
|
45
|
+
```
|
46
|
+
|
47
|
+
Link to sample applciation, devise is used for authentication, it uses password field name by default in the model.
|
48
|
+
|
49
|
+
To check the usage with active record visit
|
50
|
+
[https://github.com/naveenagarwal/password_reuse_policy_testapp](https://github.com/naveenagarwal/password_reuse_policy_testapp)
|
51
|
+
|
52
|
+
To check the usage with mongoid visit
|
53
|
+
[https://github.com/naveenagarwal/password_reuse_policy_testapp/tree/mogoid_module_test](https://github.com/naveenagarwal/password_reuse_policy_testapp/tree/mogoid_module_test)
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
## Development
|
59
|
+
|
60
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
61
|
+
|
62
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
63
|
+
|
64
|
+
## Contributing
|
65
|
+
|
66
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/password_reuse_policy. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
67
|
+
|
68
|
+
|
69
|
+
## License
|
70
|
+
|
71
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
72
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
# require "rspec/core/rake_task"
|
3
|
+
|
4
|
+
# RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
desc "run all tests in spec folder"
|
7
|
+
task :test do
|
8
|
+
files = Dir.glob('spec/**/*.rb')
|
9
|
+
files.each do |file|
|
10
|
+
next if file == "spec/spec_helper.rb"
|
11
|
+
puts `ruby #{file}` if file.end_with? "_spec.rb"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
task :default => :test
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "password_reuse_policy"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require "password_reuse_policy/version"
|
2
|
+
require "password_reuse_policy/configuration"
|
3
|
+
require "password_reuse_policy/instance_methods"
|
4
|
+
require "password_reuse_policy/errors"
|
5
|
+
require "password_reuse_policy/mongo"
|
6
|
+
require "password_reuse_policy/ar"
|
7
|
+
|
8
|
+
module PasswordReusePolicy
|
9
|
+
|
10
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module PasswordReusePolicy::AR
|
2
|
+
module ClassMethods
|
3
|
+
def register!
|
4
|
+
raise PasswordReusePolicy::ActiveRecodNotFoundError, "Could not find actve record" unless defined? ActiveRecord
|
5
|
+
raise PasswordReusePolicy::ActiveRecodNotInherited, "Please inherit from active record class" unless ancestors.include? ActiveRecord::Base
|
6
|
+
|
7
|
+
serialize :last_used_passwords, Hash
|
8
|
+
before_save :set_last_used_passwords, :if => :password_present?
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.included(receiver)
|
13
|
+
receiver.extend ClassMethods
|
14
|
+
receiver.register!
|
15
|
+
receiver.send :include, PasswordReusePolicy::InstanceMethods
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'digest'
|
2
|
+
|
3
|
+
module PasswordReusePolicy
|
4
|
+
|
5
|
+
class Configuration
|
6
|
+
|
7
|
+
class << self
|
8
|
+
|
9
|
+
def default!
|
10
|
+
self.number_of_passwords_cannot_be_used = 3
|
11
|
+
self.error_field_name = :password
|
12
|
+
self.password_field_name = :password
|
13
|
+
end
|
14
|
+
|
15
|
+
def config
|
16
|
+
yield self
|
17
|
+
end
|
18
|
+
|
19
|
+
def password_field_name
|
20
|
+
@password_field_name
|
21
|
+
end
|
22
|
+
|
23
|
+
def password_field_name=(name)
|
24
|
+
@password_field_name = name.to_sym
|
25
|
+
end
|
26
|
+
|
27
|
+
def number_of_passwords_cannot_be_used
|
28
|
+
@number_of_passwords_cannot_be_used
|
29
|
+
end
|
30
|
+
|
31
|
+
def number_of_passwords_cannot_be_used=(number)
|
32
|
+
@number_of_passwords_cannot_be_used = number
|
33
|
+
end
|
34
|
+
|
35
|
+
def error_field_name
|
36
|
+
@error_field_name
|
37
|
+
end
|
38
|
+
|
39
|
+
def error_field_name=(name)
|
40
|
+
@error_field_name = name.to_sym
|
41
|
+
end
|
42
|
+
|
43
|
+
def encryption
|
44
|
+
Digest::MD5
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module PasswordReusePolicy::InstanceMethods
|
2
|
+
private
|
3
|
+
|
4
|
+
def password_present?
|
5
|
+
send(PasswordReusePolicy::Configuration.password_field_name).present?
|
6
|
+
end
|
7
|
+
|
8
|
+
def set_last_used_passwords
|
9
|
+
n = PasswordReusePolicy::Configuration.number_of_passwords_cannot_be_used
|
10
|
+
return false if n < 1
|
11
|
+
|
12
|
+
encryption = PasswordReusePolicy::Configuration.encryption
|
13
|
+
new_password = encryption.hexdigest public_send(PasswordReusePolicy::Configuration.password_field_name)
|
14
|
+
|
15
|
+
if self.last_used_passwords.values.include? new_password
|
16
|
+
self.errors.add(PasswordReusePolicy::Configuration.error_field_name, "Password can't be same as last #{n} passwords")
|
17
|
+
return false
|
18
|
+
else
|
19
|
+
set_new_password_hash_with new_password, n
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def set_new_password_hash_with new_password, n
|
24
|
+
used_passwords = (self.last_used_passwords || {}).to_a
|
25
|
+
used_passwords.unshift ["1", new_password]
|
26
|
+
used_passwords[1..-1].each { |used_password| used_password[0] = used_password[0].to_i + 1 }
|
27
|
+
used_passwords = used_passwords.take n
|
28
|
+
self.last_used_passwords = used_passwords.to_h
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module PasswordReusePolicy::Mongo
|
2
|
+
module ClassMethods
|
3
|
+
def register!
|
4
|
+
raise NoMongoid::DocumentError, "Mongoid::Document is not defiend" unless defined? Mongoid::Document
|
5
|
+
raise NoMongoid::DocumentError, "Mongoid::Document is not inlcuded in the class" unless self.include? Mongoid::Document
|
6
|
+
|
7
|
+
field :last_used_passwords, type: Hash, default: {}
|
8
|
+
before_save :set_last_used_passwords, :if => :password_present?
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.included(receiver)
|
13
|
+
receiver.extend ClassMethods
|
14
|
+
receiver.register!
|
15
|
+
receiver.send :include, PasswordReusePolicy::InstanceMethods
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'password_reuse_policy/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "password_reuse_policy"
|
8
|
+
spec.version = PasswordReusePolicy::VERSION
|
9
|
+
spec.authors = ["Naveen Agarwal"]
|
10
|
+
spec.email = ["naveenagarwal287@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Setup password resuse policy for your app.}
|
13
|
+
spec.description = %q{You can setup the check when a password can be reused by a user. It lets you configure the last 'n' password can not be used by user when they change it.}
|
14
|
+
spec.homepage = "https://github.com/naveenagarwal/password_reuse_policy"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
+
# delete this section to allow pushing this gem to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org/"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
+
spec.add_development_dependency "mongoid", "~> 5.0.0"
|
33
|
+
spec.add_development_dependency 'activerecord', '~> 4.2'
|
34
|
+
spec.add_development_dependency 'sqlite3', '~> 1.3.11'
|
35
|
+
spec.add_development_dependency "database_cleaner"
|
36
|
+
spec.add_development_dependency "pry"
|
37
|
+
spec.add_development_dependency "simplecov"
|
38
|
+
end
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: password_reuse_policy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Naveen Agarwal
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-01-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: mongoid
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 5.0.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 5.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activerecord
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sqlite3
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.3.11
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.3.11
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: database_cleaner
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: pry
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
description: You can setup the check when a password can be reused by a user. It lets
|
126
|
+
you configure the last 'n' password can not be used by user when they change it.
|
127
|
+
email:
|
128
|
+
- naveenagarwal287@gmail.com
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- ".gitignore"
|
134
|
+
- ".rspec"
|
135
|
+
- ".ruby-gemset"
|
136
|
+
- ".ruby-version"
|
137
|
+
- ".travis.yml"
|
138
|
+
- CODE_OF_CONDUCT.md
|
139
|
+
- Gemfile
|
140
|
+
- LICENSE.txt
|
141
|
+
- README.md
|
142
|
+
- Rakefile
|
143
|
+
- bin/console
|
144
|
+
- bin/setup
|
145
|
+
- lib/password_reuse_policy.rb
|
146
|
+
- lib/password_reuse_policy/ar.rb
|
147
|
+
- lib/password_reuse_policy/configuration.rb
|
148
|
+
- lib/password_reuse_policy/errors.rb
|
149
|
+
- lib/password_reuse_policy/instance_methods.rb
|
150
|
+
- lib/password_reuse_policy/mongo.rb
|
151
|
+
- lib/password_reuse_policy/version.rb
|
152
|
+
- password_reuse_policy.gemspec
|
153
|
+
- password_reuse_policy_test.sqlite3
|
154
|
+
homepage: https://github.com/naveenagarwal/password_reuse_policy
|
155
|
+
licenses:
|
156
|
+
- MIT
|
157
|
+
metadata:
|
158
|
+
allowed_push_host: https://rubygems.org/
|
159
|
+
post_install_message:
|
160
|
+
rdoc_options: []
|
161
|
+
require_paths:
|
162
|
+
- lib
|
163
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: '0'
|
168
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
173
|
+
requirements: []
|
174
|
+
rubyforge_project:
|
175
|
+
rubygems_version: 2.5.1
|
176
|
+
signing_key:
|
177
|
+
specification_version: 4
|
178
|
+
summary: Setup password resuse policy for your app.
|
179
|
+
test_files: []
|