veye 0.3.0 → 0.3.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: af2527fb1d10ea94e7076697eff2ae12019d70cd
4
- data.tar.gz: d8a973aee8d94fe95642949e441804cf205ce82c
3
+ metadata.gz: 3f45186a4f142aaa95f9703081e1fa425c2220ad
4
+ data.tar.gz: 12035f5aeac5103658fb06615e24a39e97b338eb
5
5
  SHA512:
6
- metadata.gz: 2d67a65cdcc2584150de45e9500fda3a713563937ccacf2ccf5b33b12c7ee6bf61338473d949bd526b3383d053fc2eba474fee7908c41ee3b015a84c81b5ace4
7
- data.tar.gz: a710c2cc3fe7dea6c296d73edae1efd2f60197f0362bd0c5dfd6a9d26b3630c7dd619dbf04ebf67fad94cf7b74ab1c221f77479ee1d2b25bea39222b32666a80
6
+ metadata.gz: 87e37785c818f5ec229fe307e5e0d30bea2f21b69c0c1289c7f8a3e163c133dc165e1cd81d63a5158d01fd037d37d2aa7263c31235e9ff3db0d43963f3df6dff
7
+ data.tar.gz: eef7eea3776520c7cce980e71e24595b4f532df8ac167a1b3141453519021bed5c5fe2601fb6adc49be53b55c92bdedb6341926426615ebc73bdfc078992ffa0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- veye (0.3.0)
4
+ veye (0.3.1)
5
5
  awesome_print (~> 1.7)
6
6
  gli (~> 2.14)
7
7
  naturalsorter (~> 3.0)
data/bin/veye CHANGED
@@ -216,11 +216,9 @@ command :projects do |c|
216
216
  help_now!("The filepath is missing.".color(:red)) if args.empty?
217
217
  filename = args.shift
218
218
  api_key = global_options[:api_key]
219
- org_name = (options[:org] || 'private')
220
- is_temp = (options[:temp] == true)
221
- visibility = (options[:public] == false ? 'private' : 'public')
219
+ org_name = (options[:org] || 'private')
222
220
 
223
- Veye::Project::Check.upload(api_key, filename, org_name, options[:team], is_temp, visibility, options)
221
+ Veye::Project::Check.upload(api_key, filename, org_name, options[:team], options)
224
222
  end
225
223
  end
226
224
 
@@ -517,8 +515,9 @@ command :github do |c|
517
515
  help_now!("the name of repository is mandatory".color(:red)) if args.empty?
518
516
  repo_name = args.shift
519
517
  api_key = global_options[:api_key]
518
+ branch = (options[:branch] || 'master')
520
519
 
521
- Veye::Github::Delete.delete_repo(api_key, repo_name, options)
520
+ Veye::Github::Delete.delete_repo(api_key, repo_name, branch, options)
522
521
  end
523
522
  end
524
523
  end #end of github comamnd
@@ -3,6 +3,13 @@
3
3
 
4
4
  ## Next release
5
5
 
6
+ ## 0.3.1 - 2016-09-05
7
+
8
+ * **FIX** - function signature mismatch in the `project check` command
9
+ * **FIX** - function signature mismatch in the `github delete` command
10
+
11
+ ## 0.3.0 - 2016-09-02
12
+
6
13
  * add vulnerability field for product details [#6](https://github.com/versioneye/veye/issues/6)
7
14
  * **BREAKING** - refactored the `veye info` command, which expect that a product language is explicitly specified with `--language` flag and allows,
8
15
  new command looks like this now `bundle exec bin/veye info --language=PHP --version='3.0.1' symfony/symfony --format=table`
@@ -1,5 +1,5 @@
1
1
  module Veye
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  BIGEYE = %q{
4
4
 
5
5
  _ __ _ ______
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: veye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - VersionEye GMBH
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-09-02 00:00:00.000000000 Z
13
+ date: 2016-09-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake