geminabox-release 0.0.5 → 0.0.6

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: d342faa148b41b6d42005e9cd37c5726ca53d8b5
4
- data.tar.gz: 82768f7f9e81eebedc9e398a0e5db68fd6095344
3
+ metadata.gz: b08a918596cf45774de6897e5432b9c755593410
4
+ data.tar.gz: ab964319990db85232f5ae511e5434b8553cbc3e
5
5
  SHA512:
6
- metadata.gz: bee11d6b0497d2b9a9f26ea5aec67c64c401a648ee1bbb37f3412a5b6185e02351296b51dd17b9744e6692ac16f234877145b71d7f8bdfe38d7c7e19c303aebe
7
- data.tar.gz: 6360a5a48f9ec4b91e3db036c628609b5a1753b6552424682d2286e500080d90ca3ec8217eef122a3ee28292c671acea6714acd0bfe62f03b214fdb51362e9a1
6
+ metadata.gz: f1c5109235dff61da9e65114ff0e0751daefe19c274827ae71d9391fd553aad6123924bece031f80bbd5094102474ad1cca77a063dcf7f0ba564fff3605b7fbf
7
+ data.tar.gz: 16802fea4c2f24f31d20a151df8667d9b46c1fa42a3f362540c41290767d5291e70b212c0f2ca89cd78c0eebebb9e4724f75e4b4f61e43b0607fa72af07eb13b
@@ -28,17 +28,19 @@ module GeminaboxRelease
28
28
  alias_method :bundler_install, :install
29
29
 
30
30
  def install
31
+
31
32
  desc "Create tag #{version_tag} and build and push #{name}-#{version}.gem to #{GeminaboxRelease.host}"
32
- task 'inabox:release' => 'build' do
33
- release_inabox(built_gem_path)
33
+ task 'inabox:release' do
34
+ release_inabox
34
35
  end
36
+
35
37
  bundler_install # call bunlders original install method
36
38
  end
37
39
 
38
40
  # same functionality as release_gem but calls inabox_push
39
- def release_inabox(built_gem_path=nil)
41
+ def release_inabox
40
42
  guard_clean
41
- built_gem_path ||= build_gem
43
+ built_gem_path = build_gem
42
44
  tag_version { git_push } unless already_tagged?
43
45
  inabox_push(built_gem_path) if gem_push?
44
46
  end
@@ -81,7 +83,11 @@ module GeminaboxRelease
81
83
  req["Content-Type"] = "multipart/form-data; boundary=#{boundary}"
82
84
  response = http.request(req)
83
85
  if response.code.to_i < 300
84
- Bundler.ui.confirm("Gem #{File.basename(path)} received and indexed.")
86
+ if response.body.start_with?("Gem #{File.basename(path)} received and indexed")
87
+ Bundler.ui.confirm("Gem #{File.basename(path)} received and indexed.")
88
+ else
89
+ Bundler.ui.error "Error received\n\n#{response.body}"
90
+ end
85
91
  else
86
92
  raise "Error (#{response.code} received)\n\n#{response.body}"
87
93
  end
@@ -1,4 +1,4 @@
1
1
  module GeminaboxRelease
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geminabox-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis-Florian Herr