veye 0.2.1 → 0.3.0

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.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +48 -41
  3. data/README.md +36 -17
  4. data/bin/veye +176 -47
  5. data/bundle +0 -0
  6. data/changelogs.md +19 -0
  7. data/lib/veye/api/package.rb +16 -2
  8. data/lib/veye/api/project.rb +41 -6
  9. data/lib/veye/base_executor.rb +81 -16
  10. data/lib/veye/github/delete.rb +2 -4
  11. data/lib/veye/github/import.rb +3 -4
  12. data/lib/veye/package/follow.rb +9 -9
  13. data/lib/veye/package/info.rb +4 -4
  14. data/lib/veye/package/references.rb +4 -6
  15. data/lib/veye/package/search.rb +2 -1
  16. data/lib/veye/package/versions.rb +37 -0
  17. data/lib/veye/package.rb +2 -0
  18. data/lib/veye/project/check.rb +19 -9
  19. data/lib/veye/project.rb +86 -2
  20. data/lib/veye/version.rb +1 -1
  21. data/lib/veye/views/base_csv.rb +1 -1
  22. data/lib/veye/views/github/info_csv.rb +1 -1
  23. data/lib/veye/views/github/info_pretty.rb +1 -1
  24. data/lib/veye/views/github/info_table.rb +2 -2
  25. data/lib/veye/views/package/info_csv.rb +4 -3
  26. data/lib/veye/views/package/info_pretty.rb +4 -2
  27. data/lib/veye/views/package/info_table.rb +4 -1
  28. data/lib/veye/views/package/versions_csv.rb +24 -0
  29. data/lib/veye/views/package/versions_json.rb +15 -0
  30. data/lib/veye/views/package/versions_pretty.rb +23 -0
  31. data/lib/veye/views/package/versions_table.rb +27 -0
  32. data/lib/veye/views/package.rb +4 -0
  33. data/lib/veye/views/project/dependency_csv.rb +18 -10
  34. data/lib/veye/views/project/dependency_pretty.rb +13 -2
  35. data/lib/veye/views/project/dependency_table.rb +8 -2
  36. data/lib/veye/views/project/info_csv.rb +9 -3
  37. data/lib/veye/views/project/info_markdown.rb +7 -2
  38. data/lib/veye/views/project/info_pretty.rb +6 -1
  39. data/lib/veye/views/project/info_table.rb +8 -3
  40. data/lib/veye.rb +26 -3
  41. data/test/api/package_test.rb +15 -0
  42. data/test/api/project_test.rb +83 -19
  43. data/test/base/base_executor_test.rb +87 -0
  44. data/test/fixtures/vcr_cassettes/github_delete.yml +7 -7
  45. data/test/fixtures/vcr_cassettes/github_import.yml +11 -13
  46. data/test/fixtures/vcr_cassettes/github_info.yml +10 -10
  47. data/test/fixtures/vcr_cassettes/github_list.yml +12 -12
  48. data/test/fixtures/vcr_cassettes/github_sync.yml +7 -7
  49. data/test/fixtures/vcr_cassettes/package_follow.yml +10 -10
  50. data/test/fixtures/vcr_cassettes/package_follow_status.yml +7 -7
  51. data/test/fixtures/vcr_cassettes/package_info.yml +17 -18
  52. data/test/fixtures/vcr_cassettes/package_info_default.yml +54 -0
  53. data/test/fixtures/vcr_cassettes/package_info_versioned.yml +54 -0
  54. data/test/fixtures/vcr_cassettes/package_reference.yml +8 -8
  55. data/test/fixtures/vcr_cassettes/package_search.yml +8 -8
  56. data/test/fixtures/vcr_cassettes/package_unfollow.yml +7 -7
  57. data/test/fixtures/vcr_cassettes/package_versions.yml +44 -0
  58. data/test/fixtures/vcr_cassettes/project_check_new.yml +33 -30
  59. data/test/fixtures/vcr_cassettes/project_check_update.yml +29 -30
  60. data/test/fixtures/vcr_cassettes/project_delete.yml +8 -8
  61. data/test/fixtures/vcr_cassettes/project_delete_for_licenses.yml +48 -0
  62. data/test/fixtures/vcr_cassettes/project_delete_for_update.yml +46 -0
  63. data/test/fixtures/vcr_cassettes/project_delete_merge_child.yml +46 -0
  64. data/test/fixtures/vcr_cassettes/project_delete_merge_parent.yml +46 -0
  65. data/test/fixtures/vcr_cassettes/project_get.yml +11 -12
  66. data/test/fixtures/vcr_cassettes/project_license.yml +11 -12
  67. data/test/fixtures/vcr_cassettes/project_license_command.yml +49 -0
  68. data/test/fixtures/vcr_cassettes/project_list.yml +14 -14
  69. data/test/fixtures/vcr_cassettes/project_merge.yml +46 -0
  70. data/test/fixtures/vcr_cassettes/project_unmerge.yml +46 -0
  71. data/test/fixtures/vcr_cassettes/project_update.yml +15 -16
  72. data/test/fixtures/vcr_cassettes/project_upload.yml +17 -16
  73. data/test/fixtures/vcr_cassettes/project_upload_for_licenses.yml +107 -0
  74. data/test/fixtures/vcr_cassettes/project_upload_for_update.yml +105 -0
  75. data/test/fixtures/vcr_cassettes/project_upload_merge_child.yml +65 -0
  76. data/test/fixtures/vcr_cassettes/project_upload_merge_parent.yml +104 -0
  77. data/test/fixtures/vcr_cassettes/project_upload_with_args.yml +106 -0
  78. data/test/fixtures/vcr_cassettes/services_ping.yml +6 -8
  79. data/test/fixtures/vcr_cassettes/user_get_favorites.yml +10 -10
  80. data/test/fixtures/vcr_cassettes/user_get_profile.yml +10 -10
  81. data/test/github_delete_test.rb +5 -3
  82. data/test/github_import_test.rb +8 -15
  83. data/test/github_info_test.rb +2 -2
  84. data/test/package_follow_test.rb +3 -3
  85. data/test/package_info_test.rb +16 -15
  86. data/test/package_reference_test.rb +4 -4
  87. data/test/package_search_test.rb +4 -4
  88. data/test/package_versions_test.rb +73 -0
  89. data/test/project_check_test.rb +107 -79
  90. data/test/project_license_test.rb +29 -11
  91. data/test/project_test.rb +59 -0
  92. data/test/user_me_test.rb +4 -4
  93. data/veye.gemspec +10 -8
  94. data/veye.log +11 -0
  95. metadata +73 -20
@@ -2,10 +2,10 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: https://www.versioneye.com/api/v2/projects/rubygem_gemfile_2
5
+ uri: https://www.versioneye.com/api/v2/projects/57c5a1708647390010767c19
6
6
  body:
7
7
  encoding: ASCII-8BIT
8
- string: "--674236\r\nContent-Disposition: form-data; name=\"project_file\";
8
+ string: "--609718\r\nContent-Disposition: form-data; name=\"project_file\";
9
9
  filename=\"Gemfile\"\r\nContent-Type: text/plain\r\n\r\nsource 'https://rubygems.org'\ngem
10
10
  'rails', '3.2.9'\ngroup :assets do\n gem 'sass-rails', '~> 3.2.3'\n gem
11
11
  'coffee-rails', '~> 3.2.1'\n gem 'uglifier', '>= 1.0.3'\nend\ngem 'jquery-rails'\ngem
@@ -16,8 +16,8 @@ http_interactions:
16
16
  :test, :require => false\ngem \"launchy\", \">= 2.1.2\", :group => :test\ngem
17
17
  \"capybara\", \">= 1.1.4\", :group => :test\ngem \"factory_girl_rails\", \">=
18
18
  4.1.0\", :group => [:development, :test]\ngem \"omniauth\", \">= 1.1.1\"\ngem
19
- \"omniauth-twitter\"\ngem \"quiet_assets\", \">= 1.0.1\", :group => :development\r\n--674236\r\nContent-Disposition:
20
- form-data; name=\"api_key\"\r\n\r\n316dbd6b80b053f5b1e5\r\n--674236--\r\n"
19
+ \"omniauth-twitter\"\ngem \"quiet_assets\", \">= 1.0.1\", :group => :development\r\n--609718\r\nContent-Disposition:
20
+ form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--609718--\r\n"
21
21
  headers:
22
22
  Accept:
23
23
  - "*/*; q=0.5, application/xml"
@@ -26,7 +26,7 @@ http_interactions:
26
26
  Content-Length:
27
27
  - '961'
28
28
  Content-Type:
29
- - multipart/form-data; boundary=674236
29
+ - multipart/form-data; boundary=609718
30
30
  User-Agent:
31
31
  - Ruby
32
32
  response:
@@ -35,36 +35,36 @@ http_interactions:
35
35
  message: Created
36
36
  headers:
37
37
  Server:
38
- - nginx/1.4.6 (Ubuntu)
38
+ - nginx/1.10.0 (Ubuntu)
39
39
  Date:
40
- - Sun, 08 Nov 2015 17:09:45 GMT
40
+ - Tue, 30 Aug 2016 15:08:36 GMT
41
41
  Content-Type:
42
42
  - application/json
43
43
  Content-Length:
44
- - '6528'
44
+ - '6609'
45
45
  Connection:
46
46
  - keep-alive
47
47
  Set-Cookie:
48
- - api_key=316dbd6b80b053f5b1e5
48
+ - api_key=f82943fbd363bc640782
49
49
  Etag:
50
- - W/"1b854e906fb83a5df7fd4580886de770"
50
+ - W/"c65fcf1279a50ae17cef994d3f437597"
51
51
  Cache-Control:
52
52
  - max-age=0, private, must-revalidate
53
53
  X-Request-Id:
54
- - 2db50412-02bc-474f-ad6f-0058e61088df
54
+ - f623bb3f-1cf8-445d-8da8-7edf585a0277
55
55
  X-Runtime:
56
- - '2.140223'
56
+ - '1.043992'
57
57
  body:
58
58
  encoding: UTF-8
59
- string: '{"id":"563f8151c5999a000d01a38d","project_key":"rubygem_gemfile_2","name":"Gemfile","project_type":"RubyGem","public":true,"private_scm":false,"period":"daily","source":"API","dep_number":17,"out_number":3,"licenses_red":0,"licenses_unknown":2,"created_at":"2015-11-08T17:07:30.528Z","updated_at":"2015-11-08T17:07:35.024Z","license_whitelist":null,"dependencies":[{"name":"mongoid-rspec","prod_key":"mongoid-rspec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.0.0","version_requested":"3.0.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"quiet_assets","prod_key":"quiet_assets","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.1.0","version_requested":"1.1.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null},{"name":"GPL","url":"http://spdx.org/licenses/GPL.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth-twitter","prod_key":"omniauth-twitter","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.2.1","version_requested":"1.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth","prod_key":"omniauth","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.2.2","version_requested":"1.2.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"factory_girl_rails","prod_key":"factory_girl_rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.5.0","version_requested":"4.5.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"capybara","prod_key":"capybara","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.5.0","version_requested":"2.5.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"database_cleaner","prod_key":"database_cleaner","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.5.1","version_requested":"1.5.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"rspec-rails","prod_key":"rspec-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.3.3","version_requested":"3.3.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"mongoid","prod_key":"mongoid","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.1","version_requested":"5.0.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"jquery-rails","prod_key":"jquery-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.0.5","version_requested":"4.0.5","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"uglifier","prod_key":"uglifier","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.7.2","version_requested":"2.7.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"coffee-rails","prod_key":"coffee-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.1.0","version_requested":"3.2.2","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"sass-rails","prod_key":"sass-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.4","version_requested":"3.2.6","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"rails","prod_key":"rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.2.4","version_requested":"3.2.9","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://oldwiki.rubyonrails.org/rails/pages/License","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"email_spec","prod_key":"email_spec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.6.0","version_requested":"1.6.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"cucumber-rails","prod_key":"cucumber-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.4.2","version_requested":"1.4.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"launchy","prod_key":"launchy","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.4.3","version_requested":"2.4.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"ISC","url":"http://spdx.org/licenses/ISC.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}]}'
59
+ string: '{"id":"57c5a1708647390010767c19","name":"Gemfile","project_type":"RubyGem","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":17,"out_number":3,"licenses_red":0,"licenses_unknown":1,"sv_count":0,"created_at":"2016-08-30T15:08:33.237Z","updated_at":"2016-08-30T15:08:35.565Z","license_whitelist":null,"dependencies":[{"name":"rails","prod_key":"rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.0.1","version_requested":"3.2.9","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://oldwiki.rubyonrails.org/rails/pages/License","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"sass-rails","prod_key":"sass-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.6","version_requested":"3.2.6","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"coffee-rails","prod_key":"coffee-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.2.1","version_requested":"3.2.2","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"uglifier","prod_key":"uglifier","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.0.2","version_requested":"3.0.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"jquery-rails","prod_key":"jquery-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.2.1","version_requested":"4.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"mongoid","prod_key":"mongoid","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.1.4","version_requested":"5.1.4","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"rspec-rails","prod_key":"rspec-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.5.2","version_requested":"3.5.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"database_cleaner","prod_key":"database_cleaner","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.5.3","version_requested":"1.5.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"mongoid-rspec","prod_key":"mongoid-rspec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.0.0","version_requested":"3.0.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"email_spec","prod_key":"email_spec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.1.0","version_requested":"2.1.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"cucumber-rails","prod_key":"cucumber-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.4.4","version_requested":"1.4.4","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"launchy","prod_key":"launchy","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.4.3","version_requested":"2.4.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"ISC","url":"http://spdx.org/licenses/ISC.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"capybara","prod_key":"capybara","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.8.1","version_requested":"2.8.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"factory_girl_rails","prod_key":"factory_girl_rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.7.0","version_requested":"4.7.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth","prod_key":"omniauth","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.3.1","version_requested":"1.3.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth-twitter","prod_key":"omniauth-twitter","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.2.1","version_requested":"1.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"quiet_assets","prod_key":"quiet_assets","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.1.0","version_requested":"1.1.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null},{"name":"GPL","url":"http://spdx.org/licenses/GPL.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
60
60
  http_version:
61
- recorded_at: Sun, 08 Nov 2015 17:06:40 GMT
61
+ recorded_at: Tue, 30 Aug 2016 15:08:36 GMT
62
62
  - request:
63
63
  method: post
64
- uri: https://www.versioneye.com/api/v2/projects/maven2_openejb_maven_plugins_2
64
+ uri: https://www.versioneye.com/api/v2/projects/57c5a17212b5260012114394
65
65
  body:
66
66
  encoding: ASCII-8BIT
67
- string: "--652917\r\nContent-Disposition: form-data; name=\"project_file\";
67
+ string: "--525506\r\nContent-Disposition: form-data; name=\"project_file\";
68
68
  filename=\"maven-1.0.1.pom.xml\"\r\nContent-Type: application/xml\r\n\r\n<?xml
69
69
  version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software
70
70
  Foundation (ASF) under one or more\n contributor license agreements. See
@@ -115,8 +115,8 @@ http_interactions:
115
115
  \ </configuration>\n </plugin>\n </plugins>\n </build>\n\n
116
116
  \ <reporting>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
117
117
  \ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.0</version>\n
118
- \ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--652917\r\nContent-Disposition:
119
- form-data; name=\"api_key\"\r\n\r\n316dbd6b80b053f5b1e5\r\n--652917--\r\n"
118
+ \ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--525506\r\nContent-Disposition:
119
+ form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--525506--\r\n"
120
120
  headers:
121
121
  Accept:
122
122
  - "*/*; q=0.5, application/xml"
@@ -125,7 +125,7 @@ http_interactions:
125
125
  Content-Length:
126
126
  - '4461'
127
127
  Content-Type:
128
- - multipart/form-data; boundary=652917
128
+ - multipart/form-data; boundary=525506
129
129
  User-Agent:
130
130
  - Ruby
131
131
  response:
@@ -134,29 +134,28 @@ http_interactions:
134
134
  message: Created
135
135
  headers:
136
136
  Server:
137
- - nginx/1.4.6 (Ubuntu)
137
+ - nginx/1.10.0 (Ubuntu)
138
138
  Date:
139
- - Sun, 08 Nov 2015 17:09:46 GMT
139
+ - Tue, 30 Aug 2016 15:08:36 GMT
140
140
  Content-Type:
141
141
  - application/json
142
142
  Content-Length:
143
- - '4849'
143
+ - '4915'
144
144
  Connection:
145
145
  - keep-alive
146
146
  Set-Cookie:
147
- - api_key=316dbd6b80b053f5b1e5
147
+ - api_key=f82943fbd363bc640782
148
148
  Etag:
149
- - W/"41bc6e263b5d12ac9851c27b7981b9ce"
149
+ - W/"7a98e9dcd36d773c32da3b9381f054b4"
150
150
  Cache-Control:
151
151
  - max-age=0, private, must-revalidate
152
152
  X-Request-Id:
153
- - 60c0cb2b-df67-4d23-810e-239c22b55345
153
+ - 400778d3-b3b0-45fb-9d57-30d4d962b725
154
154
  X-Runtime:
155
- - '0.612222'
155
+ - '0.440966'
156
156
  body:
157
157
  encoding: UTF-8
158
- string: '{"id":"563f7acac5999a000d01a34a","project_key":"maven2_openejb_maven_plugins_2","name":"OpenEJB
159
- :: Maven Plugins","project_type":"Maven2","public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"created_at":"2015-11-08T16:39:38.621Z","updated_at":"2015-11-08T16:39:39.032Z","license_whitelist":null,"dependencies":[{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.22","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}]}'
158
+ string: '{"id":"57c5a17212b5260012114394","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"sv_count":0,"created_at":"2016-08-30T15:08:34.354Z","updated_at":"2016-08-30T15:08:36.478Z","license_whitelist":null,"dependencies":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.24","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
160
159
  http_version:
161
- recorded_at: Sun, 08 Nov 2015 17:06:41 GMT
162
- recorded_with: VCR 2.9.3
160
+ recorded_at: Tue, 30 Aug 2016 15:08:36 GMT
161
+ recorded_with: VCR 3.0.1
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: delete
5
- uri: https://www.versioneye.com/api/v2/projects/maven2_openejb_maven_plugins_2?api_key=316dbd6b80b053f5b1e5
5
+ uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7?api_key=f82943fbd363bc640782
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -19,9 +19,9 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Server:
22
- - nginx/1.4.6 (Ubuntu)
22
+ - nginx/1.10.0 (Ubuntu)
23
23
  Date:
24
- - Sun, 08 Nov 2015 16:41:58 GMT
24
+ - Tue, 30 Aug 2016 14:42:18 GMT
25
25
  Content-Type:
26
26
  - application/json
27
27
  Content-Length:
@@ -29,18 +29,18 @@ http_interactions:
29
29
  Connection:
30
30
  - keep-alive
31
31
  Set-Cookie:
32
- - api_key=316dbd6b80b053f5b1e5
32
+ - api_key=f82943fbd363bc640782
33
33
  Etag:
34
34
  - W/"75b42f14626fd9c08be1551bde4fd46c"
35
35
  Cache-Control:
36
36
  - max-age=0, private, must-revalidate
37
37
  X-Request-Id:
38
- - 8b1f341b-201c-4c60-8ae4-27afe9811d7a
38
+ - 9c6ecac4-0b51-4655-b8a1-b00f60046d4d
39
39
  X-Runtime:
40
- - '0.309610'
40
+ - '0.078280'
41
41
  body:
42
42
  encoding: UTF-8
43
43
  string: '{"success":true,"message":"Project deleted successfully."}'
44
44
  http_version:
45
- recorded_at: Sun, 08 Nov 2015 16:38:53 GMT
46
- recorded_with: VCR 2.9.3
45
+ recorded_at: Tue, 30 Aug 2016 14:42:18 GMT
46
+ recorded_with: VCR 3.0.1
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://www.versioneye.com/api/v2/projects/57c83cd512b52600121e9161?api_key=f82943fbd363bc640782
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - rest-client/2.0.0 (darwin14.4.0 x86_64) ruby/2.2.1p85
16
+ Host:
17
+ - www.versioneye.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Server:
24
+ - nginx/1.10.0 (Ubuntu)
25
+ Date:
26
+ - Thu, 01 Sep 2016 14:36:06 GMT
27
+ Content-Type:
28
+ - application/json
29
+ Content-Length:
30
+ - '58'
31
+ Connection:
32
+ - keep-alive
33
+ Set-Cookie:
34
+ - api_key=f82943fbd363bc640782
35
+ Etag:
36
+ - W/"75b42f14626fd9c08be1551bde4fd46c"
37
+ Cache-Control:
38
+ - max-age=0, private, must-revalidate
39
+ X-Request-Id:
40
+ - 3d532281-42b9-4be5-bdc6-74b3f2cd0f7c
41
+ X-Runtime:
42
+ - '0.069503'
43
+ body:
44
+ encoding: UTF-8
45
+ string: '{"success":true,"message":"Project deleted successfully."}'
46
+ http_version:
47
+ recorded_at: Thu, 01 Sep 2016 14:36:06 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,46 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://www.versioneye.com/api/v2/projects/57c5a71e12b526000ee359e1?api_key=f82943fbd363bc640782
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*; q=0.5, application/xml"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - nginx/1.10.0 (Ubuntu)
23
+ Date:
24
+ - Tue, 30 Aug 2016 15:32:48 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Content-Length:
28
+ - '58'
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - api_key=f82943fbd363bc640782
33
+ Etag:
34
+ - W/"75b42f14626fd9c08be1551bde4fd46c"
35
+ Cache-Control:
36
+ - max-age=0, private, must-revalidate
37
+ X-Request-Id:
38
+ - 02a4bc29-72f3-4dd6-ad9f-4b59888116f4
39
+ X-Runtime:
40
+ - '0.086069'
41
+ body:
42
+ encoding: UTF-8
43
+ string: '{"success":true,"message":"Project deleted successfully."}'
44
+ http_version:
45
+ recorded_at: Tue, 30 Aug 2016 15:32:48 GMT
46
+ recorded_with: VCR 3.0.1
@@ -0,0 +1,46 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://www.versioneye.com/api/v2/projects/57c82a438647390016710be2?api_key=f82943fbd363bc640782
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*; q=0.5, application/xml"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - nginx/1.10.0 (Ubuntu)
23
+ Date:
24
+ - Thu, 01 Sep 2016 13:17:42 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Content-Length:
28
+ - '57'
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - api_key=f82943fbd363bc640782
33
+ Etag:
34
+ - W/"29c49200d627f34e11dbd0421e9f58a1"
35
+ Cache-Control:
36
+ - max-age=0, private, must-revalidate
37
+ X-Request-Id:
38
+ - 34634c29-8250-4a4e-9989-5d72e212a10b
39
+ X-Runtime:
40
+ - '0.036091'
41
+ body:
42
+ encoding: UTF-8
43
+ string: '{"success":true,"message":"Project was removed already."}'
44
+ http_version:
45
+ recorded_at: Thu, 01 Sep 2016 13:17:42 GMT
46
+ recorded_with: VCR 3.0.1
@@ -0,0 +1,46 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://www.versioneye.com/api/v2/projects/57c82a4312b526001687878e?api_key=f82943fbd363bc640782
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - "*/*; q=0.5, application/xml"
12
+ Accept-Encoding:
13
+ - gzip, deflate
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Server:
22
+ - nginx/1.10.0 (Ubuntu)
23
+ Date:
24
+ - Thu, 01 Sep 2016 13:17:42 GMT
25
+ Content-Type:
26
+ - application/json
27
+ Content-Length:
28
+ - '58'
29
+ Connection:
30
+ - keep-alive
31
+ Set-Cookie:
32
+ - api_key=f82943fbd363bc640782
33
+ Etag:
34
+ - W/"75b42f14626fd9c08be1551bde4fd46c"
35
+ Cache-Control:
36
+ - max-age=0, private, must-revalidate
37
+ X-Request-Id:
38
+ - 174c4716-0c76-405b-8c28-e79efd0d6d9b
39
+ X-Runtime:
40
+ - '0.139680'
41
+ body:
42
+ encoding: UTF-8
43
+ string: '{"success":true,"message":"Project deleted successfully."}'
44
+ http_version:
45
+ recorded_at: Thu, 01 Sep 2016 13:17:42 GMT
46
+ recorded_with: VCR 3.0.1
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://www.versioneye.com/api/v2/projects/maven2_openejb_maven_plugins_2?api_key=316dbd6b80b053f5b1e5
5
+ uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7?api_key=f82943fbd363bc640782
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -19,29 +19,28 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Server:
22
- - nginx/1.4.6 (Ubuntu)
22
+ - nginx/1.10.0 (Ubuntu)
23
23
  Date:
24
- - Sun, 08 Nov 2015 16:41:50 GMT
24
+ - Tue, 30 Aug 2016 14:42:18 GMT
25
25
  Content-Type:
26
26
  - application/json
27
27
  Content-Length:
28
- - '4849'
28
+ - '4915'
29
29
  Connection:
30
30
  - keep-alive
31
31
  Set-Cookie:
32
- - api_key=316dbd6b80b053f5b1e5
32
+ - api_key=f82943fbd363bc640782
33
33
  Etag:
34
- - W/"3f83cfa98560cf2a22921079c9286163"
34
+ - W/"844ea883d733fc29d5168d8359a305b0"
35
35
  Cache-Control:
36
36
  - max-age=0, private, must-revalidate
37
37
  X-Request-Id:
38
- - d2a0577d-9d76-4566-ba7b-4236a3224f16
38
+ - 82350554-de57-41ed-8303-c7ab5e508646
39
39
  X-Runtime:
40
- - '0.131408'
40
+ - '0.052769'
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"id":"563f7a57c5999a000901a55b","project_key":"maven2_openejb_maven_plugins_2","name":"OpenEJB
44
- :: Maven Plugins","project_type":"Maven2","public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"created_at":"2015-11-08T16:37:44.353Z","updated_at":"2015-11-08T16:37:44.834Z","license_whitelist":null,"dependencies":[{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.22","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}]}'
43
+ string: '{"id":"57c59b4812b526000ee32df7","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"sv_count":0,"created_at":"2016-08-30T14:42:17.261Z","updated_at":"2016-08-30T14:42:17.688Z","license_whitelist":null,"dependencies":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.24","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
45
44
  http_version:
46
- recorded_at: Sun, 08 Nov 2015 16:38:45 GMT
47
- recorded_with: VCR 2.9.3
45
+ recorded_at: Tue, 30 Aug 2016 14:42:18 GMT
46
+ recorded_with: VCR 3.0.1
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://www.versioneye.com/api/v2/projects/55dc6de68d9c4b00210007bf/licenses?api_key=316dbd6b80b053f5b1e5
5
+ uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7/licenses?api_key=f82943fbd363bc640782
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -19,30 +19,29 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Server:
22
- - nginx/1.4.6 (Ubuntu)
22
+ - nginx/1.10.0 (Ubuntu)
23
23
  Date:
24
- - Sat, 12 Mar 2016 17:49:34 GMT
24
+ - Tue, 30 Aug 2016 15:45:40 GMT
25
25
  Content-Type:
26
26
  - application/json
27
27
  Content-Length:
28
- - '2040'
28
+ - '906'
29
29
  Connection:
30
30
  - keep-alive
31
31
  Set-Cookie:
32
- - api_key=316dbd6b80b053f5b1e5
32
+ - api_key=f82943fbd363bc640782
33
33
  Etag:
34
- - W/"7c1c0364e8eada88d96602b86ac5644b"
34
+ - W/"bcc3569705470ce364b2bb0a0fa008d1"
35
35
  Cache-Control:
36
36
  - max-age=0, private, must-revalidate
37
37
  X-Request-Id:
38
- - 51fc8f91-0efa-4e01-9595-2aa8eeb41a2f
38
+ - ce5b6a4c-8a13-4e2e-9652-190c981b5e92
39
39
  X-Runtime:
40
- - '0.487892'
40
+ - '0.092914'
41
41
  body:
42
42
  encoding: UTF-8
43
- string: '{"success":true,"licenses":{"MIT":[{"name":"veye","prod_key":"veye"},{"name":"awesome_print","prod_key":"awesome_print"},{"name":"rainbow","prod_key":"rainbow"},{"name":"rest-client","prod_key":"rest-client"},{"name":"terminal-table","prod_key":"terminal-table"},{"name":"aruba","prod_key":"aruba"},{"name":"childprocess","prod_key":"childprocess"},{"name":"cucumber","prod_key":"cucumber"},{"name":"rspec-expectations","prod_key":"rspec-expectations"},{"name":"ast","prod_key":"ast"},{"name":"astrolabe","prod_key":"astrolabe"},{"name":"parser","prod_key":"parser"},{"name":"builder","prod_key":"builder"},{"name":"crack","prod_key":"crack"},{"name":"safe_yaml","prod_key":"safe_yaml"},{"name":"cucumber-core","prod_key":"cucumber-core"},{"name":"gherkin","prod_key":"gherkin"},{"name":"multi_json","prod_key":"multi_json"},{"name":"multi_test","prod_key":"multi_test"},{"name":"http-cookie","prod_key":"http-cookie"},{"name":"mime-types","prod_key":"mime-types"},{"name":"minitest","prod_key":"minitest"},{"name":"netrc","prod_key":"netrc"},{"name":"powerpack","prod_key":"powerpack"},{"name":"rake","prod_key":"rake"},{"name":"render-as-markdown","prod_key":"render-as-markdown"},{"name":"rspec-support","prod_key":"rspec-support"},{"name":"rubocop","prod_key":"rubocop"},{"name":"ruby-progressbar","prod_key":"ruby-progressbar"},{"name":"unf_ext","prod_key":"unf_ext"},{"name":"vcr","prod_key":"vcr"},{"name":"webmock","prod_key":"webmock"}],"unknown":[{"name":"contracts","prod_key":"contracts"},{"name":"gli","prod_key":"gli"},{"name":"minitest-reporters","prod_key":"minitest-reporters"}],"Apache-2.0":[{"name":"addressable","prod_key":"addressable"}],"BSD-2-Clause":[{"name":"ansi","prod_key":"ansi"},{"name":"unf","prod_key":"unf"}],"BSD":[{"name":"ffi","prod_key":"ffi"}],"MIT,
44
- Artistic-2.0, GPL-2.0":[{"name":"diff-lcs","prod_key":"diff-lcs"}],"BSD-2-Clause,
45
- BSD-3-Clause, MPL-1.1, GPL-2.0, LGPL-2.1":[{"name":"domain_name","prod_key":"domain_name"}],"Ruby":[{"name":"json","prod_key":"json"},{"name":"rdoc","prod_key":"rdoc"}]}}'
43
+ string: '{"success":true,"licenses":{"Apache-2.0":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations"},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils"},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api"},{"name":"maven-project","prod_key":"org.apache.maven/maven-project"},{"name":"maven-core","prod_key":"org.apache.maven/maven-core"},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact"},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core"},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client"},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin"},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin"}],"EPL-1.0,
44
+ Apache-2.0":[{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api"}]}}'
46
45
  http_version:
47
- recorded_at: Sat, 12 Mar 2016 17:42:14 GMT
46
+ recorded_at: Tue, 30 Aug 2016 15:45:40 GMT
48
47
  recorded_with: VCR 3.0.1