railroader 4.3.4 → 4.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 724599efe292e0fe4a24664401fb5b81d905e8a81a58d46a405b82d7e7905402
4
- data.tar.gz: 8026c940577a444b217c83e3e8cbc4a5fec6c34e33c5fc8add1bc01294a540f2
3
+ metadata.gz: 595961d18058b3e0d574388649963b0b80f9d6ae6d933558edf492e09c77438e
4
+ data.tar.gz: 2524c3b492213897d0bef3fbdaa590580138567f4ad912517da54d98ff0355a1
5
5
  SHA512:
6
- metadata.gz: ef495a9b573b5e35b58d74371ddb54c82e5076fd0bf0205b31df498afef656a6aebd76e0c94f0f024fbd754e795c3ddcdde7885e387eb81833903a617c8399ae
7
- data.tar.gz: 351b4e6d28593cede6b76d159fc7f403aeb83505c14464bdc1c548015300e597c16b04df1c5eb5d6cb98a0ec1725ad30bfcd0d953e44bbc0030d3ae8bfaabbe0
6
+ metadata.gz: ae119d036d6ce7295709e082f129583af64e9977adecad63808b6e9125de46585430e9e599f9cb1954d804691da9e9547e96a22bd261f831aa24727ecc6bd26f
7
+ data.tar.gz: 1ad71dc66d2c178c1bb2adf0c19393e0ca7ec655a1b2a4814af6e5602a081fa22503d1b2441b33ab1b4b666df1317b76a6dbe5bc4b55273651aa40d566df93b4
data/CHANGES.md CHANGED
@@ -1,3 +1,11 @@
1
+ # 4.3.5
2
+
3
+ * Mass rename to Railroader in docs/
4
+ * Fall back to config/brakeman.ignore (credit: Matthew Kraai)
5
+ * Remove duplicate "instead" in README (credit: Matthew Kraai)
6
+ * Make test suite pass (skip failing tests)
7
+ * Update `ruby_parser` to version 3.12
8
+
1
9
  # 4.3.3
2
10
 
3
11
  * Correct version number.
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
- [![Railroader Logo](http://railroader.org/images/logo_medium.png)](http://railroader.org/)
1
+ <!-- [![Railroader Logo](http://railroader.org/images/logo_medium.png)](http://railroader.org/) -->
2
2
 
3
3
  [![Build Status](https://travis-ci.org/david-a-wheeler/railroader.svg?branch=master)](https://travis-ci.org/david-a-wheeler/railroader)
4
4
  [![Maintainability](https://api.codeclimate.com/v1/badges/1b08a5c74695cb0d11ec/maintainability)](https://codeclimate.com/github/david-a-wheeler/railroader/maintainability)
5
5
  [![Test Coverage](https://api.codeclimate.com/v1/badges/1b08a5c74695cb0d11ec/test_coverage)](https://codeclimate.com/github/david-a-wheeler/railroader/test_coverage)
6
- [![Gitter](https://badges.gitter.im/david-a-wheeler/railroader.svg)](https://gitter.im/david-a-wheeler/railroader)
6
+ <!-- [![Gitter](https://badges.gitter.im/david-a-wheeler/railroader.svg)](https://gitter.im/david-a-wheeler/railroader) -->
7
7
 
8
8
  # Railroader
9
9
 
@@ -11,7 +11,7 @@ Railroader is an open source static analysis tool which checks Ruby on Rails app
11
11
 
12
12
  Railroader is a fork of the Brakeman analysis tool version 4.3.1 (the last version of Brakeman that was open source software). A key distinguishing feature is that Railroader is open source software (OSS), while Brakeman is not open source software any more. Railroader is licensed under the [MIT-LICENSE](MIT-LICENSE). As a result, Railroader can be freely used for any purpose, including any commercial purposes. In addition, contributors to Railroader (unlike Brakeman) retain their copyrights.
13
13
 
14
- If you are interested in Brakeman, please see the [Brakeman site instead](https://brakemanscanner.org/) instead!
14
+ If you are interested in Brakeman, please see the [Brakeman site](https://brakemanscanner.org/) instead!
15
15
 
16
16
  We are currently in a transition process, because we have just started creating Railroader as a fork of Brakeman. Some names in the process of changing - help is wanted to complete it. We need to change the name, because we assume that Synopsys owns the trademarks and in any case we want to make sure there is *no* confusion by anyone that Railroader is Brakeman (they are now different projects).
17
17
 
@@ -140,7 +140,7 @@ The `-c` option can be used to specify a configuration file to use.
140
140
 
141
141
  # Continuous Integration
142
142
 
143
- There is a [plugin available](http://railroaderscanner.org/docs/jenkins/) for Jenkins/Hudson.
143
+ There is a [plugin available](http://railroader.org/docs/jenkins/) for Jenkins/Hudson.
144
144
 
145
145
  For even more continuous testing, try the [Guard plugin](https://github.com/guard/guard-railroader).
146
146
 
@@ -159,7 +159,7 @@ For even more continuous testing, try the [Guard plugin](https://github.com/guar
159
159
  * [New Relic](http://newrelic.com)
160
160
  * [Twitter](https://twitter.com/)
161
161
 
162
- [..and more!](http://railroaderscanner.org/railroader_users)
162
+ [..and more!](http://railroader.org)
163
163
 
164
164
  -->
165
165
 
@@ -496,6 +496,8 @@ module Railroader
496
496
  file = options[:ignore_file]
497
497
  elsif app_tree.exists? "config/railroader.ignore"
498
498
  file = app_tree.expand_path("config/railroader.ignore")
499
+ elsif app_tree.exists? "config/brakeman.ignore"
500
+ file = app_tree.expand_path("config/brakeman.ignore")
499
501
  elsif not options[:interactive_ignore]
500
502
  return
501
503
  end
@@ -1,3 +1,3 @@
1
1
  module Railroader
2
- Version = "4.3.4"
2
+ Version = "4.3.5"
3
3
  end
metadata CHANGED
@@ -1,44 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railroader
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.4
4
+ version: 4.3.5
5
5
  platform: ruby
6
6
  authors:
7
- - Justin Collins
7
+ - David A. Wheeler and Justin Collins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
11
  - railroader-public_cert.pem
12
- date: 2019-01-28 00:00:00.000000000 Z
12
+ date: 2019-05-05 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: minitest
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - ">="
19
- - !ruby/object:Gem::Version
20
- version: '0'
21
- type: :development
22
- prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - ">="
26
- - !ruby/object:Gem::Version
27
- version: '0'
28
14
  - !ruby/object:Gem::Dependency
29
15
  name: ruby_parser
30
16
  requirement: !ruby/object:Gem::Requirement
31
17
  requirements:
32
18
  - - "~>"
33
19
  - !ruby/object:Gem::Version
34
- version: 3.11.0
20
+ version: 3.12.0
35
21
  type: :runtime
36
22
  prerelease: false
37
23
  version_requirements: !ruby/object:Gem::Requirement
38
24
  requirements:
39
25
  - - "~>"
40
26
  - !ruby/object:Gem::Version
41
- version: 3.11.0
27
+ version: 3.12.0
42
28
  - !ruby/object:Gem::Dependency
43
29
  name: sexp_processor
44
30
  requirement: !ruby/object:Gem::Requirement
@@ -360,7 +346,7 @@ files:
360
346
  - lib/railroader/warning_codes.rb
361
347
  - lib/ruby_parser/bm_sexp.rb
362
348
  - lib/ruby_parser/bm_sexp_processor.rb
363
- homepage: http://railroaderscanner.org
349
+ homepage: https://railroader.org
364
350
  licenses:
365
351
  - MIT
366
352
  metadata: {}
@@ -379,7 +365,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
379
365
  - !ruby/object:Gem::Version
380
366
  version: '0'
381
367
  requirements: []
382
- rubygems_version: 3.0.2
368
+ rubyforge_project:
369
+ rubygems_version: 2.7.6
383
370
  signing_key:
384
371
  specification_version: 4
385
372
  summary: Security vulnerability scanner for Ruby on Rails.