engineyard-serverside 1.4.7.pre → 1.4.8.nodestack

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.
@@ -119,7 +119,7 @@ module EY
119
119
  end
120
120
 
121
121
  def framework_envs
122
- "RAILS_ENV=#{environment} RACK_ENV=#{environment} MERB_ENV=#{environment}"
122
+ "RAILS_ENV=#{environment} RACK_ENV=#{environment} NODE_ENV=#{environment} MERB_ENV=#{environment}"
123
123
  end
124
124
 
125
125
  def current_path
@@ -166,6 +166,15 @@ module EY
166
166
 
167
167
  run "mkdir -p #{bundled_gems_path} && ruby -v > #{ruby_version_file} && uname -m > #{system_version_file}"
168
168
  end
169
+
170
+ if File.exist?("#{c.release_path}/package.json")
171
+ unless run("which npm")
172
+ error "~> package.json detected, BUT npm not installed"
173
+ else
174
+ info "~> package.json detected, installing npm packages"
175
+ run "cd #{c.release_path} && npm install"
176
+ end
177
+ end
169
178
  end
170
179
 
171
180
  # task
@@ -41,6 +41,11 @@ module EY
41
41
  EY::Serverside::LoggedOutput.verbose?
42
42
  end
43
43
 
44
+ # TODO color output
45
+ def error(msg)
46
+ info(msg)
47
+ end
48
+
44
49
  def info(msg)
45
50
  with_logfile do |log|
46
51
  Tee.new($stdout, log) << (msg + "\n")
@@ -1,5 +1,5 @@
1
1
  module EY
2
2
  module Serverside
3
- VERSION = '1.4.7.pre'
3
+ VERSION = '1.4.8.nodestack'
4
4
  end
5
5
  end
@@ -46,6 +46,21 @@ DEPENDENCIES
46
46
  rake
47
47
  EOF
48
48
  end
49
+
50
+ File.open('package.json', 'w') do |f|
51
+ f.write <<-EOF
52
+ {
53
+ "name": "application-name"
54
+ , "version": "0.0.1"
55
+ , "private": true
56
+ , "dependencies": {
57
+ "express": "2.3.12"
58
+ , "jade": ">= 0.0.1"
59
+ }
60
+ }
61
+ EOF
62
+ end
63
+
49
64
  end
50
65
  end
51
66
 
@@ -137,8 +152,16 @@ describe "deploying an application" do
137
152
  clear_bundle_cmd = @deployer.commands.grep(/rm -Rf \S+\/bundled_gems/).first
138
153
  clear_bundle_cmd.should_not be_nil
139
154
  end
155
+
156
+ it "creates binstubs somewhere out of the way" do
157
+ File.exist?(File.join(@deploy_dir, 'current', 'ey_bundler_binstubs', 'rake')).should be_true
158
+ end
140
159
  end
141
160
 
161
+ it "runs 'npm install'" do
162
+ bundle_install_cmd = @deployer.commands.grep(/npm install/).first
163
+ bundle_install_cmd.should_not be_nil
164
+ end
142
165
  it "generates a database.yml file" do
143
166
  File.exist?(File.join(@deploy_dir, 'current', 'config', 'database.yml')).should be_true
144
167
  end
metadata CHANGED
@@ -1,312 +1,298 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-serverside
3
3
  version: !ruby/object:Gem::Version
4
- hash: 961916008
5
4
  prerelease: 6
6
- segments:
7
- - 1
8
- - 4
9
- - 7
10
- - pre
11
- version: 1.4.7.pre
5
+ version: 1.4.8.nodestack
12
6
  platform: ruby
13
7
  authors:
14
- - EY Cloud Team
8
+ - EY Cloud Team
15
9
  autorequire:
16
10
  bindir: bin
17
11
  cert_chain: []
18
12
 
19
- date: 2011-09-07 00:00:00 Z
13
+ date: 2011-09-08 00:00:00 +02:00
14
+ default_executable: engineyard-serverside
20
15
  dependencies:
21
- - !ruby/object:Gem::Dependency
22
- requirement: &id001 !ruby/object:Gem::Requirement
23
- none: false
24
- requirements:
25
- - - "="
26
- - !ruby/object:Gem::Version
27
- hash: 49
28
- segments:
29
- - 0
30
- - 8
31
- - 7
32
- version: 0.8.7
33
- version_requirements: *id001
34
- name: rake
35
- type: :development
36
- prerelease: false
37
- - !ruby/object:Gem::Dependency
38
- requirement: &id002 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - "="
42
- - !ruby/object:Gem::Version
43
- hash: 27
44
- segments:
45
- - 1
46
- - 3
47
- - 0
48
- version: 1.3.0
49
- version_requirements: *id002
50
- name: rspec
51
- type: :development
52
- prerelease: false
16
+ - !ruby/object:Gem::Dependency
17
+ name: rake
18
+ version_requirements: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - "="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.8.7
24
+ requirement: *id001
25
+ prerelease: false
26
+ type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ version_requirements: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - "="
33
+ - !ruby/object:Gem::Version
34
+ version: 1.3.0
35
+ requirement: *id002
36
+ prerelease: false
37
+ type: :development
53
38
  description:
54
39
  email: cloud@engineyard.com
55
40
  executables:
56
- - engineyard-serverside
41
+ - engineyard-serverside
57
42
  extensions: []
58
43
 
59
44
  extra_rdoc_files: []
60
45
 
61
46
  files:
62
- - bin/engineyard-serverside
63
- - lib/core-ext/README.md
64
- - lib/core-ext/string.rb
65
- - lib/engineyard-serverside/bundle_installer.rb
66
- - lib/engineyard-serverside/cli.rb
67
- - lib/engineyard-serverside/configuration.rb
68
- - lib/engineyard-serverside/default_maintenance_page.html
69
- - lib/engineyard-serverside/deploy.rb
70
- - lib/engineyard-serverside/deploy_hook.rb
71
- - lib/engineyard-serverside/deprecation.rb
72
- - lib/engineyard-serverside/lockfile_parser.rb
73
- - lib/engineyard-serverside/logged_output.rb
74
- - lib/engineyard-serverside/server.rb
75
- - lib/engineyard-serverside/strategies/git.rb
76
- - lib/engineyard-serverside/task.rb
77
- - lib/engineyard-serverside/version.rb
78
- - lib/engineyard-serverside.rb
79
- - lib/vendor/dataflow/dataflow/actor.rb
80
- - lib/vendor/dataflow/dataflow/equality.rb
81
- - lib/vendor/dataflow/dataflow/future_queue.rb
82
- - lib/vendor/dataflow/dataflow/port.rb
83
- - lib/vendor/dataflow/dataflow.rb
84
- - lib/vendor/dataflow/examples/barrier.rb
85
- - lib/vendor/dataflow/examples/data_driven.rb
86
- - lib/vendor/dataflow/examples/dataflow_http_gets.rb
87
- - lib/vendor/dataflow/examples/flow.rb
88
- - lib/vendor/dataflow/examples/future_http_gets.rb
89
- - lib/vendor/dataflow/examples/future_queue.rb
90
- - lib/vendor/dataflow/examples/instance_variables.rb
91
- - lib/vendor/dataflow/examples/laziness.rb
92
- - lib/vendor/dataflow/examples/local_variables.rb
93
- - lib/vendor/dataflow/examples/messages.rb
94
- - lib/vendor/dataflow/examples/port_http_gets.rb
95
- - lib/vendor/dataflow/examples/port_send.rb
96
- - lib/vendor/dataflow/examples/ring.rb
97
- - lib/vendor/dataflow/HISTORY
98
- - lib/vendor/dataflow/LICENSE
99
- - lib/vendor/dataflow/Rakefile
100
- - lib/vendor/dataflow/README.textile
101
- - lib/vendor/dataflow/spec/actor_spec.rb
102
- - lib/vendor/dataflow/spec/anonymous_variables_spec.rb
103
- - lib/vendor/dataflow/spec/barrier_spec.rb
104
- - lib/vendor/dataflow/spec/by_need_spec.rb
105
- - lib/vendor/dataflow/spec/dataflow_spec.rb
106
- - lib/vendor/dataflow/spec/equality_spec.rb
107
- - lib/vendor/dataflow/spec/flow_spec.rb
108
- - lib/vendor/dataflow/spec/forker_spec.rb
109
- - lib/vendor/dataflow/spec/future_queue_spec.rb
110
- - lib/vendor/dataflow/spec/inspect_spec.rb
111
- - lib/vendor/dataflow/spec/need_later_spec.rb
112
- - lib/vendor/dataflow/spec/port_spec.rb
113
- - lib/vendor/dataflow/spec/spec.opts
114
- - lib/vendor/dataflow/spec/spec_helper.rb
115
- - lib/vendor/escape/doc_include/template/qualitysmith.rb
116
- - lib/vendor/escape/lib/escape.rb
117
- - lib/vendor/escape/Readme
118
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
119
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
120
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
121
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
122
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
123
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
124
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
125
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
126
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
127
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
128
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
129
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
130
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
131
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
132
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
133
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
134
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
135
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
136
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
137
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
138
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
139
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
140
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
141
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
142
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
143
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
144
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
145
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
146
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
147
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
148
- - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
149
- - lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
150
- - lib/vendor/json_pure/benchmarks/generator_benchmark.rb
151
- - lib/vendor/json_pure/benchmarks/ohai.json
152
- - lib/vendor/json_pure/benchmarks/ohai.ruby
153
- - lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
154
- - lib/vendor/json_pure/benchmarks/parser_benchmark.rb
155
- - lib/vendor/json_pure/bin/edit_json.rb
156
- - lib/vendor/json_pure/bin/prettify_json.rb
157
- - lib/vendor/json_pure/CHANGES
158
- - lib/vendor/json_pure/COPYING
159
- - lib/vendor/json_pure/data/example.json
160
- - lib/vendor/json_pure/data/index.html
161
- - lib/vendor/json_pure/data/prototype.js
162
- - lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
163
- - lib/vendor/json_pure/ext/json/ext/generator/generator.c
164
- - lib/vendor/json_pure/ext/json/ext/generator/generator.h
165
- - lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
166
- - lib/vendor/json_pure/ext/json/ext/parser/parser.c
167
- - lib/vendor/json_pure/ext/json/ext/parser/parser.h
168
- - lib/vendor/json_pure/ext/json/ext/parser/parser.rl
169
- - lib/vendor/json_pure/GPL
170
- - lib/vendor/json_pure/install.rb
171
- - lib/vendor/json_pure/lib/json/add/core.rb
172
- - lib/vendor/json_pure/lib/json/add/rails.rb
173
- - lib/vendor/json_pure/lib/json/Array.xpm
174
- - lib/vendor/json_pure/lib/json/common.rb
175
- - lib/vendor/json_pure/lib/json/editor.rb
176
- - lib/vendor/json_pure/lib/json/ext.rb
177
- - lib/vendor/json_pure/lib/json/FalseClass.xpm
178
- - lib/vendor/json_pure/lib/json/Hash.xpm
179
- - lib/vendor/json_pure/lib/json/json.xpm
180
- - lib/vendor/json_pure/lib/json/Key.xpm
181
- - lib/vendor/json_pure/lib/json/NilClass.xpm
182
- - lib/vendor/json_pure/lib/json/Numeric.xpm
183
- - lib/vendor/json_pure/lib/json/pure/generator.rb
184
- - lib/vendor/json_pure/lib/json/pure/parser.rb
185
- - lib/vendor/json_pure/lib/json/pure.rb
186
- - lib/vendor/json_pure/lib/json/String.xpm
187
- - lib/vendor/json_pure/lib/json/TrueClass.xpm
188
- - lib/vendor/json_pure/lib/json/version.rb
189
- - lib/vendor/json_pure/lib/json.rb
190
- - lib/vendor/json_pure/Rakefile
191
- - lib/vendor/json_pure/README
192
- - lib/vendor/json_pure/tests/fixtures/fail1.json
193
- - lib/vendor/json_pure/tests/fixtures/fail10.json
194
- - lib/vendor/json_pure/tests/fixtures/fail11.json
195
- - lib/vendor/json_pure/tests/fixtures/fail12.json
196
- - lib/vendor/json_pure/tests/fixtures/fail13.json
197
- - lib/vendor/json_pure/tests/fixtures/fail14.json
198
- - lib/vendor/json_pure/tests/fixtures/fail18.json
199
- - lib/vendor/json_pure/tests/fixtures/fail19.json
200
- - lib/vendor/json_pure/tests/fixtures/fail2.json
201
- - lib/vendor/json_pure/tests/fixtures/fail20.json
202
- - lib/vendor/json_pure/tests/fixtures/fail21.json
203
- - lib/vendor/json_pure/tests/fixtures/fail22.json
204
- - lib/vendor/json_pure/tests/fixtures/fail23.json
205
- - lib/vendor/json_pure/tests/fixtures/fail24.json
206
- - lib/vendor/json_pure/tests/fixtures/fail25.json
207
- - lib/vendor/json_pure/tests/fixtures/fail27.json
208
- - lib/vendor/json_pure/tests/fixtures/fail28.json
209
- - lib/vendor/json_pure/tests/fixtures/fail3.json
210
- - lib/vendor/json_pure/tests/fixtures/fail4.json
211
- - lib/vendor/json_pure/tests/fixtures/fail5.json
212
- - lib/vendor/json_pure/tests/fixtures/fail6.json
213
- - lib/vendor/json_pure/tests/fixtures/fail7.json
214
- - lib/vendor/json_pure/tests/fixtures/fail8.json
215
- - lib/vendor/json_pure/tests/fixtures/fail9.json
216
- - lib/vendor/json_pure/tests/fixtures/pass1.json
217
- - lib/vendor/json_pure/tests/fixtures/pass15.json
218
- - lib/vendor/json_pure/tests/fixtures/pass16.json
219
- - lib/vendor/json_pure/tests/fixtures/pass17.json
220
- - lib/vendor/json_pure/tests/fixtures/pass2.json
221
- - lib/vendor/json_pure/tests/fixtures/pass26.json
222
- - lib/vendor/json_pure/tests/fixtures/pass3.json
223
- - lib/vendor/json_pure/tests/test_json.rb
224
- - lib/vendor/json_pure/tests/test_json_addition.rb
225
- - lib/vendor/json_pure/tests/test_json_encoding.rb
226
- - lib/vendor/json_pure/tests/test_json_fixtures.rb
227
- - lib/vendor/json_pure/tests/test_json_generate.rb
228
- - lib/vendor/json_pure/tests/test_json_rails.rb
229
- - lib/vendor/json_pure/tests/test_json_unicode.rb
230
- - lib/vendor/json_pure/TODO
231
- - lib/vendor/json_pure/tools/fuzz.rb
232
- - lib/vendor/json_pure/tools/server.rb
233
- - lib/vendor/json_pure/VERSION
234
- - lib/vendor/open4/lib/open4.rb
235
- - lib/vendor/ruby_1.8.6_openssl.patch
236
- - lib/vendor/thor/bin/rake2thor
237
- - lib/vendor/thor/bin/thor
238
- - lib/vendor/thor/CHANGELOG.rdoc
239
- - lib/vendor/thor/lib/thor/actions/create_file.rb
240
- - lib/vendor/thor/lib/thor/actions/directory.rb
241
- - lib/vendor/thor/lib/thor/actions/empty_directory.rb
242
- - lib/vendor/thor/lib/thor/actions/file_manipulation.rb
243
- - lib/vendor/thor/lib/thor/actions/inject_into_file.rb
244
- - lib/vendor/thor/lib/thor/actions.rb
245
- - lib/vendor/thor/lib/thor/base.rb
246
- - lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
247
- - lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
248
- - lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
249
- - lib/vendor/thor/lib/thor/error.rb
250
- - lib/vendor/thor/lib/thor/group.rb
251
- - lib/vendor/thor/lib/thor/invocation.rb
252
- - lib/vendor/thor/lib/thor/parser/argument.rb
253
- - lib/vendor/thor/lib/thor/parser/arguments.rb
254
- - lib/vendor/thor/lib/thor/parser/option.rb
255
- - lib/vendor/thor/lib/thor/parser/options.rb
256
- - lib/vendor/thor/lib/thor/parser.rb
257
- - lib/vendor/thor/lib/thor/rake_compat.rb
258
- - lib/vendor/thor/lib/thor/runner.rb
259
- - lib/vendor/thor/lib/thor/shell/basic.rb
260
- - lib/vendor/thor/lib/thor/shell/color.rb
261
- - lib/vendor/thor/lib/thor/shell.rb
262
- - lib/vendor/thor/lib/thor/task.rb
263
- - lib/vendor/thor/lib/thor/util.rb
264
- - lib/vendor/thor/lib/thor/version.rb
265
- - lib/vendor/thor/lib/thor.rb
266
- - lib/vendor/thor/LICENSE
267
- - lib/vendor/thor/README.rdoc
268
- - lib/vendor/thor/thor.gemspec
269
- - lib/vendor/thor/Thorfile
270
- - LICENSE
271
- - spec/custom_deploy_spec.rb
272
- - spec/deploy_hook_spec.rb
273
- - spec/deprecation_spec.rb
274
- - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
275
- - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
276
- - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
277
- - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
278
- - spec/fixtures/gemfiles/activerecord_mysql/Gemfile
279
- - spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
280
- - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
281
- - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
282
- - spec/fixtures/gemfiles/activerecord_pg/Gemfile
283
- - spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
284
- - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
285
- - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
286
- - spec/fixtures/gemfiles/diy_database_yml/config/database.yml
287
- - spec/fixtures/gemfiles/diy_database_yml/Gemfile
288
- - spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
289
- - spec/fixtures/gitrepo/foo
290
- - spec/fixtures/gitrepo.tar.gz
291
- - spec/fixtures/invalid_hook.rb
292
- - spec/fixtures/valid_hook.rb
293
- - spec/generate_configs_spec.rb
294
- - spec/git_strategy_spec.rb
295
- - spec/lib/full_test_deploy.rb
296
- - spec/lockfile_parser_spec.rb
297
- - spec/real_deploy_spec.rb
298
- - spec/restart_spec.rb
299
- - spec/server_spec.rb
300
- - spec/spec_helper.rb
301
- - spec/support/lockfiles/0.9-no-bundler
302
- - spec/support/lockfiles/0.9-with-bundler
303
- - spec/support/lockfiles/1.0-no-bundler
304
- - spec/support/lockfiles/1.0.0.rc.1-with-bundler
305
- - spec/support/lockfiles/1.0.6-no-bundler
306
- - spec/support/lockfiles/1.0.6-with-any-bundler
307
- - spec/support/lockfiles/1.0.6-with-bundler
308
- - spec/support/lockfiles/evil-yaml
309
- - spec/support/lockfiles/not-a-lockfile
47
+ - bin/engineyard-serverside
48
+ - lib/engineyard-serverside.rb
49
+ - lib/core-ext/README.md
50
+ - lib/core-ext/string.rb
51
+ - lib/engineyard-serverside/bundle_installer.rb
52
+ - lib/engineyard-serverside/cli.rb
53
+ - lib/engineyard-serverside/configuration.rb
54
+ - lib/engineyard-serverside/default_maintenance_page.html
55
+ - lib/engineyard-serverside/deploy.rb
56
+ - lib/engineyard-serverside/deploy_hook.rb
57
+ - lib/engineyard-serverside/deprecation.rb
58
+ - lib/engineyard-serverside/lockfile_parser.rb
59
+ - lib/engineyard-serverside/logged_output.rb
60
+ - lib/engineyard-serverside/server.rb
61
+ - lib/engineyard-serverside/task.rb
62
+ - lib/engineyard-serverside/version.rb
63
+ - lib/engineyard-serverside/strategies/git.rb
64
+ - lib/vendor/ruby_1.8.6_openssl.patch
65
+ - lib/vendor/dataflow/dataflow.rb
66
+ - lib/vendor/dataflow/HISTORY
67
+ - lib/vendor/dataflow/LICENSE
68
+ - lib/vendor/dataflow/Rakefile
69
+ - lib/vendor/dataflow/README.textile
70
+ - lib/vendor/dataflow/dataflow/actor.rb
71
+ - lib/vendor/dataflow/dataflow/equality.rb
72
+ - lib/vendor/dataflow/dataflow/future_queue.rb
73
+ - lib/vendor/dataflow/dataflow/port.rb
74
+ - lib/vendor/dataflow/examples/barrier.rb
75
+ - lib/vendor/dataflow/examples/data_driven.rb
76
+ - lib/vendor/dataflow/examples/dataflow_http_gets.rb
77
+ - lib/vendor/dataflow/examples/flow.rb
78
+ - lib/vendor/dataflow/examples/future_http_gets.rb
79
+ - lib/vendor/dataflow/examples/future_queue.rb
80
+ - lib/vendor/dataflow/examples/instance_variables.rb
81
+ - lib/vendor/dataflow/examples/laziness.rb
82
+ - lib/vendor/dataflow/examples/local_variables.rb
83
+ - lib/vendor/dataflow/examples/messages.rb
84
+ - lib/vendor/dataflow/examples/port_http_gets.rb
85
+ - lib/vendor/dataflow/examples/port_send.rb
86
+ - lib/vendor/dataflow/examples/ring.rb
87
+ - lib/vendor/dataflow/spec/actor_spec.rb
88
+ - lib/vendor/dataflow/spec/anonymous_variables_spec.rb
89
+ - lib/vendor/dataflow/spec/barrier_spec.rb
90
+ - lib/vendor/dataflow/spec/by_need_spec.rb
91
+ - lib/vendor/dataflow/spec/dataflow_spec.rb
92
+ - lib/vendor/dataflow/spec/equality_spec.rb
93
+ - lib/vendor/dataflow/spec/flow_spec.rb
94
+ - lib/vendor/dataflow/spec/forker_spec.rb
95
+ - lib/vendor/dataflow/spec/future_queue_spec.rb
96
+ - lib/vendor/dataflow/spec/inspect_spec.rb
97
+ - lib/vendor/dataflow/spec/need_later_spec.rb
98
+ - lib/vendor/dataflow/spec/port_spec.rb
99
+ - lib/vendor/dataflow/spec/spec.opts
100
+ - lib/vendor/dataflow/spec/spec_helper.rb
101
+ - lib/vendor/escape/Readme
102
+ - lib/vendor/escape/doc_include/template/qualitysmith.rb
103
+ - lib/vendor/escape/lib/escape.rb
104
+ - lib/vendor/json_pure/CHANGES
105
+ - lib/vendor/json_pure/COPYING
106
+ - lib/vendor/json_pure/GPL
107
+ - lib/vendor/json_pure/install.rb
108
+ - lib/vendor/json_pure/Rakefile
109
+ - lib/vendor/json_pure/README
110
+ - lib/vendor/json_pure/TODO
111
+ - lib/vendor/json_pure/VERSION
112
+ - lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
113
+ - lib/vendor/json_pure/benchmarks/generator_benchmark.rb
114
+ - lib/vendor/json_pure/benchmarks/ohai.json
115
+ - lib/vendor/json_pure/benchmarks/ohai.ruby
116
+ - lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
117
+ - lib/vendor/json_pure/benchmarks/parser_benchmark.rb
118
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
119
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
120
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
121
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
122
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
123
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
124
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
125
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
126
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
127
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
128
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
129
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
130
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
131
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
132
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
133
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
134
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
135
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
136
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
137
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
138
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
139
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
140
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
141
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
142
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
143
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
144
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
145
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
146
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
147
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
148
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
149
+ - lib/vendor/json_pure/bin/edit_json.rb
150
+ - lib/vendor/json_pure/bin/prettify_json.rb
151
+ - lib/vendor/json_pure/data/example.json
152
+ - lib/vendor/json_pure/data/index.html
153
+ - lib/vendor/json_pure/data/prototype.js
154
+ - lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
155
+ - lib/vendor/json_pure/ext/json/ext/generator/generator.c
156
+ - lib/vendor/json_pure/ext/json/ext/generator/generator.h
157
+ - lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
158
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.c
159
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.h
160
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.rl
161
+ - lib/vendor/json_pure/lib/json.rb
162
+ - lib/vendor/json_pure/lib/json/Array.xpm
163
+ - lib/vendor/json_pure/lib/json/common.rb
164
+ - lib/vendor/json_pure/lib/json/editor.rb
165
+ - lib/vendor/json_pure/lib/json/ext.rb
166
+ - lib/vendor/json_pure/lib/json/FalseClass.xpm
167
+ - lib/vendor/json_pure/lib/json/Hash.xpm
168
+ - lib/vendor/json_pure/lib/json/json.xpm
169
+ - lib/vendor/json_pure/lib/json/Key.xpm
170
+ - lib/vendor/json_pure/lib/json/NilClass.xpm
171
+ - lib/vendor/json_pure/lib/json/Numeric.xpm
172
+ - lib/vendor/json_pure/lib/json/pure.rb
173
+ - lib/vendor/json_pure/lib/json/String.xpm
174
+ - lib/vendor/json_pure/lib/json/TrueClass.xpm
175
+ - lib/vendor/json_pure/lib/json/version.rb
176
+ - lib/vendor/json_pure/lib/json/add/core.rb
177
+ - lib/vendor/json_pure/lib/json/add/rails.rb
178
+ - lib/vendor/json_pure/lib/json/pure/generator.rb
179
+ - lib/vendor/json_pure/lib/json/pure/parser.rb
180
+ - lib/vendor/json_pure/tests/test_json.rb
181
+ - lib/vendor/json_pure/tests/test_json_addition.rb
182
+ - lib/vendor/json_pure/tests/test_json_encoding.rb
183
+ - lib/vendor/json_pure/tests/test_json_fixtures.rb
184
+ - lib/vendor/json_pure/tests/test_json_generate.rb
185
+ - lib/vendor/json_pure/tests/test_json_rails.rb
186
+ - lib/vendor/json_pure/tests/test_json_unicode.rb
187
+ - lib/vendor/json_pure/tests/fixtures/fail1.json
188
+ - lib/vendor/json_pure/tests/fixtures/fail10.json
189
+ - lib/vendor/json_pure/tests/fixtures/fail11.json
190
+ - lib/vendor/json_pure/tests/fixtures/fail12.json
191
+ - lib/vendor/json_pure/tests/fixtures/fail13.json
192
+ - lib/vendor/json_pure/tests/fixtures/fail14.json
193
+ - lib/vendor/json_pure/tests/fixtures/fail18.json
194
+ - lib/vendor/json_pure/tests/fixtures/fail19.json
195
+ - lib/vendor/json_pure/tests/fixtures/fail2.json
196
+ - lib/vendor/json_pure/tests/fixtures/fail20.json
197
+ - lib/vendor/json_pure/tests/fixtures/fail21.json
198
+ - lib/vendor/json_pure/tests/fixtures/fail22.json
199
+ - lib/vendor/json_pure/tests/fixtures/fail23.json
200
+ - lib/vendor/json_pure/tests/fixtures/fail24.json
201
+ - lib/vendor/json_pure/tests/fixtures/fail25.json
202
+ - lib/vendor/json_pure/tests/fixtures/fail27.json
203
+ - lib/vendor/json_pure/tests/fixtures/fail28.json
204
+ - lib/vendor/json_pure/tests/fixtures/fail3.json
205
+ - lib/vendor/json_pure/tests/fixtures/fail4.json
206
+ - lib/vendor/json_pure/tests/fixtures/fail5.json
207
+ - lib/vendor/json_pure/tests/fixtures/fail6.json
208
+ - lib/vendor/json_pure/tests/fixtures/fail7.json
209
+ - lib/vendor/json_pure/tests/fixtures/fail8.json
210
+ - lib/vendor/json_pure/tests/fixtures/fail9.json
211
+ - lib/vendor/json_pure/tests/fixtures/pass1.json
212
+ - lib/vendor/json_pure/tests/fixtures/pass15.json
213
+ - lib/vendor/json_pure/tests/fixtures/pass16.json
214
+ - lib/vendor/json_pure/tests/fixtures/pass17.json
215
+ - lib/vendor/json_pure/tests/fixtures/pass2.json
216
+ - lib/vendor/json_pure/tests/fixtures/pass26.json
217
+ - lib/vendor/json_pure/tests/fixtures/pass3.json
218
+ - lib/vendor/json_pure/tools/fuzz.rb
219
+ - lib/vendor/json_pure/tools/server.rb
220
+ - lib/vendor/open4/lib/open4.rb
221
+ - lib/vendor/thor/CHANGELOG.rdoc
222
+ - lib/vendor/thor/LICENSE
223
+ - lib/vendor/thor/README.rdoc
224
+ - lib/vendor/thor/thor.gemspec
225
+ - lib/vendor/thor/Thorfile
226
+ - lib/vendor/thor/bin/rake2thor
227
+ - lib/vendor/thor/bin/thor
228
+ - lib/vendor/thor/lib/thor.rb
229
+ - lib/vendor/thor/lib/thor/actions.rb
230
+ - lib/vendor/thor/lib/thor/base.rb
231
+ - lib/vendor/thor/lib/thor/error.rb
232
+ - lib/vendor/thor/lib/thor/group.rb
233
+ - lib/vendor/thor/lib/thor/invocation.rb
234
+ - lib/vendor/thor/lib/thor/parser.rb
235
+ - lib/vendor/thor/lib/thor/rake_compat.rb
236
+ - lib/vendor/thor/lib/thor/runner.rb
237
+ - lib/vendor/thor/lib/thor/shell.rb
238
+ - lib/vendor/thor/lib/thor/task.rb
239
+ - lib/vendor/thor/lib/thor/util.rb
240
+ - lib/vendor/thor/lib/thor/version.rb
241
+ - lib/vendor/thor/lib/thor/actions/create_file.rb
242
+ - lib/vendor/thor/lib/thor/actions/directory.rb
243
+ - lib/vendor/thor/lib/thor/actions/empty_directory.rb
244
+ - lib/vendor/thor/lib/thor/actions/file_manipulation.rb
245
+ - lib/vendor/thor/lib/thor/actions/inject_into_file.rb
246
+ - lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
247
+ - lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
248
+ - lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
249
+ - lib/vendor/thor/lib/thor/parser/argument.rb
250
+ - lib/vendor/thor/lib/thor/parser/arguments.rb
251
+ - lib/vendor/thor/lib/thor/parser/option.rb
252
+ - lib/vendor/thor/lib/thor/parser/options.rb
253
+ - lib/vendor/thor/lib/thor/shell/basic.rb
254
+ - lib/vendor/thor/lib/thor/shell/color.rb
255
+ - LICENSE
256
+ - spec/custom_deploy_spec.rb
257
+ - spec/deploy_hook_spec.rb
258
+ - spec/deprecation_spec.rb
259
+ - spec/generate_configs_spec.rb
260
+ - spec/git_strategy_spec.rb
261
+ - spec/lockfile_parser_spec.rb
262
+ - spec/real_deploy_spec.rb
263
+ - spec/restart_spec.rb
264
+ - spec/server_spec.rb
265
+ - spec/spec_helper.rb
266
+ - spec/fixtures/gitrepo.tar.gz
267
+ - spec/fixtures/invalid_hook.rb
268
+ - spec/fixtures/valid_hook.rb
269
+ - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
270
+ - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
271
+ - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
272
+ - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
273
+ - spec/fixtures/gemfiles/activerecord_mysql/Gemfile
274
+ - spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
275
+ - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
276
+ - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
277
+ - spec/fixtures/gemfiles/activerecord_pg/Gemfile
278
+ - spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
279
+ - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
280
+ - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
281
+ - spec/fixtures/gemfiles/diy_database_yml/Gemfile
282
+ - spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
283
+ - spec/fixtures/gemfiles/diy_database_yml/config/database.yml
284
+ - spec/fixtures/gitrepo/foo
285
+ - spec/lib/full_test_deploy.rb
286
+ - spec/support/lockfiles/0.9-no-bundler
287
+ - spec/support/lockfiles/0.9-with-bundler
288
+ - spec/support/lockfiles/1.0-no-bundler
289
+ - spec/support/lockfiles/1.0.0.rc.1-with-bundler
290
+ - spec/support/lockfiles/1.0.6-no-bundler
291
+ - spec/support/lockfiles/1.0.6-with-any-bundler
292
+ - spec/support/lockfiles/1.0.6-with-bundler
293
+ - spec/support/lockfiles/evil-yaml
294
+ - spec/support/lockfiles/not-a-lockfile
295
+ has_rdoc: true
310
296
  homepage: http://github.com/engineyard/engineyard-serverside
311
297
  licenses: []
312
298
 
@@ -314,71 +300,63 @@ post_install_message:
314
300
  rdoc_options: []
315
301
 
316
302
  require_paths:
317
- - lib
303
+ - lib
318
304
  required_ruby_version: !ruby/object:Gem::Requirement
319
305
  none: false
320
306
  requirements:
321
- - - ">="
322
- - !ruby/object:Gem::Version
323
- hash: 3
324
- segments:
325
- - 0
326
- version: "0"
307
+ - - ">="
308
+ - !ruby/object:Gem::Version
309
+ version: "0"
327
310
  required_rubygems_version: !ruby/object:Gem::Requirement
328
311
  none: false
329
312
  requirements:
330
- - - ">"
331
- - !ruby/object:Gem::Version
332
- hash: 25
333
- segments:
334
- - 1
335
- - 3
336
- - 1
337
- version: 1.3.1
313
+ - - ">"
314
+ - !ruby/object:Gem::Version
315
+ version: 1.3.1
338
316
  requirements: []
339
317
 
340
318
  rubyforge_project:
341
- rubygems_version: 1.8.6
319
+ rubygems_version: 1.5.1
342
320
  signing_key:
343
321
  specification_version: 3
344
322
  summary: A gem that deploys ruby applications on EY Cloud instances
345
323
  test_files:
346
- - spec/custom_deploy_spec.rb
347
- - spec/deploy_hook_spec.rb
348
- - spec/deprecation_spec.rb
349
- - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
350
- - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
351
- - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
352
- - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
353
- - spec/fixtures/gemfiles/activerecord_mysql/Gemfile
354
- - spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
355
- - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
356
- - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
357
- - spec/fixtures/gemfiles/activerecord_pg/Gemfile
358
- - spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
359
- - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
360
- - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
361
- - spec/fixtures/gemfiles/diy_database_yml/config/database.yml
362
- - spec/fixtures/gemfiles/diy_database_yml/Gemfile
363
- - spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
364
- - spec/fixtures/gitrepo/foo
365
- - spec/fixtures/gitrepo.tar.gz
366
- - spec/fixtures/invalid_hook.rb
367
- - spec/fixtures/valid_hook.rb
368
- - spec/generate_configs_spec.rb
369
- - spec/git_strategy_spec.rb
370
- - spec/lib/full_test_deploy.rb
371
- - spec/lockfile_parser_spec.rb
372
- - spec/real_deploy_spec.rb
373
- - spec/restart_spec.rb
374
- - spec/server_spec.rb
375
- - spec/spec_helper.rb
376
- - spec/support/lockfiles/0.9-no-bundler
377
- - spec/support/lockfiles/0.9-with-bundler
378
- - spec/support/lockfiles/1.0-no-bundler
379
- - spec/support/lockfiles/1.0.0.rc.1-with-bundler
380
- - spec/support/lockfiles/1.0.6-no-bundler
381
- - spec/support/lockfiles/1.0.6-with-any-bundler
382
- - spec/support/lockfiles/1.0.6-with-bundler
383
- - spec/support/lockfiles/evil-yaml
384
- - spec/support/lockfiles/not-a-lockfile
324
+ - spec/custom_deploy_spec.rb
325
+ - spec/deploy_hook_spec.rb
326
+ - spec/deprecation_spec.rb
327
+ - spec/generate_configs_spec.rb
328
+ - spec/git_strategy_spec.rb
329
+ - spec/lockfile_parser_spec.rb
330
+ - spec/real_deploy_spec.rb
331
+ - spec/restart_spec.rb
332
+ - spec/server_spec.rb
333
+ - spec/spec_helper.rb
334
+ - spec/fixtures/gitrepo.tar.gz
335
+ - spec/fixtures/invalid_hook.rb
336
+ - spec/fixtures/valid_hook.rb
337
+ - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
338
+ - spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
339
+ - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
340
+ - spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
341
+ - spec/fixtures/gemfiles/activerecord_mysql/Gemfile
342
+ - spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
343
+ - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
344
+ - spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
345
+ - spec/fixtures/gemfiles/activerecord_pg/Gemfile
346
+ - spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
347
+ - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
348
+ - spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
349
+ - spec/fixtures/gemfiles/diy_database_yml/Gemfile
350
+ - spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
351
+ - spec/fixtures/gemfiles/diy_database_yml/config/database.yml
352
+ - spec/fixtures/gitrepo/foo
353
+ - spec/lib/full_test_deploy.rb
354
+ - spec/support/lockfiles/0.9-no-bundler
355
+ - spec/support/lockfiles/0.9-with-bundler
356
+ - spec/support/lockfiles/1.0-no-bundler
357
+ - spec/support/lockfiles/1.0.0.rc.1-with-bundler
358
+ - spec/support/lockfiles/1.0.6-no-bundler
359
+ - spec/support/lockfiles/1.0.6-with-any-bundler
360
+ - spec/support/lockfiles/1.0.6-with-bundler
361
+ - spec/support/lockfiles/evil-yaml
362
+ - spec/support/lockfiles/not-a-lockfile