engineyard-serverside 2.0.0 → 2.0.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.
Files changed (36) hide show
  1. data/lib/engineyard-serverside/paths.rb +0 -1
  2. data/lib/engineyard-serverside/version.rb +1 -1
  3. data/lib/vendor/thor/{LICENSE → LICENSE.md} +2 -2
  4. data/lib/vendor/thor/README.md +28 -0
  5. data/lib/vendor/thor/lib/thor.rb +183 -48
  6. data/lib/vendor/thor/lib/thor/actions.rb +66 -23
  7. data/lib/vendor/thor/lib/thor/actions/create_file.rb +5 -3
  8. data/lib/vendor/thor/lib/thor/actions/create_link.rb +57 -0
  9. data/lib/vendor/thor/lib/thor/actions/directory.rb +14 -7
  10. data/lib/vendor/thor/lib/thor/actions/empty_directory.rb +24 -5
  11. data/lib/vendor/thor/lib/thor/actions/file_manipulation.rb +106 -21
  12. data/lib/vendor/thor/lib/thor/actions/inject_into_file.rb +15 -10
  13. data/lib/vendor/thor/lib/thor/base.rb +144 -43
  14. data/lib/vendor/thor/lib/thor/core_ext/dir_escape.rb +0 -0
  15. data/lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +1 -1
  16. data/lib/vendor/thor/lib/thor/error.rb +6 -1
  17. data/lib/vendor/thor/lib/thor/group.rb +41 -27
  18. data/lib/vendor/thor/lib/thor/invocation.rb +48 -58
  19. data/lib/vendor/thor/lib/thor/parser/argument.rb +29 -22
  20. data/lib/vendor/thor/lib/thor/parser/arguments.rb +26 -5
  21. data/lib/vendor/thor/lib/thor/parser/option.rb +42 -49
  22. data/lib/vendor/thor/lib/thor/parser/options.rb +39 -30
  23. data/lib/vendor/thor/lib/thor/rake_compat.rb +13 -8
  24. data/lib/vendor/thor/lib/thor/runner.rb +27 -20
  25. data/lib/vendor/thor/lib/thor/shell.rb +10 -5
  26. data/lib/vendor/thor/lib/thor/shell/basic.rb +228 -78
  27. data/lib/vendor/thor/lib/thor/shell/color.rb +40 -4
  28. data/lib/vendor/thor/lib/thor/shell/html.rb +123 -0
  29. data/lib/vendor/thor/lib/thor/task.rb +83 -53
  30. data/lib/vendor/thor/lib/thor/util.rb +57 -21
  31. data/lib/vendor/thor/lib/thor/version.rb +1 -1
  32. data/lib/vendor/thor/thor.gemspec +21 -115
  33. metadata +109 -217
  34. data/lib/vendor/thor/CHANGELOG.rdoc +0 -89
  35. data/lib/vendor/thor/README.rdoc +0 -297
  36. data/lib/vendor/thor/Thorfile +0 -69
@@ -1,3 +1,3 @@
1
1
  class Thor
2
- VERSION = "0.13.3".freeze
2
+ VERSION = "0.16.0"
3
3
  end
@@ -1,120 +1,26 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Thorfile, and run the gemspec command
4
1
  # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/thor/version', __FILE__)
5
3
 
6
4
  Gem::Specification.new do |s|
7
- s.name = %q{thor}
8
- s.version = "0.13.3"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Yehuda Katz", "Jos\303\251 Valim"]
12
- s.date = %q{2010-02-17}
5
+ s.add_development_dependency 'bundler', '~> 1.0'
6
+ s.add_development_dependency 'fakeweb', '~> 1.3'
7
+ s.add_development_dependency 'rake', '~> 0.9'
8
+ s.add_development_dependency 'rdoc', '~> 3.9'
9
+ s.add_development_dependency 'rspec', '~> 2.3'
10
+ s.add_development_dependency 'simplecov', '~> 0.4'
11
+ s.add_development_dependency 'childlabor'
12
+ s.authors = ['Yehuda Katz', 'José Valim']
13
13
  s.description = %q{A scripting framework that replaces rake, sake and rubigen}
14
- s.email = %q{ruby-thor@googlegroups.com}
15
- s.executables = ["thor", "rake2thor"]
16
- s.extra_rdoc_files = [
17
- "CHANGELOG.rdoc",
18
- "LICENSE",
19
- "README.rdoc",
20
- "Thorfile"
21
- ]
22
- s.files = [
23
- "CHANGELOG.rdoc",
24
- "LICENSE",
25
- "README.rdoc",
26
- "Thorfile",
27
- "bin/rake2thor",
28
- "bin/thor",
29
- "lib/thor.rb",
30
- "lib/thor/actions.rb",
31
- "lib/thor/actions/create_file.rb",
32
- "lib/thor/actions/directory.rb",
33
- "lib/thor/actions/empty_directory.rb",
34
- "lib/thor/actions/file_manipulation.rb",
35
- "lib/thor/actions/inject_into_file.rb",
36
- "lib/thor/base.rb",
37
- "lib/thor/core_ext/file_binary_read.rb",
38
- "lib/thor/core_ext/hash_with_indifferent_access.rb",
39
- "lib/thor/core_ext/ordered_hash.rb",
40
- "lib/thor/error.rb",
41
- "lib/thor/group.rb",
42
- "lib/thor/invocation.rb",
43
- "lib/thor/parser.rb",
44
- "lib/thor/parser/argument.rb",
45
- "lib/thor/parser/arguments.rb",
46
- "lib/thor/parser/option.rb",
47
- "lib/thor/parser/options.rb",
48
- "lib/thor/rake_compat.rb",
49
- "lib/thor/runner.rb",
50
- "lib/thor/shell.rb",
51
- "lib/thor/shell/basic.rb",
52
- "lib/thor/shell/color.rb",
53
- "lib/thor/task.rb",
54
- "lib/thor/util.rb",
55
- "lib/thor/version.rb"
56
- ]
57
- s.homepage = %q{http://yehudakatz.com}
58
- s.rdoc_options = ["--charset=UTF-8"]
59
- s.require_paths = ["lib"]
60
- s.rubyforge_project = %q{textmate}
61
- s.rubygems_version = %q{1.3.5}
62
- s.summary = %q{A scripting framework that replaces rake, sake and rubigen}
63
- s.test_files = [
64
- "spec/actions/create_file_spec.rb",
65
- "spec/actions/directory_spec.rb",
66
- "spec/actions/empty_directory_spec.rb",
67
- "spec/actions/file_manipulation_spec.rb",
68
- "spec/actions/inject_into_file_spec.rb",
69
- "spec/actions_spec.rb",
70
- "spec/base_spec.rb",
71
- "spec/core_ext/hash_with_indifferent_access_spec.rb",
72
- "spec/core_ext/ordered_hash_spec.rb",
73
- "spec/fixtures/application.rb",
74
- "spec/fixtures/bundle/execute.rb",
75
- "spec/fixtures/doc/config.rb",
76
- "spec/group_spec.rb",
77
- "spec/invocation_spec.rb",
78
- "spec/parser/argument_spec.rb",
79
- "spec/parser/arguments_spec.rb",
80
- "spec/parser/option_spec.rb",
81
- "spec/parser/options_spec.rb",
82
- "spec/rake_compat_spec.rb",
83
- "spec/runner_spec.rb",
84
- "spec/shell/basic_spec.rb",
85
- "spec/shell/color_spec.rb",
86
- "spec/shell_spec.rb",
87
- "spec/spec_helper.rb",
88
- "spec/task_spec.rb",
89
- "spec/thor_spec.rb",
90
- "spec/util_spec.rb",
91
- "spec/actions",
92
- "spec/core_ext",
93
- "spec/fixtures",
94
- "spec/fixtures/bundle",
95
- "spec/fixtures/bundle/main.thor",
96
- "spec/fixtures/doc",
97
- "spec/fixtures/doc/%file_name%.rb.tt",
98
- "spec/fixtures/doc/components",
99
- "spec/fixtures/doc/README",
100
- "spec/fixtures/group.thor",
101
- "spec/fixtures/invoke.thor",
102
- "spec/fixtures/script.thor",
103
- "spec/fixtures/task.thor",
104
- "spec/parser",
105
- "spec/sandbox",
106
- "spec/shell",
107
- "spec/spec.opts"
108
- ]
109
-
110
- if s.respond_to? :specification_version then
111
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
112
- s.specification_version = 3
113
-
114
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
115
- else
116
- end
117
- else
118
- end
14
+ s.email = 'ruby-thor@googlegroups.com'
15
+ s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
16
+ s.extra_rdoc_files = ['CHANGELOG.rdoc', 'LICENSE.md', 'README.md', 'Thorfile']
17
+ s.files = `git ls-files`.split("\n")
18
+ s.homepage = 'http://whatisthor.com/'
19
+ s.name = 'thor'
20
+ s.rdoc_options = ['--charset=UTF-8']
21
+ s.require_paths = ['lib']
22
+ s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
23
+ s.summary = s.description
24
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
+ s.version = Thor::VERSION
119
26
  end
120
-
metadata CHANGED
@@ -1,119 +1,110 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: engineyard-serverside
3
- version: !ruby/object:Gem::Version
4
- version: 2.0.0
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 2
7
+ - 0
8
+ - 1
9
+ version: 2.0.1
6
10
  platform: ruby
7
- authors:
11
+ authors:
8
12
  - EY Cloud Team
9
13
  autorequire:
10
14
  bindir: bin
11
15
  cert_chain: []
12
- date: 2012-08-16 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rspec
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - '='
20
- - !ruby/object:Gem::Version
21
- version: 1.3.2
16
+
17
+ date: 2012-08-21 00:00:00 -07:00
18
+ default_executable: engineyard-serverside
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
22
21
  type: :development
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - '='
28
- - !ruby/object:Gem::Version
22
+ version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "="
25
+ - !ruby/object:Gem::Version
26
+ segments:
27
+ - 1
28
+ - 3
29
+ - 2
29
30
  version: 1.3.2
30
- - !ruby/object:Gem::Dependency
31
- name: rake
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: 0.9.2.2
38
- type: :development
31
+ name: rspec
32
+ requirement: *id001
39
33
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: 0.9.2.2
46
- - !ruby/object:Gem::Dependency
47
- name: rdoc
48
- requirement: !ruby/object:Gem::Requirement
49
- none: false
50
- requirements:
51
- - - ! '>='
52
- - !ruby/object:Gem::Version
53
- version: '0'
34
+ - !ruby/object:Gem::Dependency
54
35
  type: :development
36
+ version_requirements: &id002 !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ segments:
41
+ - 0
42
+ - 9
43
+ - 2
44
+ - 2
45
+ version: 0.9.2.2
46
+ name: rake
47
+ requirement: *id002
55
48
  prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ! '>='
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- - !ruby/object:Gem::Dependency
63
- name: timecop
64
- requirement: !ruby/object:Gem::Requirement
65
- none: false
66
- requirements:
67
- - - ! '>='
68
- - !ruby/object:Gem::Version
69
- version: '0'
49
+ - !ruby/object:Gem::Dependency
70
50
  type: :development
51
+ version_requirements: &id003 !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ name: rdoc
59
+ requirement: *id003
71
60
  prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ! '>='
76
- - !ruby/object:Gem::Version
77
- version: '0'
78
- - !ruby/object:Gem::Dependency
79
- name: simplecov
80
- requirement: !ruby/object:Gem::Requirement
81
- none: false
82
- requirements:
83
- - - ! '>='
84
- - !ruby/object:Gem::Version
85
- version: '0'
61
+ - !ruby/object:Gem::Dependency
86
62
  type: :development
63
+ version_requirements: &id004 !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ segments:
68
+ - 0
69
+ version: "0"
70
+ name: timecop
71
+ requirement: *id004
87
72
  prerelease: false
88
- version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
- requirements:
91
- - - ! '>='
92
- - !ruby/object:Gem::Version
93
- version: '0'
94
- - !ruby/object:Gem::Dependency
95
- name: engineyard-cloud-client
96
- requirement: !ruby/object:Gem::Requirement
97
- none: false
98
- requirements:
99
- - - ~>
100
- - !ruby/object:Gem::Version
101
- version: 1.0.5
73
+ - !ruby/object:Gem::Dependency
102
74
  type: :development
75
+ version_requirements: &id005 !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ name: simplecov
83
+ requirement: *id005
103
84
  prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
- requirements:
85
+ - !ruby/object:Gem::Dependency
86
+ type: :development
87
+ version_requirements: &id006 !ruby/object:Gem::Requirement
88
+ requirements:
107
89
  - - ~>
108
- - !ruby/object:Gem::Version
90
+ - !ruby/object:Gem::Version
91
+ segments:
92
+ - 1
93
+ - 0
94
+ - 5
109
95
  version: 1.0.5
96
+ name: engineyard-cloud-client
97
+ requirement: *id006
98
+ prerelease: false
110
99
  description:
111
100
  email: cloud@engineyard.com
112
- executables:
101
+ executables:
113
102
  - engineyard-serverside
114
103
  extensions: []
104
+
115
105
  extra_rdoc_files: []
116
- files:
106
+
107
+ files:
117
108
  - bin/engineyard-serverside
118
109
  - lib/engineyard-serverside/cli.rb
119
110
  - lib/engineyard-serverside/cli_helpers.rb
@@ -324,14 +315,15 @@ files:
324
315
  - lib/vendor/systemu/systemu.gemspec
325
316
  - lib/vendor/thor/bin/rake2thor
326
317
  - lib/vendor/thor/bin/thor
327
- - lib/vendor/thor/CHANGELOG.rdoc
328
318
  - lib/vendor/thor/lib/thor/actions/create_file.rb
319
+ - lib/vendor/thor/lib/thor/actions/create_link.rb
329
320
  - lib/vendor/thor/lib/thor/actions/directory.rb
330
321
  - lib/vendor/thor/lib/thor/actions/empty_directory.rb
331
322
  - lib/vendor/thor/lib/thor/actions/file_manipulation.rb
332
323
  - lib/vendor/thor/lib/thor/actions/inject_into_file.rb
333
324
  - lib/vendor/thor/lib/thor/actions.rb
334
325
  - lib/vendor/thor/lib/thor/base.rb
326
+ - lib/vendor/thor/lib/thor/core_ext/dir_escape.rb
335
327
  - lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
336
328
  - lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
337
329
  - lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
@@ -347,149 +339,49 @@ files:
347
339
  - lib/vendor/thor/lib/thor/runner.rb
348
340
  - lib/vendor/thor/lib/thor/shell/basic.rb
349
341
  - lib/vendor/thor/lib/thor/shell/color.rb
342
+ - lib/vendor/thor/lib/thor/shell/html.rb
350
343
  - lib/vendor/thor/lib/thor/shell.rb
351
344
  - lib/vendor/thor/lib/thor/task.rb
352
345
  - lib/vendor/thor/lib/thor/util.rb
353
346
  - lib/vendor/thor/lib/thor/version.rb
354
347
  - lib/vendor/thor/lib/thor.rb
355
- - lib/vendor/thor/LICENSE
356
- - lib/vendor/thor/README.rdoc
348
+ - lib/vendor/thor/LICENSE.md
349
+ - lib/vendor/thor/README.md
357
350
  - lib/vendor/thor/thor.gemspec
358
- - lib/vendor/thor/Thorfile
359
351
  - LICENSE
360
- - spec/basic_deploy_spec.rb
361
- - spec/bundler_deploy_spec.rb
362
- - spec/configuration_spec.rb
363
- - spec/custom_deploy_spec.rb
364
- - spec/deploy_hook_spec.rb
365
- - spec/deprecation_spec.rb
366
- - spec/ey_yml_customized_deploy_spec.rb
367
- - spec/fixtures/gitrepo/bar
368
- - spec/fixtures/gitrepo/foo
369
- - spec/fixtures/gitrepo.tar.gz
370
- - spec/fixtures/invalid_hook.rb
371
- - spec/fixtures/lockfiles/0.9-no-bundler
372
- - spec/fixtures/lockfiles/0.9-with-bundler
373
- - spec/fixtures/lockfiles/1.0-no-bundler
374
- - spec/fixtures/lockfiles/1.0.0.rc.1-with-bundler
375
- - spec/fixtures/lockfiles/1.0.18-do_mysql
376
- - spec/fixtures/lockfiles/1.0.18-do_postgres
377
- - spec/fixtures/lockfiles/1.0.18-mysql
378
- - spec/fixtures/lockfiles/1.0.18-mysql2
379
- - spec/fixtures/lockfiles/1.0.18-pg
380
- - spec/fixtures/lockfiles/1.0.6-no-bundler
381
- - spec/fixtures/lockfiles/1.0.6-with-any-bundler
382
- - spec/fixtures/lockfiles/1.0.6-with-bundler
383
- - spec/fixtures/lockfiles/not-a-lockfile
384
- - spec/fixtures/repos/assets_disabled/app/assets/empty
385
- - spec/fixtures/repos/assets_disabled/config/application.rb
386
- - spec/fixtures/repos/assets_disabled/Gemfile
387
- - spec/fixtures/repos/assets_disabled/Gemfile.lock
388
- - spec/fixtures/repos/assets_disabled/Rakefile
389
- - spec/fixtures/repos/assets_disabled/README
390
- - spec/fixtures/repos/assets_disabled_in_ey_yml/app/assets/empty
391
- - spec/fixtures/repos/assets_disabled_in_ey_yml/config/application.rb
392
- - spec/fixtures/repos/assets_disabled_in_ey_yml/config/ey.yml
393
- - spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile
394
- - spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile.lock
395
- - spec/fixtures/repos/assets_disabled_in_ey_yml/Rakefile
396
- - spec/fixtures/repos/assets_disabled_in_ey_yml/README
397
- - spec/fixtures/repos/assets_enabled/app/assets/empty
398
- - spec/fixtures/repos/assets_enabled/config/application.rb
399
- - spec/fixtures/repos/assets_enabled/Gemfile
400
- - spec/fixtures/repos/assets_enabled/Gemfile.lock
401
- - spec/fixtures/repos/assets_enabled/Rakefile
402
- - spec/fixtures/repos/assets_enabled/README
403
- - spec/fixtures/repos/assets_enabled_in_ey_yml/config/ey.yml
404
- - spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile
405
- - spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile.lock
406
- - spec/fixtures/repos/assets_enabled_in_ey_yml/Rakefile
407
- - spec/fixtures/repos/assets_enabled_in_ey_yml/README
408
- - spec/fixtures/repos/assets_in_hook/app/assets/empty
409
- - spec/fixtures/repos/assets_in_hook/config/application.rb
410
- - spec/fixtures/repos/assets_in_hook/deploy/before_compile_assets.rb
411
- - spec/fixtures/repos/assets_in_hook/Gemfile
412
- - spec/fixtures/repos/assets_in_hook/Gemfile.lock
413
- - spec/fixtures/repos/assets_in_hook/Rakefile
414
- - spec/fixtures/repos/assets_in_hook/README
415
- - spec/fixtures/repos/default/Gemfile
416
- - spec/fixtures/repos/default/Gemfile.lock
417
- - spec/fixtures/repos/default/README
418
- - spec/fixtures/repos/ey_yml/config/ey.yml
419
- - spec/fixtures/repos/ey_yml/deploy/before_migrate.rb
420
- - spec/fixtures/repos/ey_yml/Gemfile
421
- - spec/fixtures/repos/ey_yml/Gemfile.lock
422
- - spec/fixtures/repos/ey_yml/README
423
- - spec/fixtures/repos/ey_yml_alt/deploy/before_migrate.rb
424
- - spec/fixtures/repos/ey_yml_alt/ey.yml
425
- - spec/fixtures/repos/ey_yml_alt/Gemfile
426
- - spec/fixtures/repos/ey_yml_alt/Gemfile.lock
427
- - spec/fixtures/repos/ey_yml_alt/README
428
- - spec/fixtures/repos/hook_fails/deploy/before_migrate.rb
429
- - spec/fixtures/repos/hook_fails/README
430
- - spec/fixtures/repos/hooks/deploy/after_bundle.rb
431
- - spec/fixtures/repos/hooks/deploy/after_compile_assets.rb
432
- - spec/fixtures/repos/hooks/deploy/after_migrate.rb
433
- - spec/fixtures/repos/hooks/deploy/after_restart.rb
434
- - spec/fixtures/repos/hooks/deploy/after_symlink.rb
435
- - spec/fixtures/repos/hooks/deploy/before_bundle.rb
436
- - spec/fixtures/repos/hooks/deploy/before_compile_assets.rb
437
- - spec/fixtures/repos/hooks/deploy/before_migrate.rb
438
- - spec/fixtures/repos/hooks/deploy/before_restart.rb
439
- - spec/fixtures/repos/hooks/deploy/before_symlink.rb
440
- - spec/fixtures/repos/hooks/README
441
- - spec/fixtures/repos/no_ey_config/Gemfile
442
- - spec/fixtures/repos/no_ey_config/Gemfile.lock
443
- - spec/fixtures/repos/no_ey_config/README
444
- - spec/fixtures/repos/no_gemfile_lock/Gemfile
445
- - spec/fixtures/repos/no_gemfile_lock/README
446
- - spec/fixtures/repos/nodejs/package.json
447
- - spec/fixtures/repos/nodejs/README
448
- - spec/fixtures/repos/not_bundled/README
449
- - spec/fixtures/repos/sqlite3/Gemfile
450
- - spec/fixtures/repos/sqlite3/Gemfile.lock
451
- - spec/fixtures/repos/sqlite3/README
452
- - spec/fixtures/valid_hook.rb
453
- - spec/git_strategy_spec.rb
454
- - spec/lockfile_parser_spec.rb
455
- - spec/nodejs_deploy_spec.rb
456
- - spec/rails31_deploy_spec.rb
457
- - spec/restart_spec.rb
458
- - spec/rollback_spec.rb
459
- - spec/server_spec.rb
460
- - spec/services_deploy_spec.rb
461
- - spec/shell_spec.rb
462
- - spec/spec_helper.rb
463
- - spec/sqlite3_deploy_spec.rb
464
- - spec/support/integration.rb
352
+ has_rdoc: true
465
353
  homepage: http://github.com/engineyard/engineyard-serverside
466
354
  licenses: []
355
+
467
356
  post_install_message:
468
357
  rdoc_options: []
469
- require_paths:
358
+
359
+ require_paths:
470
360
  - lib
471
- required_ruby_version: !ruby/object:Gem::Requirement
472
- none: false
473
- requirements:
474
- - - ! '>='
475
- - !ruby/object:Gem::Version
476
- version: '0'
477
- segments:
361
+ required_ruby_version: !ruby/object:Gem::Requirement
362
+ requirements:
363
+ - - ">="
364
+ - !ruby/object:Gem::Version
365
+ segments:
478
366
  - 0
479
- hash: -2659746554228302927
480
- required_rubygems_version: !ruby/object:Gem::Requirement
481
- none: false
482
- requirements:
483
- - - ! '>='
484
- - !ruby/object:Gem::Version
367
+ version: "0"
368
+ required_rubygems_version: !ruby/object:Gem::Requirement
369
+ requirements:
370
+ - - ">="
371
+ - !ruby/object:Gem::Version
372
+ segments:
373
+ - 1
374
+ - 3
375
+ - 6
485
376
  version: 1.3.6
486
377
  requirements: []
378
+
487
379
  rubyforge_project:
488
- rubygems_version: 1.8.24
380
+ rubygems_version: 1.3.6
489
381
  signing_key:
490
382
  specification_version: 3
491
383
  summary: A gem that deploys ruby applications on EY Cloud instances
492
- test_files:
384
+ test_files:
493
385
  - spec/basic_deploy_spec.rb
494
386
  - spec/bundler_deploy_spec.rb
495
387
  - spec/configuration_spec.rb