sanctify 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +43 -0
- data/LICENSE.txt +21 -0
- data/README.md +53 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/sanctify +4 -0
- data/bin/setup +8 -0
- data/lib/sanctify/cli.rb +37 -0
- data/lib/sanctify/console.rb +6 -0
- data/lib/sanctify/matcher_list.rb +68 -0
- data/lib/sanctify/repo.rb +51 -0
- data/lib/sanctify/scanner.rb +45 -0
- data/lib/sanctify/version.rb +3 -0
- data/lib/sanctify.rb +9 -0
- data/sanctify.gemspec +38 -0
- metadata +137 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cde83032c8a8588fc9770cd52aac67cc1d2b7500
|
4
|
+
data.tar.gz: 4ba14ad8564b2fa57fe112854156f1677f6c74d1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9841359dfce42c32d930f83b75918be7d28592618535d07b07d8457514186bf4fa76cc0faf60ccedf9156484ecc94c49e04440ee185e6ca64043fd5a2bb02fba
|
7
|
+
data.tar.gz: 05a50c70ae9ca53472cbaeb0349b34faaf2f42f3132338bd2010ba130916334ba8683a6b0382a58e2e1c797ecdf9fbd003e488f8829c22c9f26bfa99ffb5c49b
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at jrcanty@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
sanctify (0.1.0)
|
5
|
+
git
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
coderay (1.1.2)
|
11
|
+
diff-lcs (1.3)
|
12
|
+
git (1.3.0)
|
13
|
+
method_source (0.9.0)
|
14
|
+
pry (0.11.3)
|
15
|
+
coderay (~> 1.1.0)
|
16
|
+
method_source (~> 0.9.0)
|
17
|
+
rake (10.5.0)
|
18
|
+
rspec (3.7.0)
|
19
|
+
rspec-core (~> 3.7.0)
|
20
|
+
rspec-expectations (~> 3.7.0)
|
21
|
+
rspec-mocks (~> 3.7.0)
|
22
|
+
rspec-core (3.7.0)
|
23
|
+
rspec-support (~> 3.7.0)
|
24
|
+
rspec-expectations (3.7.0)
|
25
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
26
|
+
rspec-support (~> 3.7.0)
|
27
|
+
rspec-mocks (3.7.0)
|
28
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
+
rspec-support (~> 3.7.0)
|
30
|
+
rspec-support (3.7.0)
|
31
|
+
|
32
|
+
PLATFORMS
|
33
|
+
ruby
|
34
|
+
|
35
|
+
DEPENDENCIES
|
36
|
+
bundler (~> 1.16)
|
37
|
+
pry
|
38
|
+
rake (~> 10.0)
|
39
|
+
rspec (~> 3.0)
|
40
|
+
sanctify!
|
41
|
+
|
42
|
+
BUNDLED WITH
|
43
|
+
1.16.0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Ryan Canty
|
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,53 @@
|
|
1
|
+
# Sanctify
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/sanctify`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem install 'sanctify'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install sanctify
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Run sanctify as part of the pre-commit hook, which will make sure to find and deny secrets before commit and PR. You can use the [precommit hook project](http://pre-commit.com/) to easily integrate this script with your repo.
|
26
|
+
|
27
|
+
Sancitfy has very simple usage:
|
28
|
+
|
29
|
+
```
|
30
|
+
Usage: sanctify [-r REPO_PATH] [-c CONFIG_PATH]
|
31
|
+
-r, --repo REPO Repo to test
|
32
|
+
-c, --config CONFIG Configuration file in YAML
|
33
|
+
-h, --help Prints this help
|
34
|
+
```
|
35
|
+
|
36
|
+
|
37
|
+
## Development
|
38
|
+
|
39
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
40
|
+
|
41
|
+
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).
|
42
|
+
|
43
|
+
## Contributing
|
44
|
+
|
45
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sanctify. 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.
|
46
|
+
|
47
|
+
## License
|
48
|
+
|
49
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
50
|
+
|
51
|
+
## Code of Conduct
|
52
|
+
|
53
|
+
Everyone interacting in the Sanctify project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sanctify/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# Run a Ruby REPL.
|
3
|
+
|
4
|
+
cd $(dirname "$0")/..
|
5
|
+
PRY_PATH=$(which pry)
|
6
|
+
|
7
|
+
if [ -x $PRY_PATH ]
|
8
|
+
then
|
9
|
+
exec bundle exec $PRY_PATH -Ilib -r sanctify -r sanctify/console
|
10
|
+
else
|
11
|
+
red='\e[0;31m'
|
12
|
+
endColor='\e[0m'
|
13
|
+
echo -e "${red}Pry was not found or not executable. Make sure `which pry` returns an exacutable.${endColor}"
|
14
|
+
fi
|
data/bin/sanctify
ADDED
data/bin/setup
ADDED
data/lib/sanctify/cli.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'optparse'
|
3
|
+
module Sanctify
|
4
|
+
class CliError < StandardError; end
|
5
|
+
class CLI
|
6
|
+
def self.run(argv)
|
7
|
+
args = {}
|
8
|
+
|
9
|
+
opt_parser = OptionParser.new do |opts|
|
10
|
+
opts.banner = "Usage: sanctify [-r REPO_PATH] [-c CONFIG_PATH]"
|
11
|
+
|
12
|
+
opts.on("-r REPO", "--repo REPO", "Repo to test") do |repo|
|
13
|
+
args[:repo] = repo
|
14
|
+
end
|
15
|
+
|
16
|
+
opts.on("-c CONFIG", "--config CONFIG", "Configuration file in YAML") do |config|
|
17
|
+
args[:config] = YAML.load(File.open(config))
|
18
|
+
end
|
19
|
+
|
20
|
+
opts.on("-h", "--help", "Prints this help") do
|
21
|
+
puts opts
|
22
|
+
exit
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
opt_parser.parse!(argv)
|
27
|
+
if args[:repo].nil?
|
28
|
+
if Dir['.git'].empty?
|
29
|
+
raise Sanctify::CliError, "Repo not specified and current directory not a git repository."
|
30
|
+
else
|
31
|
+
args[:repo] = Dir.pwd
|
32
|
+
end
|
33
|
+
end
|
34
|
+
Scanner.new(args).run
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
module Sanctify
|
2
|
+
class ParserError < StandardError; end
|
3
|
+
class MatcherList
|
4
|
+
def initialize
|
5
|
+
@matchers = DEFAULT_MATCHERS
|
6
|
+
end
|
7
|
+
|
8
|
+
def add(desc:, regex:)
|
9
|
+
if desc.length.zero?
|
10
|
+
raise ParserError, "Description must exist and be greater length than zero"
|
11
|
+
end
|
12
|
+
|
13
|
+
unless regex.is_a? Regexp
|
14
|
+
raise ParserError, "Regex must be of type Regexp"
|
15
|
+
end
|
16
|
+
|
17
|
+
@matchers << { description: desc, regex: regex }
|
18
|
+
@matchers
|
19
|
+
end
|
20
|
+
|
21
|
+
def each(&blk)
|
22
|
+
@matchers.each &blk
|
23
|
+
end
|
24
|
+
|
25
|
+
DEFAULT_MATCHERS = [
|
26
|
+
{
|
27
|
+
description: "AWS Access Key ID",
|
28
|
+
regex: /AKIA[0-9A-Z]{16}/
|
29
|
+
},
|
30
|
+
{
|
31
|
+
description: "AWS Secret Key",
|
32
|
+
regex: /\b[\w\/&?=-@#$%\\^+]{40}\b/
|
33
|
+
},
|
34
|
+
{
|
35
|
+
description: "Redis URL with Password",
|
36
|
+
regex: /redis:\/\/[0-9a-zA-Z:@.\\-]+/
|
37
|
+
},
|
38
|
+
{
|
39
|
+
description: "URL Basic auth",
|
40
|
+
regex: /https?:\/\/[0-9a-zA-z_]+?:[0-9a-zA-z_]+?@.+?/
|
41
|
+
},
|
42
|
+
{
|
43
|
+
description:"Google Access Token",
|
44
|
+
regex: /ya29.[0-9a-zA-Z_\\-]{68}/
|
45
|
+
},
|
46
|
+
{
|
47
|
+
description: "Google API",
|
48
|
+
regex: /AIzaSy[0-9a-zA-Z_\\-]{33}/
|
49
|
+
},
|
50
|
+
{
|
51
|
+
description: "Slack API",
|
52
|
+
regex: /xoxp-\\d+-\\d+-\\d+-[0-9a-f]+/
|
53
|
+
},
|
54
|
+
{
|
55
|
+
description: "Slack Bot",
|
56
|
+
regex: /xoxb-\\d+-[0-9a-zA-Z]+/
|
57
|
+
},
|
58
|
+
{
|
59
|
+
description: "Gem Fury v1",
|
60
|
+
regex: /https?:\/\/[0-9a-zA-Z]+@[a-z]+\\.(gemfury.com|fury.io)(\/[a-z]+)?/
|
61
|
+
},
|
62
|
+
{
|
63
|
+
description: "Gem Fury v2",
|
64
|
+
regex: /https?:\/\/[a-z]+\\.(gemfury.com|fury.io)\/[0-9a-zA-Z]{20}/
|
65
|
+
}
|
66
|
+
]
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'git'
|
2
|
+
|
3
|
+
module Sanctify
|
4
|
+
class Repo
|
5
|
+
attr_reader :path, :git, :ignored_paths
|
6
|
+
def initialize(path, ignored_paths = [])
|
7
|
+
@path = path
|
8
|
+
@git = Git.open(path)
|
9
|
+
@ignored_paths = ignored_paths
|
10
|
+
end
|
11
|
+
|
12
|
+
def diff(from = 'HEAD', to = nil)
|
13
|
+
# The diff processing is only done in the each method
|
14
|
+
# so we'll call this method as a singleton so we don't accidentally
|
15
|
+
# do this more than once per instance of the repo.
|
16
|
+
#
|
17
|
+
# NOTE: We expect this bydefault to be executed in a pre-commit hook
|
18
|
+
# but we may want to extend it to work with a static git repo as well.
|
19
|
+
@diff ||= git.diff(from, to).each.to_a
|
20
|
+
end
|
21
|
+
|
22
|
+
def added_lines
|
23
|
+
[].tap do |lines|
|
24
|
+
diff.each do |f|
|
25
|
+
next if f.type == 'deleted'
|
26
|
+
next if should_ignore? f.path
|
27
|
+
f.patch.split("\n").each do |line|
|
28
|
+
# don't include leading '+'
|
29
|
+
lines << [line[1..-1], f.path] if added_line? line
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
def should_ignore?(path)
|
38
|
+
# Add pattern matching for filenames so users can ignore files that
|
39
|
+
# they know contain secrets that they have accepted as false positive.
|
40
|
+
return false if ignored_paths.empty?
|
41
|
+
ignored_paths.each do |regex|
|
42
|
+
return true if regex.match(path)
|
43
|
+
end
|
44
|
+
false
|
45
|
+
end
|
46
|
+
|
47
|
+
def added_line?(line)
|
48
|
+
line.start_with?('+') && !line.start_with?('+++')
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'sanctify/matcher_list'
|
2
|
+
require 'sanctify/repo'
|
3
|
+
|
4
|
+
module Sanctify
|
5
|
+
class ScannerError < StandardError; end
|
6
|
+
class Scanner
|
7
|
+
attr_reader :config, :repo, :matcher_list
|
8
|
+
def initialize(args)
|
9
|
+
@config = args[:config] || {}
|
10
|
+
@repo = Repo.new(args[:repo], ignored_paths)
|
11
|
+
@matcher_list = MatcherList.new
|
12
|
+
end
|
13
|
+
|
14
|
+
def run
|
15
|
+
initialize_custom_matchers!
|
16
|
+
repo.added_lines.each do |line, path|
|
17
|
+
matcher_list.each do |matcher|
|
18
|
+
if matcher[:regex].match(line)
|
19
|
+
raise ScannerError, "[ERROR] SECRET FOUND (#{matcher[:description]}): #{line} : #{path}"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def ignored_paths
|
28
|
+
patterns = config['ignored_paths'] || []
|
29
|
+
patterns.map { |patt| Regexp.new patt }
|
30
|
+
end
|
31
|
+
|
32
|
+
def initialize_custom_matchers!
|
33
|
+
custom_matchers = config['custom_matchers'] || []
|
34
|
+
if custom_matchers.any?
|
35
|
+
custom_matchers.each do |cust|
|
36
|
+
if cust['description'] && cust['regex']
|
37
|
+
matcher_list.add(desc: cust['description'], regex: Regexp.new(cust['regex']))
|
38
|
+
else
|
39
|
+
raise ScannerError, "Improperly configured custom matcher: #{cust}. Must include 'description' and 'regex'"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/lib/sanctify.rb
ADDED
data/sanctify.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "sanctify/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "sanctify"
|
8
|
+
spec.version = Sanctify::VERSION
|
9
|
+
spec.authors = ["Ryan Canty"]
|
10
|
+
spec.email = ["jrcanty@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Let's you know about all the potential keys you're about to push in a Git commit}
|
13
|
+
spec.description = %q{Let's you know about all the potential keys you're about to push in a Git commit}
|
14
|
+
spec.homepage = "https://github.com/onetwopunch/sanctify"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing 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 " \
|
23
|
+
"public gem pushes."
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
34
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
35
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
36
|
+
spec.add_development_dependency "pry"
|
37
|
+
spec.add_runtime_dependency "git"
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sanctify
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ryan Canty
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-01-08 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
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: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: git
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Let's you know about all the potential keys you're about to push in a
|
84
|
+
Git commit
|
85
|
+
email:
|
86
|
+
- jrcanty@gmail.com
|
87
|
+
executables: []
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rspec"
|
93
|
+
- ".travis.yml"
|
94
|
+
- CODE_OF_CONDUCT.md
|
95
|
+
- Gemfile
|
96
|
+
- Gemfile.lock
|
97
|
+
- LICENSE.txt
|
98
|
+
- README.md
|
99
|
+
- Rakefile
|
100
|
+
- bin/console
|
101
|
+
- bin/sanctify
|
102
|
+
- bin/setup
|
103
|
+
- lib/sanctify.rb
|
104
|
+
- lib/sanctify/cli.rb
|
105
|
+
- lib/sanctify/console.rb
|
106
|
+
- lib/sanctify/matcher_list.rb
|
107
|
+
- lib/sanctify/repo.rb
|
108
|
+
- lib/sanctify/scanner.rb
|
109
|
+
- lib/sanctify/version.rb
|
110
|
+
- sanctify.gemspec
|
111
|
+
homepage: https://github.com/onetwopunch/sanctify
|
112
|
+
licenses:
|
113
|
+
- MIT
|
114
|
+
metadata:
|
115
|
+
allowed_push_host: https://rubygems.org/
|
116
|
+
post_install_message:
|
117
|
+
rdoc_options: []
|
118
|
+
require_paths:
|
119
|
+
- lib
|
120
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
requirements: []
|
131
|
+
rubyforge_project:
|
132
|
+
rubygems_version: 2.5.2
|
133
|
+
signing_key:
|
134
|
+
specification_version: 4
|
135
|
+
summary: Let's you know about all the potential keys you're about to push in a Git
|
136
|
+
commit
|
137
|
+
test_files: []
|