utils 0.0.92 → 0.0.93

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
  SHA1:
3
- metadata.gz: 79fb40212459e9a5a7c332973e3718b4a7f3ca79
4
- data.tar.gz: 7c5ad09472c4062e3f09c5dca40badcbd54abb3b
3
+ metadata.gz: 29dacde7557cc56ff5e5614c47ffc68a23a79e13
4
+ data.tar.gz: 085937d9bbae5dfbfd8eee8933d54ddf16a66ba6
5
5
  SHA512:
6
- metadata.gz: 68bbb3138bc801627eebdc1b2cf11a7d0333f66935c22253042fbd0f74243208bff748a1b828a469ddfac2bf5e4c79b6672257ea1836b610d743d8de57733169
7
- data.tar.gz: f431611a817490ecd008c66d0f98da18947823a16b1bea1a5c6d023a847fa63db88567f5cd4349a4e55658ea87c099d7f8f85e98fb6d08ed39fce3c1907dd6ec
6
+ metadata.gz: 6541c6878e9da7888076bf8af9809144a24cc9984973cd1cf15bdb8b6b4b118249b00260d95505d5a6c6ff8d65de3af69fd566024d451d3e12d59332a0fff5a6
7
+ data.tar.gz: 1eb727021979dbc3e956e7cc5937c1824e36c059f085141590c04df3247f0c55a76d607225489d519c7860ae5f56a7a001cad78c95f9445f430104534227d3a3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.92
1
+ 0.0.93
data/bin/brakeman2err CHANGED
@@ -8,7 +8,7 @@ include Tins::GO
8
8
  opt = go 'c'
9
9
  if opt['c']
10
10
  brakeman = `bundle exec which brakeman`.full? or fail "cannot find brakeman in path"
11
- system *%w'bundle exec brakeman -q -s brakeman_ignore --separate-models -o .brakeman.json' or fail "calling brakeman failed"
11
+ system *%w'bundle exec brakeman -q -s brakeman_ignore -o .brakeman.json' or fail "calling brakeman failed"
12
12
  end
13
13
  results = JSON File.read('.brakeman.json'), object_class: JSON::GenericObject
14
14
  puts "Found #{results.errors.size} errors and #{results.warnings.size} warnings.",
data/lib/utils/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Utils
2
2
  # Utils version
3
- VERSION = '0.0.92'
3
+ VERSION = '0.0.93'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/utils.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "utils"
5
- s.version = "0.0.92"
5
+ s.version = "0.0.93"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Florian Frank"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.92
4
+ version: 0.0.93
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank