foreplay 0.0.6 → 0.0.7

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5768e6a63e1fa420f247ef16eb070d7f4c7bc7d4
4
+ data.tar.gz: 173a6ae63a96e59c466e1b3a21d94b254cde398f
5
+ SHA512:
6
+ metadata.gz: cc2fbb6684fe01631237ba1456b2c197a995296b6d638a531b3ff93f67c838547d782d6ea5917a120bba0be98f31780c66b4d786fa8be2499b2836be7c0b8866
7
+ data.tar.gz: c152b3f00cb3d31b9e97872d9353166172a50dfda5503b901183162090bcbea4e84d5a3de57ec6ed68c56b14ce4080e0efa178fa06e36d21ff5c6efeb47b8194
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3
1
+ 2.1.1
data/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Foreplay
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/foreplay.png)](http://badge.fury.io/rb/foreplay)
4
+ [![Code Climate](https://codeclimate.com/github/Xenapto/foreplay.png)](https://codeclimate.com/github/Xenapto/foreplay)
5
+ [![Dependency Status](https://gemnasium.com/Xenapto/foreplay.png)](https://gemnasium.com/Xenapto/foreplay)
6
+ ![build status](https://circleci.com/gh/Xenapto/foreplay.png?circle-token=dd3a51864d33f6506b18a355bc901b90c0df3b3b)
7
+
3
8
  Foreplay: deploying Rails projects to Ubuntu using Foreman
4
9
 
5
10
  ## Installation
@@ -7,24 +7,24 @@ Feature: check
7
7
  When I run `foreplay check`
8
8
  Then the output should contain:
9
9
  """
10
- ERROR: foreplay check was called with no arguments
11
- Usage: "foreplay check ENVIRONMENT".
10
+ ERROR: "foreplay check" was called with no arguments
11
+ Usage: "foreplay check ENVIRONMENT"
12
12
  """
13
13
 
14
14
  Scenario: Check configuration parameters - invalid parameter
15
15
  When I run `foreplay check test --invalid xyz`
16
16
  Then the output should contain:
17
17
  """
18
- ERROR: foreplay check was called with arguments ["test", "--invalid", "xyz"]
19
- Usage: "foreplay check ENVIRONMENT".
18
+ ERROR: "foreplay check" was called with arguments ["test", "--invalid", "xyz"]
19
+ Usage: "foreplay check ENVIRONMENT"
20
20
  """
21
21
 
22
22
  Scenario: Check configuration parameters - short invalid parameter
23
23
  When I run `foreplay check test -x xyz`
24
24
  Then the output should contain:
25
25
  """
26
- ERROR: foreplay check was called with arguments ["test", "-x", "xyz"]
27
- Usage: "foreplay check ENVIRONMENT".
26
+ ERROR: "foreplay check" was called with arguments ["test", "-x", "xyz"]
27
+ Usage: "foreplay check ENVIRONMENT"
28
28
  """
29
29
 
30
30
  Scenario: Check configuration parameters - no config file
@@ -7,24 +7,24 @@ Feature: deploy
7
7
  When I run `foreplay deploy`
8
8
  Then the output should contain:
9
9
  """
10
- ERROR: foreplay deploy was called with no arguments
11
- Usage: "foreplay deploy ENVIRONMENT".
10
+ ERROR: "foreplay deploy" was called with no arguments
11
+ Usage: "foreplay deploy ENVIRONMENT"
12
12
  """
13
13
 
14
14
  Scenario: invalid parameter
15
15
  When I run `foreplay deploy test --invalid xyz`
16
16
  Then the output should contain:
17
17
  """
18
- ERROR: foreplay deploy was called with arguments ["test", "--invalid", "xyz"]
19
- Usage: "foreplay deploy ENVIRONMENT".
18
+ ERROR: "foreplay deploy" was called with arguments ["test", "--invalid", "xyz"]
19
+ Usage: "foreplay deploy ENVIRONMENT"
20
20
  """
21
21
 
22
22
  Scenario: short invalid parameter
23
23
  When I run `foreplay deploy test -x xyz`
24
24
  Then the output should contain:
25
25
  """
26
- ERROR: foreplay deploy was called with arguments ["test", "-x", "xyz"]
27
- Usage: "foreplay deploy ENVIRONMENT".
26
+ ERROR: "foreplay deploy" was called with arguments ["test", "-x", "xyz"]
27
+ Usage: "foreplay deploy ENVIRONMENT"
28
28
  """
29
29
 
30
30
  Scenario: no config file
@@ -39,8 +39,8 @@ Feature: Setup
39
39
  | config/foreplay.yml |
40
40
  And the output should contain:
41
41
  """
42
- ERROR: foreplay setup was called with arguments ["-x", "abc"]
43
- Usage: "foreplay setup".
42
+ ERROR: "foreplay setup" was called with arguments ["-x", "abc"]
43
+ Usage: "foreplay setup"
44
44
  """
45
45
 
46
46
  Scenario: Setup invalid option
@@ -49,8 +49,8 @@ Feature: Setup
49
49
  | config/foreplay.yml |
50
50
  And the output should contain:
51
51
  """
52
- ERROR: foreplay setup was called with arguments ["--xyz", "abc"]
53
- Usage: "foreplay setup".
52
+ ERROR: "foreplay setup" was called with arguments ["--xyz", "abc"]
53
+ Usage: "foreplay setup"
54
54
  """
55
55
 
56
56
  Scenario: Setup invalid pool option type
@@ -3,3 +3,7 @@ require 'simplecov'
3
3
  SimpleCov.start
4
4
 
5
5
  require 'aruba/cucumber'
6
+
7
+ Before do
8
+ @aruba_timeout_seconds = 10
9
+ end
data/foreplay.gemspec CHANGED
@@ -23,9 +23,9 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency 'net-ssh-shell'
24
24
  spec.add_dependency 'thor'
25
25
 
26
- spec.add_development_dependency "bundler", "~> 1.3"
26
+ spec.add_development_dependency "bundler"
27
27
  spec.add_development_dependency "rake"
28
- spec.add_development_dependency "rspec", "~> 2.6"
28
+ spec.add_development_dependency "rspec"
29
29
  spec.add_development_dependency "cucumber"
30
30
  spec.add_development_dependency "aruba"
31
31
  spec.add_development_dependency "gem-release"
@@ -1,3 +1,3 @@
1
1
  module Foreplay
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -41,7 +41,7 @@ describe Foreplay::Deploy do
41
41
  it "should complain if the private keyfile defined in the config file doesn't exist" do
42
42
  `rm -f config/foreplay.yml`
43
43
  `foreplay setup -r git@github.com:Xenapto/foreplay.git -s web.example.com -f apps/%a -u fred --keyfile "/home/fred/no-such-file"`
44
- expect { Foreplay::Deploy.start([:deploy, 'production', '']) }.to raise_error(Errno::ENOENT, /.*No such file or directory - \/home\/fred\/no-such-file*/)
44
+ expect { Foreplay::Deploy.start([:deploy, 'production', '']) }.to raise_error(Errno::ENOENT, /.*No such file or directory @ rb_sysopen - \/home\/fred\/no-such-file*/)
45
45
  end
46
46
 
47
47
  it "should terminate if a remote process exits with a non-zero status" do
metadata CHANGED
@@ -1,206 +1,181 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreplay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
5
- prerelease:
4
+ version: 0.0.7
6
5
  platform: ruby
7
6
  authors:
8
7
  - Xenapto
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-12-19 00:00:00.000000000 Z
11
+ date: 2014-04-23 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: colorize
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: foreman
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: net-ssh-shell
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: thor
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ">="
84
74
  - !ruby/object:Gem::Version
85
75
  version: '0'
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ">="
92
81
  - !ruby/object:Gem::Version
93
82
  version: '0'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: bundler
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ~>
87
+ - - ">="
100
88
  - !ruby/object:Gem::Version
101
- version: '1.3'
89
+ version: '0'
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ~>
94
+ - - ">="
108
95
  - !ruby/object:Gem::Version
109
- version: '1.3'
96
+ version: '0'
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: rake
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ">="
116
102
  - !ruby/object:Gem::Version
117
103
  version: '0'
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - ">="
124
109
  - !ruby/object:Gem::Version
125
110
  version: '0'
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: rspec
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ~>
115
+ - - ">="
132
116
  - !ruby/object:Gem::Version
133
- version: '2.6'
117
+ version: '0'
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ~>
122
+ - - ">="
140
123
  - !ruby/object:Gem::Version
141
- version: '2.6'
124
+ version: '0'
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: cucumber
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
- - - ! '>='
129
+ - - ">="
148
130
  - !ruby/object:Gem::Version
149
131
  version: '0'
150
132
  type: :development
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
- - - ! '>='
136
+ - - ">="
156
137
  - !ruby/object:Gem::Version
157
138
  version: '0'
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: aruba
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
142
  requirements:
163
- - - ! '>='
143
+ - - ">="
164
144
  - !ruby/object:Gem::Version
165
145
  version: '0'
166
146
  type: :development
167
147
  prerelease: false
168
148
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
149
  requirements:
171
- - - ! '>='
150
+ - - ">="
172
151
  - !ruby/object:Gem::Version
173
152
  version: '0'
174
153
  - !ruby/object:Gem::Dependency
175
154
  name: gem-release
176
155
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
156
  requirements:
179
- - - ! '>='
157
+ - - ">="
180
158
  - !ruby/object:Gem::Version
181
159
  version: '0'
182
160
  type: :development
183
161
  prerelease: false
184
162
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
163
  requirements:
187
- - - ! '>='
164
+ - - ">="
188
165
  - !ruby/object:Gem::Version
189
166
  version: '0'
190
167
  - !ruby/object:Gem::Dependency
191
168
  name: simplecov
192
169
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
170
  requirements:
195
- - - ! '>='
171
+ - - ">="
196
172
  - !ruby/object:Gem::Version
197
173
  version: '0'
198
174
  type: :development
199
175
  prerelease: false
200
176
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
177
  requirements:
203
- - - ! '>='
178
+ - - ">="
204
179
  - !ruby/object:Gem::Version
205
180
  version: '0'
206
181
  description: Deploying Rails projects to Ubuntu using Foreman
@@ -211,8 +186,8 @@ executables:
211
186
  extensions: []
212
187
  extra_rdoc_files: []
213
188
  files:
214
- - .gitignore
215
- - .ruby-version
189
+ - ".gitignore"
190
+ - ".ruby-version"
216
191
  - Gemfile
217
192
  - LICENSE.txt
218
193
  - README.md
@@ -238,34 +213,27 @@ files:
238
213
  homepage: https://github.com/Xenapto/foreplay
239
214
  licenses:
240
215
  - MIT
216
+ metadata: {}
241
217
  post_install_message:
242
218
  rdoc_options: []
243
219
  require_paths:
244
220
  - lib
245
221
  required_ruby_version: !ruby/object:Gem::Requirement
246
- none: false
247
222
  requirements:
248
- - - ! '>='
223
+ - - ">="
249
224
  - !ruby/object:Gem::Version
250
225
  version: '0'
251
- segments:
252
- - 0
253
- hash: -463785199640223195
254
226
  required_rubygems_version: !ruby/object:Gem::Requirement
255
- none: false
256
227
  requirements:
257
- - - ! '>='
228
+ - - ">="
258
229
  - !ruby/object:Gem::Version
259
230
  version: '0'
260
- segments:
261
- - 0
262
- hash: -463785199640223195
263
231
  requirements: []
264
232
  rubyforge_project:
265
- rubygems_version: 1.8.25
233
+ rubygems_version: 2.2.2
266
234
  signing_key:
267
- specification_version: 3
268
- summary: ! 'Example: foreplay push to production'
235
+ specification_version: 4
236
+ summary: 'Example: foreplay push to production'
269
237
  test_files:
270
238
  - features/check.feature
271
239
  - features/deploy.feature