brakeman 1.1.pre → 1.1.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.
- data/README.md +6 -0
- data/bin/brakeman +1 -1
- data/lib/brakeman.rb +1 -1
- data/lib/brakeman/version.rb +1 -1
- metadata +6 -8
data/README.md
CHANGED
@@ -77,6 +77,12 @@ Normally Brakeman will parse `routes.rb` and attempt to infer which controller m
|
|
77
77
|
|
78
78
|
Note that this will be enabled automatically if Brakeman runs into an error while parsing the routes.
|
79
79
|
|
80
|
+
If Brakeman is running a bit slow, try
|
81
|
+
|
82
|
+
brakeman --faster
|
83
|
+
|
84
|
+
This will disable some features, but will probably be much faster (currently it is the same as `--skip-libs --no-branching`). *WARNING*: This may cause Brakeman to miss some vulnerabilities.
|
85
|
+
|
80
86
|
By default, Brakeman will return 0 as an exit code unless something when very wrong. To return an error code when warnings were found:
|
81
87
|
|
82
88
|
brakeman -z
|
data/bin/brakeman
CHANGED
data/lib/brakeman.rb
CHANGED
data/lib/brakeman/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brakeman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 0
|
9
|
+
version: 1.1.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Justin Collins
|
@@ -212,13 +212,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
212
212
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
213
213
|
none: false
|
214
214
|
requirements:
|
215
|
-
- - "
|
215
|
+
- - ">="
|
216
216
|
- !ruby/object:Gem::Version
|
217
217
|
segments:
|
218
|
-
-
|
219
|
-
|
220
|
-
- 1
|
221
|
-
version: 1.3.1
|
218
|
+
- 0
|
219
|
+
version: "0"
|
222
220
|
requirements: []
|
223
221
|
|
224
222
|
rubyforge_project:
|