codedeploy_retry_if_needed 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5e64ca4c4eba8168bf3f4f52fdc82920e3a8666
4
- data.tar.gz: 47088adcdeb6e55c9fdde77833693b99aae6d695
3
+ metadata.gz: 92b0c8045b1647ff6f2fd915147b523f2ae8cbcd
4
+ data.tar.gz: 3828563c943e4c3fca46bd2dfa084956ef1e2f70
5
5
  SHA512:
6
- metadata.gz: 4a41ce66bfb8de8d035087092fde45766c4c0673c0c10722510212110a062289a797dc25bcb911b2e154b458ac0128c4581f86427d441da7580ae093930f9e45
7
- data.tar.gz: ac3c3aa5ce2cf410d576a339e9f329eb400fce666f10eac8d2ae694a6985786ff20435e19617a9bf407d492301e95818cc34357251306bba35d61222fe322842
6
+ metadata.gz: e4e7bf767b47c455bd21f10a6fda796795ff6ad14db3addeb585bcaa4d68ed681ff08946f21e9251e4c9319aba6a210d803e22a0178ff29f0a2fd77564dbf605
7
+ data.tar.gz: 7d177b819320cb858046d1657ff8f0373edb673634a36ce9b8d5d538525484e311219542c2fb922f781c7299c5ce927c3c51dc328b56ca3fc415de1e1d02eb82
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # CodedeployRetryIfNeeded
2
+
3
+ Retry AWS codedeploy deployment if needed.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'codedeploy_retry_if_needed'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install codedeploy_retry_if_needed
20
+
21
+ ## Usage
22
+
23
+ ```sh
24
+ $ DEPLOYMENT_ID="d-xxxxx" \
25
+ GITHUB_LOGIN="xxxxxxxxx" \
26
+ GITHUB_ACCESS_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxx" \
27
+ codedeploy_retry_if_needed
28
+ ```
29
+
30
+ ## Note
31
+
32
+ Supports only "Deployment Config: `CodeDeployDefault.OneAtATime`"
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
37
+
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Retry AWS codedeploy deployment if needed.}
13
13
  spec.description = %q{}
14
- spec.homepage = ""
14
+ spec.homepage = "https://github.com/hoshinotsuyoshi/codedeploy_retry_if_needed"
15
15
  spec.license = "MIT"
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
@@ -1,3 +1,3 @@
1
1
  module CodedeployRetryIfNeeded
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codedeploy_retry_if_needed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - hoshinotsuyoshi
@@ -77,6 +77,7 @@ files:
77
77
  - ".gitignore"
78
78
  - Gemfile
79
79
  - LICENSE.txt
80
+ - README.md
80
81
  - Rakefile
81
82
  - bin/console
82
83
  - bin/setup
@@ -84,7 +85,7 @@ files:
84
85
  - exe/codedeploy_retry_if_needed
85
86
  - lib/codedeploy_retry_if_needed.rb
86
87
  - lib/codedeploy_retry_if_needed/version.rb
87
- homepage: ''
88
+ homepage: https://github.com/hoshinotsuyoshi/codedeploy_retry_if_needed
88
89
  licenses:
89
90
  - MIT
90
91
  metadata: