bauditor 0.2.0 → 0.2.1

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: 569e1c31da771fbbe8da20df3f68fc15e2c0822b
4
- data.tar.gz: 6f63793b3521602932ff2a6df3f177768f7fb4cb
3
+ metadata.gz: 1f4f0ce9c0e5f448b630a2f56245013210cfd16b
4
+ data.tar.gz: 48a4cfbdb77bb35b9f58988c08e39c954c817296
5
5
  SHA512:
6
- metadata.gz: 1052e617fd8d32748bf99cd5403b6f4b731b5fde595db223002be3fd4fb99ff83c843935aa0d76ea499c7a7eb511a7e777ba05538be96e1eae0924252c71598f
7
- data.tar.gz: fb0dd540f76a51c187e691dcbefb1bc2287e2604423fed0218857f6ae3a4c04d31ec2696e329acd35031a9b8fc5fc0fb72f2bdd20a045793b3bc1433ee258620
6
+ metadata.gz: 5cef103a53dbbdcd147d162711dcdf563cd4c3b4008a9147d17647486413b5a9ec85ee91413fb37bb4aa6a2c14d0dc75999c96d070aa613a4be94e298970a9dd
7
+ data.tar.gz: 9c3b9714475c19961f16225607f4d7088186e7058c4de8fb9cb71b96b068fb93bcce1040e6101e1ea0b8e42bfbd841975fda34d3095d2f0d97d5e877fd911d86
data/README.md CHANGED
@@ -102,6 +102,11 @@ ____________________________________________
102
102
 
103
103
  ```
104
104
 
105
+ ## TODO
106
+
107
+ * option to set the `repo_path` instead of just `/tmp/bauditor`
108
+ * option to persist the repositories between runs and just do a `git pull` to speed things up a lot
109
+
105
110
  ## Development
106
111
 
107
112
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
data/lib/bauditor/cli.rb CHANGED
@@ -52,10 +52,9 @@ module Bauditor
52
52
  say "[BAUDITOR] fetching and auditing #{name}", :yellow
53
53
  hr
54
54
 
55
- git = `git clone #{repo} --branch master --single-branch #{name} 2>&1`
55
+ `git clone #{repo} --branch master --single-branch #{name}`
56
56
  unless $?.success?
57
57
  say "[BAUDITOR] error fetching git repo #{name}", :red
58
- puts git
59
58
  next
60
59
  end
61
60
 
@@ -1,3 +1,3 @@
1
1
  module Bauditor
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bauditor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lukas Eklund