capistrano3-puppet 0.0.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f844f5a9ab3335789979ebd0d7ecd49f5f6a1c76
4
- data.tar.gz: a8f3140e1539d432ec54ecee9abc9aa829aa40ce
3
+ metadata.gz: bcf51209181b71bd111a0cf008b2df53d8a2e9e1
4
+ data.tar.gz: bd9ae19795a739632a2c4d5cdeb69c0be9a6307e
5
5
  SHA512:
6
- metadata.gz: aa84746fd0bedaec2b4e9bda712341e56356e6a884cd90b8ec693e5dd4def8aa89157e9ec0db969a691399b4816f573ffff132cbabe3cb5a62c73b2a54e86027
7
- data.tar.gz: 552cd712896b5e3371c9067c5d092e566718dbec5317ce16634d02d3b0b7a2e94fb1c02607b3278f018afcb2d319081d60122740ee8ffc01780d55cdb4cdab63
6
+ metadata.gz: 0af9b80805d9bd39235d160b6018579b3cbf1657beb4391b141729f589a5c1396a4ddb50eed9547b52d90fe9e9f9021bb33b845981d6f79681cc36ff5b4d4d5e
7
+ data.tar.gz: 6accd473cc961f44b5fc532b750cb1ff0bd292380576930a427f2c293c82209c457c110f70b61012a79f60d693c22903f7753d0d98ae4803c64ae391e838132a
data/.gitignore CHANGED
@@ -15,3 +15,5 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+
19
+ vendor/bundle
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format d
2
+ --color
3
+ --require spec_helper
data/Rakefile CHANGED
@@ -1 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ require "rspec/core/rake_task"
4
+
5
+ RSpec::Core::RakeTask.new("spec") do |t|
6
+ t.pattern = 'spec/**/*_spec.rb'
7
+ end
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_dependency 'capistrano', '>= 3.1.0'
21
- spec.add_development_dependency "bundler", "~> 1.3"
21
+ spec.add_development_dependency "bundler", ">= 1.3"
22
22
  spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
23
24
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano3
2
2
  module Puppet
3
- VERSION = "0.0.3"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
@@ -0,0 +1,32 @@
1
+ describe 'cap basic tasks' do
2
+ describe '$ cap -T' do
3
+ it 'should contain provison task' do
4
+ Dir.chdir './spec/misc' do
5
+ stdout, stderr, exitinfo = run_and_capture('bundle exec cap -T')
6
+ expect(stdout).to match(/^cap provision/)
7
+ expect(stderr).to be_empty
8
+ expect(exitinfo.exitstatus).to be 0
9
+ end
10
+ end
11
+ end
12
+
13
+ describe '$ cap production provision' do
14
+ let(:hostname) { have_boot2docker? ? run('boot2docker ip 2>/dev/null').chomp : 'localhost' }
15
+ let(:port) { run('docker port test_sshd 22').split(':')[1].chomp rescue "22" }
16
+ let(:ext_env) do
17
+ {
18
+ 'HOSTNAME' => hostname,
19
+ 'PORT' => port
20
+ }
21
+ end
22
+
23
+ it 'should run a provisioning successfully' do
24
+ Dir.chdir './spec/misc' do
25
+ stdout, stderr, exitinfo = run_and_capture("bundle exec cap production provision", ext_env: ext_env)
26
+ expect(stdout).to include('Running /usr/bin/env puppet apply --modulepath=modules manifests/site.pp')
27
+ expect(stdout).to include('Notice: Scope(Class[Sample]): hello, world!')
28
+ expect(exitinfo.exitstatus).to be 0
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,6 @@
1
+ # Load DSL and Setup Up Stages
2
+ require 'capistrano/setup'
3
+
4
+ # Includes default deployment tasks
5
+ require 'capistrano/deploy'
6
+ require 'capistrano3/puppet'
@@ -0,0 +1,19 @@
1
+ FROM rastasheep/ubuntu-sshd:14.04
2
+ MAINTAINER Uchio KONDO <udzura@udzura.jp>
3
+
4
+ ENV HOME /root
5
+
6
+ RUN apt-get -y install puppet
7
+ RUN apt-get -y install git
8
+
9
+ ADD dot.gitconfig /root/.gitconfig
10
+ ADD puppet_repo /var/repo/puppet
11
+ RUN git init /var/repo/puppet
12
+ RUN cd /var/repo/puppet && git add . && git commit -m 'sample commit'
13
+
14
+ RUN mkdir /root/.ssh
15
+ ADD id_dsa.pub /root/.ssh/authorized_keys
16
+ RUN chmod 700 /root/.ssh
17
+ RUN chmod 600 /root/.ssh/authorized_keys
18
+
19
+ RUN mkdir /var/puppet
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'capistrano3-puppet', path: '../../'
@@ -0,0 +1,12 @@
1
+ # config valid only for Capistrano 3.1
2
+ lock '3.2.1'
3
+
4
+ set :application, 'cap_puppet_sample'
5
+ set :repo_url, 'file://localhost/var/repo/puppet'
6
+
7
+ set :deploy_to, '/var/puppet'
8
+ set :scm, :git
9
+ set :log_level, :debug
10
+
11
+ # Default value for :pty is false
12
+ # set :pty, true
@@ -0,0 +1,16 @@
1
+ hostname = ENV['HOSTNAME'] || 'example.dev'
2
+ port = ENV['PORT'] || 22
3
+
4
+ set :puppet_roles, :app
5
+ set :puppet_modulepath, "modules"
6
+ set :puppet_manifest_file, "manifests/site.pp"
7
+
8
+ server hostname,
9
+ roles: %w{app},
10
+ ssh_options: {
11
+ port: port,
12
+ user: 'root',
13
+ keys: %w(./id_dsa),
14
+ forward_agent: false,
15
+ auth_methods: %w(publickey)
16
+ }
@@ -0,0 +1,3 @@
1
+ [user]
2
+ name = Uchio KONDO
3
+ email = udzura@example.com
@@ -0,0 +1,12 @@
1
+ -----BEGIN DSA PRIVATE KEY-----
2
+ MIIBvAIBAAKBgQDlL6CksC8TqnxUGN0VsLmbvrvehZv/00yow+ZTYqPyRBh/P04j
3
+ 3Oy7q69WriZzqIqjCg59mhJv6ZWnmPjnY2OohYbUGe61l738iN2sdIK8Wt40Bg+5
4
+ k01haUZD7H+bewP3NnM89+Z+XHSuKz/JzBQlYs1JiFA9g9nvl7c8JTVAXwIVAK8w
5
+ nvTV/YcFEuJAz5PI2jnIW8pvAoGBAIKvPYB143LMcm6af9sE4iAa3M7l/7owhf3J
6
+ zP9rpM2u+j2TEWE4VbWRCZDcRlKLj/kl+wh3b1dQCe7LB0Bh43EARtPWsXxsF6fb
7
+ Aiv0R+IocyoQw4UZhmbfsW3lwSVOfSi3QavO0aopzp62K5qIECP3tVcnV7yDUPhT
8
+ dzUm5lb4AoGBALuz6xFkZqNxTsjJMTsCP1KLvUbTY2+Zdw97yHTGUuo20OeM03fp
9
+ xLml7Aw5hpIAB9s0PzxTLK4Zd9OENaQBIbjyVo6Kb3YQeb9Q3cvFbXYgDn47gbJ1
10
+ XaKRVZUuKYvlu+xCC8e6nBRIKl62tk+V/Qo5/IJT8gYSfxqzMwIE9L9RAhQG/sAr
11
+ /k12xW0aclP/UdW0O/Va2w==
12
+ -----END DSA PRIVATE KEY-----
@@ -0,0 +1 @@
1
+ ssh-dss AAAAB3NzaC1kc3MAAACBAOUvoKSwLxOqfFQY3RWwuZu+u96Fm//TTKjD5lNio/JEGH8/TiPc7Lurr1auJnOoiqMKDn2aEm/plaeY+OdjY6iFhtQZ7rWXvfyI3ax0grxa3jQGD7mTTWFpRkPsf5t7A/c2czz35n5cdK4rP8nMFCVizUmIUD2D2e+XtzwlNUBfAAAAFQCvMJ701f2HBRLiQM+TyNo5yFvKbwAAAIEAgq89gHXjcsxybpp/2wTiIBrczuX/ujCF/cnM/2ukza76PZMRYThVtZEJkNxGUouP+SX7CHdvV1AJ7ssHQGHjcQBG09axfGwXp9sCK/RH4ihzKhDDhRmGZt+xbeXBJU59KLdBq87RqinOnrYrmogQI/e1VydXvINQ+FN3NSbmVvgAAACBALuz6xFkZqNxTsjJMTsCP1KLvUbTY2+Zdw97yHTGUuo20OeM03fpxLml7Aw5hpIAB9s0PzxTLK4Zd9OENaQBIbjyVo6Kb3YQeb9Q3cvFbXYgDn47gbJ1XaKRVZUuKYvlu+xCC8e6nBRIKl62tk+V/Qo5/IJT8gYSfxqzMwIE9L9R
@@ -0,0 +1,202 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
202
+
@@ -0,0 +1,4 @@
1
+ puppet-tester
2
+ =============
3
+
4
+ Puppet checkout tester
@@ -0,0 +1,3 @@
1
+ node /.*\.dev/ {
2
+ include sample
3
+ }
@@ -0,0 +1,3 @@
1
+ class sample {
2
+ notice('hello, world!')
3
+ }
@@ -0,0 +1,77 @@
1
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
2
+
3
+ require 'open3'
4
+ module CommandRunner
5
+ def __debug?
6
+ !! ENV['DEBUG']
7
+ end
8
+
9
+ def __env
10
+ return @__env if @__env
11
+ @__env = {
12
+ 'PATH' => '/bin"/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin',
13
+ }
14
+ if have_boot2docker?
15
+ docker_host = `echo tcp://$(boot2docker ip 2>/dev/null):2375`.chomp
16
+ @__env['DOCKER_HOST'] = docker_host
17
+ end
18
+ @__env
19
+ end
20
+
21
+ def have_boot2docker?
22
+ ! `which boot2docker`.empty?
23
+ end
24
+
25
+ def run(cmd, options={})
26
+ sout, *_ = run_and_capture cmd, options
27
+ return sout
28
+ end
29
+
30
+ def run_and_capture(cmd, options={})
31
+ ext_env = options[:ext_env] || {}
32
+ sout, serr, ex = Open3.capture3 __env.merge(ext_env), cmd
33
+
34
+ if __debug?
35
+ $stderr.puts "*** Command: #{cmd}"
36
+ $stderr.puts "**** returned stdout:\n\n#{sout}\n"
37
+ $stderr.puts "**** returned stderr:\n\n#{serr}\n"
38
+ $stderr.puts "**** exited: #{ex.exitstatus}"
39
+ end
40
+
41
+ return sout, serr, ex
42
+ end
43
+ end
44
+
45
+ RSpec.configure do |config|
46
+ config.expect_with :rspec do |expectations|
47
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
48
+ end
49
+
50
+ config.mock_with :rspec do |mocks|
51
+ mocks.verify_partial_doubles = true
52
+ end
53
+
54
+ config.run_all_when_everything_filtered = true
55
+ config.warnings = true
56
+ if config.files_to_run.one?
57
+ config.default_formatter = 'doc'
58
+ end
59
+
60
+ config.order = :random
61
+ Kernel.srand config.seed
62
+
63
+ config.include CommandRunner
64
+
65
+ config.before :all do
66
+ Dir.chdir './spec/misc' do
67
+ run 'bundle install --path vendor/bundle'
68
+ end
69
+ run 'docker build -t cap3puppet/base spec/misc'
70
+ run 'docker run -d -P --hostname \'cap3puppet.dev\' --name test_sshd cap3puppet/base'
71
+ end
72
+
73
+ config.after :all do
74
+ run 'docker stop test_sshd'
75
+ run 'docker rm test_sshd'
76
+ end
77
+ end
@@ -0,0 +1,17 @@
1
+ box: wercker-labs/docker
2
+ build:
3
+ steps:
4
+ - install-packages:
5
+ packages: build-essential ruby2.0 ruby2.0-dev bundler
6
+ - script:
7
+ name: docker version
8
+ code: |
9
+ docker -v
10
+ - script:
11
+ name: bundle install
12
+ code: |
13
+ bundle install --path vendor/bundle
14
+ - script:
15
+ name: spec runner
16
+ code: |
17
+ bundle exec rake spec
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano3-puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - asonas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-25 00:00:00.000000000 Z
11
+ date: 2014-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -28,14 +28,14 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.3'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.3'
41
41
  - !ruby/object:Gem::Dependency
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: puppet apply in capistrano tasks
56
70
  email:
57
71
  - hzw1258@gmail.com
@@ -60,6 +74,7 @@ extensions: []
60
74
  extra_rdoc_files: []
61
75
  files:
62
76
  - ".gitignore"
77
+ - ".rspec"
63
78
  - Gemfile
64
79
  - LICENSE.txt
65
80
  - README.md
@@ -68,6 +83,21 @@ files:
68
83
  - lib/capistrano3/puppet.rb
69
84
  - lib/capistrano3/puppet/version.rb
70
85
  - lib/capistrano3/tasks/puppet.rake
86
+ - spec/features/provision_spec.rb
87
+ - spec/misc/Capfile
88
+ - spec/misc/Dockerfile
89
+ - spec/misc/Gemfile
90
+ - spec/misc/config/deploy.rb
91
+ - spec/misc/config/deploy/production.rb
92
+ - spec/misc/dot.gitconfig
93
+ - spec/misc/id_dsa
94
+ - spec/misc/id_dsa.pub
95
+ - spec/misc/puppet_repo/LICENSE
96
+ - spec/misc/puppet_repo/README.md
97
+ - spec/misc/puppet_repo/manifests/site.pp
98
+ - spec/misc/puppet_repo/modules/sample/manifests/init.pp
99
+ - spec/spec_helper.rb
100
+ - wercker.yml
71
101
  homepage: https://github.com/asonas/capistrano3-puppet
72
102
  licenses:
73
103
  - MIT
@@ -88,9 +118,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
118
  version: '0'
89
119
  requirements: []
90
120
  rubyforge_project:
91
- rubygems_version: 2.2.0
121
+ rubygems_version: 2.2.2
92
122
  signing_key:
93
123
  specification_version: 4
94
124
  summary: puppet apply in capistrano tasks
95
- test_files: []
125
+ test_files:
126
+ - spec/features/provision_spec.rb
127
+ - spec/misc/Capfile
128
+ - spec/misc/Dockerfile
129
+ - spec/misc/Gemfile
130
+ - spec/misc/config/deploy.rb
131
+ - spec/misc/config/deploy/production.rb
132
+ - spec/misc/dot.gitconfig
133
+ - spec/misc/id_dsa
134
+ - spec/misc/id_dsa.pub
135
+ - spec/misc/puppet_repo/LICENSE
136
+ - spec/misc/puppet_repo/README.md
137
+ - spec/misc/puppet_repo/manifests/site.pp
138
+ - spec/misc/puppet_repo/modules/sample/manifests/init.pp
139
+ - spec/spec_helper.rb
96
140
  has_rdoc: