harrison 0.4.0.b1 → 0.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG +20 -0
- data/harrison.gemspec +3 -4
- data/lib/harrison/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 438dd20b8530a8b199713be701f928204ffc23f1
|
|
4
|
+
data.tar.gz: 73c8b343dd39608a630f6096b22f606014605a6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e551411587565663827accb294e2fc3d720af283ecce502a0e401487e1ac17e17f25f04d44f07baab69ae78c2890b383a67c5c38260a3c6f9e55f7e6fd5be51
|
|
7
|
+
data.tar.gz: 802fa4f53e5342e40219d7494b8dbe31e00a87388661794746287a38b6141d1547ca1b0d87b4ec9bce93d89dcce6c583c9214044b2ec26dd578205da59c6dc1e
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
0.5.0
|
|
2
|
+
-------------------
|
|
3
|
+
- BREAKING: Bumped net-ssh to 3.2.x which results in Harrison now
|
|
4
|
+
requiring Ruby >= 2.0.
|
|
5
|
+
|
|
6
|
+
0.4.0b1
|
|
7
|
+
-------------------
|
|
8
|
+
- Fixed a bug where config changes inside of one task could leak into
|
|
9
|
+
other tasks. (#22)
|
|
10
|
+
|
|
11
|
+
- Added the ability to limit the number of times a given phase will be
|
|
12
|
+
invoked during a deploy. (E.g. run a task on only the first host
|
|
13
|
+
deployed to.)
|
|
14
|
+
|
|
15
|
+
- Added the ability for target hosts to be a Proc so that hosts can be
|
|
16
|
+
dynamically computed.
|
|
17
|
+
|
|
18
|
+
- Added the ability to require interactive confirmation of target hosts
|
|
19
|
+
before proceeding with a deploy.
|
|
20
|
+
|
|
1
21
|
0.3.0
|
|
2
22
|
-------------------
|
|
3
23
|
- BREAKING: Definition of "deploy" task has significantly changed. Deploys
|
data/harrison.gemspec
CHANGED
|
@@ -17,10 +17,10 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
spec.required_ruby_version = '>=
|
|
20
|
+
spec.required_ruby_version = '>= 2.0'
|
|
21
21
|
|
|
22
22
|
spec.add_runtime_dependency "trollop", "~> 2.1.2"
|
|
23
|
-
spec.add_runtime_dependency "net-ssh", "~> 2
|
|
23
|
+
spec.add_runtime_dependency "net-ssh", "~> 3.2"
|
|
24
24
|
spec.add_runtime_dependency "net-scp", "~> 1.2.1"
|
|
25
25
|
spec.add_runtime_dependency "highline", "~> 1.7.8"
|
|
26
26
|
|
|
@@ -28,7 +28,6 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.add_development_dependency "rake"
|
|
29
29
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
30
30
|
spec.add_development_dependency "simplecov"
|
|
31
|
-
spec.add_development_dependency "pry-
|
|
32
|
-
spec.add_development_dependency "pry-byebug" if RUBY_VERSION >= "2.0.0"
|
|
31
|
+
spec.add_development_dependency "pry-byebug"
|
|
33
32
|
spec.add_development_dependency "sourcify"
|
|
34
33
|
end
|
data/lib/harrison/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: harrison
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesse Scott
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: trollop
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2
|
|
33
|
+
version: '3.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2
|
|
40
|
+
version: '3.2'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: net-scp
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -199,15 +199,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
199
199
|
requirements:
|
|
200
200
|
- - ">="
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
|
-
version:
|
|
202
|
+
version: '2.0'
|
|
203
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
requirements:
|
|
205
|
-
- - "
|
|
205
|
+
- - ">="
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
|
-
version:
|
|
207
|
+
version: '0'
|
|
208
208
|
requirements: []
|
|
209
209
|
rubyforge_project:
|
|
210
|
-
rubygems_version: 2.
|
|
210
|
+
rubygems_version: 2.5.1
|
|
211
211
|
signing_key:
|
|
212
212
|
specification_version: 4
|
|
213
213
|
summary: Simple artifact-based deployment for web applications.
|