rails-audit 0.10.0 → 0.11.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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +9 -0
- data/README.md +4 -0
- data/lib/rails-audit/version.rb +1 -1
- data/rails-audit.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84752110c7ee18d352068ecd1e4fdf8cf10fc062
|
|
4
|
+
data.tar.gz: 6a35bf6327a877c29e3b0c2bafd67b4c64d14445
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99e44042c3f12be76fe161f52a1887efc7837047034dd1d1d769caec70fca8da960723ee3206694048827cd26b5e9684ff4e6ce4f7183e7a261761bbce365bd6
|
|
7
|
+
data.tar.gz: 8acf884019eceec384940a95760b5ab383b0724ff516ab83272a9bd69f816a36816423309326d5f9073e463e9a76268f307f1feaa9fa0b03affc19e6160b709a
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -8,6 +8,10 @@ Rails projects
|
|
|
8
8
|
gem install rails-audit
|
|
9
9
|
rails-audit
|
|
10
10
|
|
|
11
|
+
Minor versions of the audit tools are fixed for a specific version of this gem.
|
|
12
|
+
Apart from bug fixes in those tools, the code audit results should thus not
|
|
13
|
+
vary if a specific version of this gem is included in a project's bundle.
|
|
14
|
+
|
|
11
15
|
## Audits
|
|
12
16
|
|
|
13
17
|
Additional parameters can be passed to any audit's binary by using an .audit.yml
|
data/lib/rails-audit/version.rb
CHANGED
data/rails-audit.gemspec
CHANGED
|
@@ -33,5 +33,5 @@ Gem::Specification.new do |s|
|
|
|
33
33
|
s.add_runtime_dependency 'consistency_fail'
|
|
34
34
|
s.add_runtime_dependency 'license_finder'
|
|
35
35
|
s.add_runtime_dependency 'rails_best_practices', '~> 1.14.0'
|
|
36
|
-
s.add_runtime_dependency 'rubocop', '~> 0.
|
|
36
|
+
s.add_runtime_dependency 'rubocop', '~> 0.13.0'
|
|
37
37
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-audit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Schramm
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-09-
|
|
11
|
+
date: 2013-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -128,14 +128,14 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - ~>
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: 0.
|
|
131
|
+
version: 0.13.0
|
|
132
132
|
type: :runtime
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
136
136
|
- - ~>
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: 0.
|
|
138
|
+
version: 0.13.0
|
|
139
139
|
description: "\n Runs multiple audit and review tools to ensure quality and security
|
|
140
140
|
of\n Rails projects\n "
|
|
141
141
|
email: cschramm@shakaweb.org
|
|
@@ -147,6 +147,7 @@ extra_rdoc_files:
|
|
|
147
147
|
files:
|
|
148
148
|
- .gitignore
|
|
149
149
|
- .rubocop.yml
|
|
150
|
+
- CHANGELOG.md
|
|
150
151
|
- Gemfile
|
|
151
152
|
- LICENSE
|
|
152
153
|
- README.md
|