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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17ae0df86dbc44d3a2cdba80bfe10b225b2c94bf
4
- data.tar.gz: 96affe19a633f65d347e8c71ab1132d9ee29a77a
3
+ metadata.gz: 84752110c7ee18d352068ecd1e4fdf8cf10fc062
4
+ data.tar.gz: 6a35bf6327a877c29e3b0c2bafd67b4c64d14445
5
5
  SHA512:
6
- metadata.gz: 65678a41217b856b79a2a1efc96164f6212862fe87f697823efb5b448facc7a2213d5f51cfe970c981addb0d1ee60889b637d114c30a6eb34d33100da34505ce
7
- data.tar.gz: f1de45a8c923b20d4f9f00d28d134313a2e70c0c768678917eff299270d610f34b66da335bd20bb0b588a2cbd0a2de69e8535a6ce439973e61f6d364c444b8d6
6
+ metadata.gz: 99e44042c3f12be76fe161f52a1887efc7837047034dd1d1d769caec70fca8da960723ee3206694048827cd26b5e9684ff4e6ce4f7183e7a261761bbce365bd6
7
+ data.tar.gz: 8acf884019eceec384940a95760b5ab383b0724ff516ab83272a9bd69f816a36816423309326d5f9073e463e9a76268f307f1feaa9fa0b03affc19e6160b709a
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
+ *.gem
1
2
  Gemfile.lock
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## 0.11.0
4
+
5
+ * New rubocop version 0.13
6
+
7
+ ## 0.10.0
8
+
9
+ * New configuration parameter `Concurrency`
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
@@ -1,7 +1,7 @@
1
1
  module RailsAudit
2
2
  class Version
3
3
  MAJOR = 0
4
- MINOR = 10
4
+ MINOR = 11
5
5
  PATCH = 0
6
6
 
7
7
  def self.to_s
@@ -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.12.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.10.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-12 00:00:00.000000000 Z
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.12.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.12.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