static_code_analyzer 0.1.1 → 0.1.2

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: 7ebe0dbaf028398f89480b21e0dd67ee8616dbaa
4
- data.tar.gz: 16ba9bbcb474a7a11184fd7e9f0106aa23ad9cdf
3
+ metadata.gz: e4206f34f4db9ad82b4d0ebd8fc6cd4105617c0b
4
+ data.tar.gz: 872f0d333ea38dc98d2cf64d8482067d27e78286
5
5
  SHA512:
6
- metadata.gz: e3c500ff7e1b3359435558d33c5b8c44799ea2a5923f2676e485b051e01472afe89cbc0b63367333fc6f3a930e3cdadd1db6b1aa27f688ae1c4e4e6b9a5dcf59
7
- data.tar.gz: c8bdb6a8c9cc6b19510ee2825bc6b8f51d23583a48050a380555b74a295c48a8df5f8b52cd05c981cd71694728a073eea914543dd41f5ab765bfe4bc2f6c6021
6
+ metadata.gz: 5dd0982877b58cf3e61000c1fd181ce21197938c395dc07fdc3c51193d6fb5134c1a47a49e84bba1ce3a182af75d46ae35bfabbd73109926d6ece47c43ed0aa6
7
+ data.tar.gz: 31e39d963db0f46eacce0fb6cd3ab4dd92c510383c135143f4226fa2224a5b22ca62e93bfbe3c141bce2dc4318576916ac76120567c05bcfa4691c2ca218b92d
data/bin/analyze CHANGED
@@ -1,3 +1,3 @@
1
- #!/bin/bash
1
+ #!/usr/bin/env ruby
2
2
 
3
- pronto run -f text -c origin/master
3
+ system 'pronto run -f text -c origin/master'
@@ -1,3 +1,3 @@
1
- #!/bin/bash
1
+ #!/usr/bin/env ruby
2
2
 
3
- pronto run -f gitlab -c origin/master
3
+ system 'pronto run -f gitlab -c origin/master'
@@ -1,3 +1,3 @@
1
1
  module StaticCodeAnalyzer
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: static_code_analyzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandr Bobrov
@@ -213,7 +213,6 @@ executables:
213
213
  - analyze
214
214
  - analyze_to_gitlab
215
215
  - console
216
- - setup
217
216
  extensions: []
218
217
  extra_rdoc_files: []
219
218
  files:
@@ -227,7 +226,6 @@ files:
227
226
  - bin/analyze
228
227
  - bin/analyze_to_gitlab
229
228
  - bin/console
230
- - bin/setup
231
229
  - lib/static_code_analyzer.rb
232
230
  - lib/static_code_analyzer/version.rb
233
231
  - static_code_analyzer.gemspec
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here