veye 0.3.0 → 0.3.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/bin/veye +4 -5
- data/changelogs.md +7 -0
- data/lib/veye/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f45186a4f142aaa95f9703081e1fa425c2220ad
|
|
4
|
+
data.tar.gz: 12035f5aeac5103658fb06615e24a39e97b338eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87e37785c818f5ec229fe307e5e0d30bea2f21b69c0c1289c7f8a3e163c133dc165e1cd81d63a5158d01fd037d37d2aa7263c31235e9ff3db0d43963f3df6dff
|
|
7
|
+
data.tar.gz: eef7eea3776520c7cce980e71e24595b4f532df8ac167a1b3141453519021bed5c5fe2601fb6adc49be53b55c92bdedb6341926426615ebc73bdfc078992ffa0
|
data/Gemfile.lock
CHANGED
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
|
-
|
|
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],
|
|
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
|
data/changelogs.md
CHANGED
|
@@ -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`
|
data/lib/veye/version.rb
CHANGED
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.
|
|
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-
|
|
13
|
+
date: 2016-09-05 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake
|