engineyard-serverside 1.5.23.ruby19.16 → 1.5.24

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 (181) hide show
  1. data/lib/engineyard-serverside.rb +19 -17
  2. data/lib/engineyard-serverside/cli.rb +38 -30
  3. data/lib/engineyard-serverside/configuration.rb +4 -28
  4. data/lib/engineyard-serverside/deploy.rb +10 -7
  5. data/lib/engineyard-serverside/lockfile_parser.rb +2 -2
  6. data/lib/engineyard-serverside/logged_output.rb +2 -0
  7. data/lib/engineyard-serverside/server.rb +2 -27
  8. data/lib/engineyard-serverside/task.rb +14 -10
  9. data/lib/engineyard-serverside/version.rb +1 -1
  10. data/lib/vendor/dataflow/HISTORY +52 -0
  11. data/lib/vendor/dataflow/LICENSE +19 -0
  12. data/lib/vendor/dataflow/README.textile +290 -0
  13. data/lib/vendor/dataflow/Rakefile +36 -0
  14. data/lib/vendor/dataflow/examples/barrier.rb +9 -0
  15. data/lib/vendor/dataflow/examples/data_driven.rb +17 -0
  16. data/lib/vendor/dataflow/examples/dataflow_http_gets.rb +13 -0
  17. data/lib/vendor/dataflow/examples/flow.rb +20 -0
  18. data/lib/vendor/dataflow/examples/future_http_gets.rb +12 -0
  19. data/lib/vendor/dataflow/examples/future_queue.rb +11 -0
  20. data/lib/vendor/dataflow/examples/instance_variables.rb +15 -0
  21. data/lib/vendor/dataflow/examples/laziness.rb +9 -0
  22. data/lib/vendor/dataflow/examples/local_variables.rb +11 -0
  23. data/lib/vendor/dataflow/examples/messages.rb +26 -0
  24. data/lib/vendor/dataflow/examples/port_http_gets.rb +13 -0
  25. data/lib/vendor/dataflow/examples/port_send.rb +10 -0
  26. data/lib/vendor/dataflow/examples/ring.rb +21 -0
  27. data/lib/vendor/dataflow/spec/actor_spec.rb +28 -0
  28. data/lib/vendor/dataflow/spec/anonymous_variables_spec.rb +21 -0
  29. data/lib/vendor/dataflow/spec/barrier_spec.rb +25 -0
  30. data/lib/vendor/dataflow/spec/by_need_spec.rb +55 -0
  31. data/lib/vendor/dataflow/spec/dataflow_spec.rb +151 -0
  32. data/lib/vendor/dataflow/spec/equality_spec.rb +40 -0
  33. data/lib/vendor/dataflow/spec/flow_spec.rb +25 -0
  34. data/lib/vendor/dataflow/spec/forker_spec.rb +28 -0
  35. data/lib/vendor/dataflow/spec/future_queue_spec.rb +31 -0
  36. data/lib/vendor/dataflow/spec/inspect_spec.rb +19 -0
  37. data/lib/vendor/dataflow/spec/need_later_spec.rb +12 -0
  38. data/lib/vendor/dataflow/spec/port_spec.rb +26 -0
  39. data/lib/vendor/dataflow/spec/spec.opts +1 -0
  40. data/lib/vendor/dataflow/spec/spec_helper.rb +10 -0
  41. data/lib/vendor/escape/Readme +21 -0
  42. data/lib/vendor/escape/doc_include/template/qualitysmith.rb +631 -0
  43. data/lib/vendor/json_pure/CHANGES +166 -0
  44. data/lib/vendor/json_pure/COPYING +58 -0
  45. data/lib/vendor/json_pure/GPL +340 -0
  46. data/lib/vendor/json_pure/README +358 -0
  47. data/lib/vendor/json_pure/Rakefile +292 -0
  48. data/lib/vendor/json_pure/TODO +1 -0
  49. data/lib/vendor/json_pure/VERSION +1 -0
  50. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log +52 -0
  51. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat +1000 -0
  52. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat +1001 -0
  53. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat +900 -0
  54. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat +901 -0
  55. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat +1000 -0
  56. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat +1001 -0
  57. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log +261 -0
  58. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat +1000 -0
  59. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat +1001 -0
  60. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat +1000 -0
  61. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat +1001 -0
  62. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat +1000 -0
  63. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat +1001 -0
  64. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log +262 -0
  65. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat +1000 -0
  66. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat +1001 -0
  67. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log +82 -0
  68. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log +34 -0
  69. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat +900 -0
  70. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat +901 -0
  71. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log +81 -0
  72. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat +1000 -0
  73. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat +1001 -0
  74. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log +82 -0
  75. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat +1000 -0
  76. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat +1001 -0
  77. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log +82 -0
  78. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat +1000 -0
  79. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat +1001 -0
  80. data/lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log +82 -0
  81. data/lib/vendor/json_pure/benchmarks/generator2_benchmark.rb +222 -0
  82. data/lib/vendor/json_pure/benchmarks/generator_benchmark.rb +224 -0
  83. data/lib/vendor/json_pure/benchmarks/ohai.json +1216 -0
  84. data/lib/vendor/json_pure/benchmarks/ohai.ruby +1 -0
  85. data/lib/vendor/json_pure/benchmarks/parser2_benchmark.rb +251 -0
  86. data/lib/vendor/json_pure/benchmarks/parser_benchmark.rb +259 -0
  87. data/lib/vendor/json_pure/bin/edit_json.rb +9 -0
  88. data/lib/vendor/json_pure/bin/prettify_json.rb +75 -0
  89. data/lib/vendor/json_pure/data/example.json +1 -0
  90. data/lib/vendor/json_pure/data/index.html +38 -0
  91. data/lib/vendor/json_pure/data/prototype.js +4184 -0
  92. data/lib/vendor/json_pure/ext/json/ext/generator/extconf.rb +16 -0
  93. data/lib/vendor/json_pure/ext/json/ext/generator/generator.c +1323 -0
  94. data/lib/vendor/json_pure/ext/json/ext/generator/generator.h +170 -0
  95. data/lib/vendor/json_pure/ext/json/ext/parser/extconf.rb +15 -0
  96. data/lib/vendor/json_pure/ext/json/ext/parser/parser.c +1935 -0
  97. data/lib/vendor/json_pure/ext/json/ext/parser/parser.h +71 -0
  98. data/lib/vendor/json_pure/ext/json/ext/parser/parser.rl +792 -0
  99. data/lib/vendor/json_pure/install.rb +26 -0
  100. data/lib/vendor/json_pure/tests/fixtures/fail1.json +1 -0
  101. data/lib/vendor/json_pure/tests/fixtures/fail10.json +1 -0
  102. data/lib/vendor/json_pure/tests/fixtures/fail11.json +1 -0
  103. data/lib/vendor/json_pure/tests/fixtures/fail12.json +1 -0
  104. data/lib/vendor/json_pure/tests/fixtures/fail13.json +1 -0
  105. data/lib/vendor/json_pure/tests/fixtures/fail14.json +1 -0
  106. data/lib/vendor/json_pure/tests/fixtures/fail18.json +1 -0
  107. data/lib/vendor/json_pure/tests/fixtures/fail19.json +1 -0
  108. data/lib/vendor/json_pure/tests/fixtures/fail2.json +1 -0
  109. data/lib/vendor/json_pure/tests/fixtures/fail20.json +1 -0
  110. data/lib/vendor/json_pure/tests/fixtures/fail21.json +1 -0
  111. data/lib/vendor/json_pure/tests/fixtures/fail22.json +1 -0
  112. data/lib/vendor/json_pure/tests/fixtures/fail23.json +1 -0
  113. data/lib/vendor/json_pure/tests/fixtures/fail24.json +1 -0
  114. data/lib/vendor/json_pure/tests/fixtures/fail25.json +1 -0
  115. data/lib/vendor/json_pure/tests/fixtures/fail27.json +2 -0
  116. data/lib/vendor/json_pure/tests/fixtures/fail28.json +2 -0
  117. data/lib/vendor/json_pure/tests/fixtures/fail3.json +1 -0
  118. data/lib/vendor/json_pure/tests/fixtures/fail4.json +1 -0
  119. data/lib/vendor/json_pure/tests/fixtures/fail5.json +1 -0
  120. data/lib/vendor/json_pure/tests/fixtures/fail6.json +1 -0
  121. data/lib/vendor/json_pure/tests/fixtures/fail7.json +1 -0
  122. data/lib/vendor/json_pure/tests/fixtures/fail8.json +1 -0
  123. data/lib/vendor/json_pure/tests/fixtures/fail9.json +1 -0
  124. data/lib/vendor/json_pure/tests/fixtures/pass1.json +56 -0
  125. data/lib/vendor/json_pure/tests/fixtures/pass15.json +1 -0
  126. data/lib/vendor/json_pure/tests/fixtures/pass16.json +1 -0
  127. data/lib/vendor/json_pure/tests/fixtures/pass17.json +1 -0
  128. data/lib/vendor/json_pure/tests/fixtures/pass2.json +1 -0
  129. data/lib/vendor/json_pure/tests/fixtures/pass26.json +1 -0
  130. data/lib/vendor/json_pure/tests/fixtures/pass3.json +6 -0
  131. data/lib/vendor/json_pure/tests/test_json.rb +361 -0
  132. data/lib/vendor/json_pure/tests/test_json_addition.rb +162 -0
  133. data/lib/vendor/json_pure/tests/test_json_encoding.rb +68 -0
  134. data/lib/vendor/json_pure/tests/test_json_fixtures.rb +34 -0
  135. data/lib/vendor/json_pure/tests/test_json_generate.rb +122 -0
  136. data/lib/vendor/json_pure/tests/test_json_rails.rb +144 -0
  137. data/lib/vendor/json_pure/tests/test_json_unicode.rb +76 -0
  138. data/lib/vendor/json_pure/tools/fuzz.rb +139 -0
  139. data/lib/vendor/json_pure/tools/server.rb +61 -0
  140. data/lib/vendor/open4/lib/open4.rb +51 -80
  141. data/lib/vendor/thor/CHANGELOG.rdoc +89 -0
  142. data/lib/vendor/thor/LICENSE +20 -0
  143. data/lib/vendor/thor/README.rdoc +297 -0
  144. data/lib/vendor/thor/Thorfile +69 -0
  145. data/lib/vendor/thor/bin/rake2thor +86 -0
  146. data/lib/vendor/thor/bin/thor +6 -0
  147. data/lib/vendor/thor/thor.gemspec +120 -0
  148. data/spec/basic_deploy_spec.rb +1 -1
  149. data/spec/bundler_deploy_spec.rb +1 -1
  150. data/spec/nodejs_deploy_spec.rb +5 -2
  151. data/spec/rails31_deploy_spec.rb +3 -3
  152. data/spec/services_deploy_spec.rb +1 -1
  153. data/spec/support/integration.rb +1 -2
  154. metadata +165 -44
  155. data/lib/engineyard-serverside/future.rb +0 -29
  156. data/lib/engineyard-serverside/futures/celluloid.rb +0 -25
  157. data/lib/engineyard-serverside/futures/dataflow.rb +0 -31
  158. data/lib/vendor/celluloid/lib/celluloid.rb +0 -261
  159. data/lib/vendor/celluloid/lib/celluloid/actor.rb +0 -242
  160. data/lib/vendor/celluloid/lib/celluloid/actor_pool.rb +0 -54
  161. data/lib/vendor/celluloid/lib/celluloid/actor_proxy.rb +0 -75
  162. data/lib/vendor/celluloid/lib/celluloid/application.rb +0 -78
  163. data/lib/vendor/celluloid/lib/celluloid/calls.rb +0 -94
  164. data/lib/vendor/celluloid/lib/celluloid/core_ext.rb +0 -14
  165. data/lib/vendor/celluloid/lib/celluloid/events.rb +0 -14
  166. data/lib/vendor/celluloid/lib/celluloid/fiber.rb +0 -33
  167. data/lib/vendor/celluloid/lib/celluloid/fsm.rb +0 -141
  168. data/lib/vendor/celluloid/lib/celluloid/future.rb +0 -60
  169. data/lib/vendor/celluloid/lib/celluloid/links.rb +0 -61
  170. data/lib/vendor/celluloid/lib/celluloid/logger.rb +0 -32
  171. data/lib/vendor/celluloid/lib/celluloid/mailbox.rb +0 -124
  172. data/lib/vendor/celluloid/lib/celluloid/receivers.rb +0 -66
  173. data/lib/vendor/celluloid/lib/celluloid/registry.rb +0 -33
  174. data/lib/vendor/celluloid/lib/celluloid/responses.rb +0 -26
  175. data/lib/vendor/celluloid/lib/celluloid/rspec.rb +0 -2
  176. data/lib/vendor/celluloid/lib/celluloid/signals.rb +0 -50
  177. data/lib/vendor/celluloid/lib/celluloid/supervisor.rb +0 -57
  178. data/lib/vendor/celluloid/lib/celluloid/task.rb +0 -73
  179. data/lib/vendor/celluloid/lib/celluloid/tcp_server.rb +0 -33
  180. data/lib/vendor/celluloid/lib/celluloid/timers.rb +0 -109
  181. data/lib/vendor/celluloid/lib/celluloid/version.rb +0 -4
@@ -0,0 +1,86 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'ruby2ruby'
4
+ require 'parse_tree'
5
+ if Ruby2Ruby::VERSION >= "1.2.0"
6
+ require 'parse_tree_extensions'
7
+ end
8
+ require 'rake'
9
+
10
+ input = ARGV[0] || 'Rakefile'
11
+ output = ARGV[1] || 'Thorfile'
12
+
13
+ $requires = []
14
+
15
+ module Kernel
16
+ def require_with_record(file)
17
+ $requires << file if caller[1] =~ /rake2thor:/
18
+ require_without_record file
19
+ end
20
+ alias_method :require_without_record, :require
21
+ alias_method :require, :require_with_record
22
+ end
23
+
24
+ load input
25
+
26
+ @private_methods = []
27
+
28
+ def file_task_name(name)
29
+ "compile_" + name.gsub('/', '_slash_').gsub('.', '_dot_').gsub(/\W/, '_')
30
+ end
31
+
32
+ def method_for_task(task)
33
+ file_task = task.is_a?(Rake::FileTask)
34
+ comment = task.instance_variable_get('@comment')
35
+ prereqs = task.instance_variable_get('@prerequisites').select(&Rake::Task.method(:task_defined?))
36
+ actions = task.instance_variable_get('@actions')
37
+ name = task.name.gsub(/^([^:]+:)+/, '')
38
+ name = file_task_name(name) if file_task
39
+ meth = ''
40
+
41
+ meth << "desc #{name.inspect}, #{comment.inspect}\n" if comment
42
+ meth << "def #{name}\n"
43
+
44
+ meth << prereqs.map do |pre|
45
+ pre = pre.to_s
46
+ pre = file_task_name(pre) if Rake::Task[pre].is_a?(Rake::FileTask)
47
+ ' ' + pre
48
+ end.join("\n")
49
+
50
+ meth << "\n\n" unless prereqs.empty? || actions.empty?
51
+
52
+ meth << actions.map do |act|
53
+ act = act.to_ruby
54
+ unless act.gsub!(/^proc \{ \|(\w+)\|\n/,
55
+ " \\1 = Struct.new(:name).new(#{name.inspect}) # A crude mock Rake::Task object\n")
56
+ act.gsub!(/^proc \{\n/, '')
57
+ end
58
+ act.gsub(/\n\}$/, '')
59
+ end.join("\n")
60
+
61
+ meth << "\nend"
62
+
63
+ if file_task
64
+ @private_methods << meth
65
+ return
66
+ end
67
+
68
+ meth
69
+ end
70
+
71
+ body = Rake::Task.tasks.map(&method(:method_for_task)).compact.map { |meth| meth.gsub(/^/, ' ') }.join("\n\n")
72
+
73
+ unless @private_methods.empty?
74
+ body << "\n\n private\n\n"
75
+ body << @private_methods.map { |meth| meth.gsub(/^/, ' ') }.join("\n\n")
76
+ end
77
+
78
+ requires = $requires.map { |r| "require #{r.inspect}" }.join("\n")
79
+
80
+ File.open(output, 'w') { |f| f.write(<<END.lstrip) }
81
+ #{requires}
82
+
83
+ class Default < Thor
84
+ #{body}
85
+ end
86
+ END
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- mode: ruby -*-
3
+
4
+ require 'thor/runner'
5
+ $thor_runner = true
6
+ Thor::Runner.start
@@ -0,0 +1,120 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Thorfile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ 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}
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
119
+ end
120
+
@@ -4,7 +4,7 @@ describe "Deploying an application without Bundler" do
4
4
  before(:all) do
5
5
  $DISABLE_GEMFILE = true # Don't generate Gemfile/Gemfile.lock
6
6
  $DISABLE_LOCKFILE = true
7
- @deploy_dir = Pathname.new(Dir.mktmpdir("serverside-deploy-#{Time.now.to_i}-#{$$}"))
7
+ @deploy_dir = Pathname.new(Dir.tmpdir).join("serverside-deploy-#{Time.now.to_i}-#{$$}")
8
8
 
9
9
  # set up EY::Serverside::Server like we're on a solo
10
10
  EY::Serverside::Server.reset
@@ -7,7 +7,7 @@ describe "Deploying an application that uses Bundler" do
7
7
  end
8
8
 
9
9
  def deploy_test_application
10
- @deploy_dir = Dir.mktmpdir("serverside-deploy-#{Time.now.to_i}-#{$$}")
10
+ @deploy_dir = File.join(Dir.tmpdir, "serverside-deploy-#{Time.now.to_i}-#{$$}")
11
11
 
12
12
  # set up EY::Serverside::Server like we're on a solo
13
13
  EY::Serverside::Server.reset
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
 
3
3
  describe "Deploying an application that uses Node.js and NPM" do
4
4
  def deploy_test_application
5
- @deploy_dir = Dir.mktmpdir( "serverside-deploy-#{Time.now.to_i}-#{$$}")
5
+ @deploy_dir = File.join(Dir.tmpdir, "serverside-deploy-#{Time.now.to_i}-#{$$}")
6
6
 
7
7
  # set up EY::Serverside::Server like we're on a solo
8
8
  EY::Serverside::Server.reset
@@ -20,7 +20,10 @@ describe "Deploying an application that uses Node.js and NPM" do
20
20
 
21
21
  @binpath = File.expand_path(File.join(File.dirname(__FILE__), '..', 'bin', 'engineyard-serverside'))
22
22
  @deployer = FullTestDeploy.new(config)
23
- @deployer.deploy
23
+ @deployer.deploy do
24
+ FileUtils.mkdir_p(config.repository_cache) # block runs before deploy
25
+ @deployer.generate_package_json_in(config.repository_cache)
26
+ end
24
27
  end
25
28
 
26
29
  before(:all) do
@@ -4,7 +4,7 @@ describe "Deploying a Rails 3.1 application" do
4
4
  def deploy_test_application(assets_enabled = true, &block)
5
5
  $DISABLE_GEMFILE = false
6
6
  $DISABLE_LOCKFILE = false
7
- @deploy_dir = Dir.mktmpdir("serverside-deploy-#{Time.now.to_i}-#{$$}")
7
+ @deploy_dir = File.join(Dir.tmpdir, "serverside-deploy-#{Time.now.to_i}-#{$$}")
8
8
 
9
9
  # set up EY::Serverside::Server like we're on a solo
10
10
  EY::Serverside::Server.reset
@@ -81,7 +81,7 @@ EOF
81
81
  before(:all) do
82
82
  begin
83
83
  deploy_test_application(with_assets = false) do
84
- deploy_dir = File.join(@config.shared_path, 'cached-copy', 'deploy')
84
+ deploy_dir = File.join(@config.repository_cache, 'deploy')
85
85
  FileUtils.mkdir_p(deploy_dir)
86
86
  hook = File.join(deploy_dir, 'before_migrate.rb')
87
87
  hook_contents = %Q[raise 'aaaaaaahhhhh']
@@ -101,7 +101,7 @@ EOF
101
101
  context "with existing precompilation in a deploy hook" do
102
102
  before(:all) do
103
103
  deploy_test_application do
104
- deploy_dir = File.join(@config.shared_path, 'cached-copy', 'deploy')
104
+ deploy_dir = File.join(@config.repository_cache, 'deploy')
105
105
  FileUtils.mkdir_p(deploy_dir)
106
106
  hook = File.join(deploy_dir, 'before_migrate.rb')
107
107
  hook_contents = %Q[run 'touch custom_compiled && mkdir public/assets']
@@ -4,7 +4,7 @@ describe "Deploying an application with services" do
4
4
  before(:each) do
5
5
  #$DISABLE_GEMFILE = true # Don't generate Gemfile/Gemfile.lock
6
6
  #$DISABLE_LOCKFILE = true
7
- @deploy_dir = Pathname.new(Dir.mktmpdir("serverside-deploy-#{Time.now.to_i}-#{$$}"))
7
+ @deploy_dir = Pathname.new(Dir.tmpdir).join("serverside-deploy-#{Time.now.to_i}-#{$$}")
8
8
 
9
9
  # set up EY::Serverside::Server like we're on a solo
10
10
  EY::Serverside::Server.reset
@@ -90,7 +90,7 @@ module EY::Serverside::Strategies::IntegrationSpec
90
90
  module Helpers
91
91
 
92
92
  def update_repository_cache
93
- cached_copy = File.join(c.shared_path, 'cached-copy')
93
+ cached_copy = c.repository_cache
94
94
 
95
95
  deploy_hook_dir = File.join(cached_copy, 'deploy')
96
96
  FileUtils.mkdir_p(deploy_hook_dir)
@@ -164,7 +164,6 @@ module EY::Serverside::Strategies::NodeIntegrationSpec
164
164
  include EY::Serverside::Strategies::IntegrationSpec::Helpers
165
165
 
166
166
  def generate_gemfile_in(dir)
167
- generate_package_json_in(dir)
168
167
  super(dir)
169
168
  end
170
169
 
metadata CHANGED
@@ -1,16 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-serverside
3
3
  version: !ruby/object:Gem::Version
4
- hash: -966684004
5
- prerelease: 7
4
+ hash: 51
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 23
10
- - ruby
11
- - 19
12
- - 16
13
- version: 1.5.23.ruby19.16
9
+ - 24
10
+ version: 1.5.24
14
11
  platform: ruby
15
12
  authors:
16
13
  - EY Cloud Team
@@ -18,12 +15,10 @@ autorequire:
18
15
  bindir: bin
19
16
  cert_chain: []
20
17
 
21
- date: 2012-01-18 00:00:00 Z
18
+ date: 2012-01-12 00:00:00 Z
22
19
  dependencies:
23
20
  - !ruby/object:Gem::Dependency
24
- name: rspec
25
- prerelease: false
26
- requirement: &id001 !ruby/object:Gem::Requirement
21
+ version_requirements: &id001 !ruby/object:Gem::Requirement
27
22
  none: false
28
23
  requirements:
29
24
  - - "="
@@ -34,12 +29,12 @@ dependencies:
34
29
  - 3
35
30
  - 2
36
31
  version: 1.3.2
32
+ requirement: *id001
37
33
  type: :development
38
- version_requirements: *id001
39
- - !ruby/object:Gem::Dependency
40
- name: rake
41
34
  prerelease: false
42
- requirement: &id002 !ruby/object:Gem::Requirement
35
+ name: rspec
36
+ - !ruby/object:Gem::Dependency
37
+ version_requirements: &id002 !ruby/object:Gem::Requirement
43
38
  none: false
44
39
  requirements:
45
40
  - - ">="
@@ -51,8 +46,24 @@ dependencies:
51
46
  - 2
52
47
  - 2
53
48
  version: 0.9.2.2
49
+ requirement: *id002
54
50
  type: :development
55
- version_requirements: *id002
51
+ prerelease: false
52
+ name: rake
53
+ - !ruby/object:Gem::Dependency
54
+ version_requirements: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 3
60
+ segments:
61
+ - 0
62
+ version: "0"
63
+ requirement: *id003
64
+ type: :development
65
+ prerelease: false
66
+ name: rdoc
56
67
  description:
57
68
  email: cloud@engineyard.com
58
69
  executables:
@@ -69,9 +80,6 @@ files:
69
80
  - lib/engineyard-serverside/deploy.rb
70
81
  - lib/engineyard-serverside/deploy_hook.rb
71
82
  - lib/engineyard-serverside/deprecation.rb
72
- - lib/engineyard-serverside/future.rb
73
- - lib/engineyard-serverside/futures/celluloid.rb
74
- - lib/engineyard-serverside/futures/dataflow.rb
75
83
  - lib/engineyard-serverside/lockfile_parser.rb
76
84
  - lib/engineyard-serverside/logged_output.rb
77
85
  - lib/engineyard-serverside/rails_asset_support.rb
@@ -80,36 +88,98 @@ files:
80
88
  - lib/engineyard-serverside/task.rb
81
89
  - lib/engineyard-serverside/version.rb
82
90
  - lib/engineyard-serverside.rb
83
- - lib/vendor/celluloid/lib/celluloid/actor.rb
84
- - lib/vendor/celluloid/lib/celluloid/actor_pool.rb
85
- - lib/vendor/celluloid/lib/celluloid/actor_proxy.rb
86
- - lib/vendor/celluloid/lib/celluloid/application.rb
87
- - lib/vendor/celluloid/lib/celluloid/calls.rb
88
- - lib/vendor/celluloid/lib/celluloid/core_ext.rb
89
- - lib/vendor/celluloid/lib/celluloid/events.rb
90
- - lib/vendor/celluloid/lib/celluloid/fiber.rb
91
- - lib/vendor/celluloid/lib/celluloid/fsm.rb
92
- - lib/vendor/celluloid/lib/celluloid/future.rb
93
- - lib/vendor/celluloid/lib/celluloid/links.rb
94
- - lib/vendor/celluloid/lib/celluloid/logger.rb
95
- - lib/vendor/celluloid/lib/celluloid/mailbox.rb
96
- - lib/vendor/celluloid/lib/celluloid/receivers.rb
97
- - lib/vendor/celluloid/lib/celluloid/registry.rb
98
- - lib/vendor/celluloid/lib/celluloid/responses.rb
99
- - lib/vendor/celluloid/lib/celluloid/rspec.rb
100
- - lib/vendor/celluloid/lib/celluloid/signals.rb
101
- - lib/vendor/celluloid/lib/celluloid/supervisor.rb
102
- - lib/vendor/celluloid/lib/celluloid/task.rb
103
- - lib/vendor/celluloid/lib/celluloid/tcp_server.rb
104
- - lib/vendor/celluloid/lib/celluloid/timers.rb
105
- - lib/vendor/celluloid/lib/celluloid/version.rb
106
- - lib/vendor/celluloid/lib/celluloid.rb
107
91
  - lib/vendor/dataflow/dataflow/actor.rb
108
92
  - lib/vendor/dataflow/dataflow/equality.rb
109
93
  - lib/vendor/dataflow/dataflow/future_queue.rb
110
94
  - lib/vendor/dataflow/dataflow/port.rb
111
95
  - lib/vendor/dataflow/dataflow.rb
96
+ - lib/vendor/dataflow/examples/barrier.rb
97
+ - lib/vendor/dataflow/examples/data_driven.rb
98
+ - lib/vendor/dataflow/examples/dataflow_http_gets.rb
99
+ - lib/vendor/dataflow/examples/flow.rb
100
+ - lib/vendor/dataflow/examples/future_http_gets.rb
101
+ - lib/vendor/dataflow/examples/future_queue.rb
102
+ - lib/vendor/dataflow/examples/instance_variables.rb
103
+ - lib/vendor/dataflow/examples/laziness.rb
104
+ - lib/vendor/dataflow/examples/local_variables.rb
105
+ - lib/vendor/dataflow/examples/messages.rb
106
+ - lib/vendor/dataflow/examples/port_http_gets.rb
107
+ - lib/vendor/dataflow/examples/port_send.rb
108
+ - lib/vendor/dataflow/examples/ring.rb
109
+ - lib/vendor/dataflow/HISTORY
110
+ - lib/vendor/dataflow/LICENSE
111
+ - lib/vendor/dataflow/Rakefile
112
+ - lib/vendor/dataflow/README.textile
113
+ - lib/vendor/dataflow/spec/actor_spec.rb
114
+ - lib/vendor/dataflow/spec/anonymous_variables_spec.rb
115
+ - lib/vendor/dataflow/spec/barrier_spec.rb
116
+ - lib/vendor/dataflow/spec/by_need_spec.rb
117
+ - lib/vendor/dataflow/spec/dataflow_spec.rb
118
+ - lib/vendor/dataflow/spec/equality_spec.rb
119
+ - lib/vendor/dataflow/spec/flow_spec.rb
120
+ - lib/vendor/dataflow/spec/forker_spec.rb
121
+ - lib/vendor/dataflow/spec/future_queue_spec.rb
122
+ - lib/vendor/dataflow/spec/inspect_spec.rb
123
+ - lib/vendor/dataflow/spec/need_later_spec.rb
124
+ - lib/vendor/dataflow/spec/port_spec.rb
125
+ - lib/vendor/dataflow/spec/spec.opts
126
+ - lib/vendor/dataflow/spec/spec_helper.rb
127
+ - lib/vendor/escape/doc_include/template/qualitysmith.rb
112
128
  - lib/vendor/escape/lib/escape.rb
129
+ - lib/vendor/escape/Readme
130
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
131
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
132
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
133
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
134
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
135
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
136
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
137
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
138
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
139
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
140
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
141
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
142
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
143
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
144
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
145
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
146
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
147
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
148
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
149
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
150
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
151
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
152
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
153
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
154
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
155
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
156
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
157
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
158
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
159
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
160
+ - lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
161
+ - lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
162
+ - lib/vendor/json_pure/benchmarks/generator_benchmark.rb
163
+ - lib/vendor/json_pure/benchmarks/ohai.json
164
+ - lib/vendor/json_pure/benchmarks/ohai.ruby
165
+ - lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
166
+ - lib/vendor/json_pure/benchmarks/parser_benchmark.rb
167
+ - lib/vendor/json_pure/bin/edit_json.rb
168
+ - lib/vendor/json_pure/bin/prettify_json.rb
169
+ - lib/vendor/json_pure/CHANGES
170
+ - lib/vendor/json_pure/COPYING
171
+ - lib/vendor/json_pure/data/example.json
172
+ - lib/vendor/json_pure/data/index.html
173
+ - lib/vendor/json_pure/data/prototype.js
174
+ - lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
175
+ - lib/vendor/json_pure/ext/json/ext/generator/generator.c
176
+ - lib/vendor/json_pure/ext/json/ext/generator/generator.h
177
+ - lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
178
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.c
179
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.h
180
+ - lib/vendor/json_pure/ext/json/ext/parser/parser.rl
181
+ - lib/vendor/json_pure/GPL
182
+ - lib/vendor/json_pure/install.rb
113
183
  - lib/vendor/json_pure/lib/json/add/core.rb
114
184
  - lib/vendor/json_pure/lib/json/add/rails.rb
115
185
  - lib/vendor/json_pure/lib/json/Array.xpm
@@ -129,7 +199,54 @@ files:
129
199
  - lib/vendor/json_pure/lib/json/TrueClass.xpm
130
200
  - lib/vendor/json_pure/lib/json/version.rb
131
201
  - lib/vendor/json_pure/lib/json.rb
202
+ - lib/vendor/json_pure/Rakefile
203
+ - lib/vendor/json_pure/README
204
+ - lib/vendor/json_pure/tests/fixtures/fail1.json
205
+ - lib/vendor/json_pure/tests/fixtures/fail10.json
206
+ - lib/vendor/json_pure/tests/fixtures/fail11.json
207
+ - lib/vendor/json_pure/tests/fixtures/fail12.json
208
+ - lib/vendor/json_pure/tests/fixtures/fail13.json
209
+ - lib/vendor/json_pure/tests/fixtures/fail14.json
210
+ - lib/vendor/json_pure/tests/fixtures/fail18.json
211
+ - lib/vendor/json_pure/tests/fixtures/fail19.json
212
+ - lib/vendor/json_pure/tests/fixtures/fail2.json
213
+ - lib/vendor/json_pure/tests/fixtures/fail20.json
214
+ - lib/vendor/json_pure/tests/fixtures/fail21.json
215
+ - lib/vendor/json_pure/tests/fixtures/fail22.json
216
+ - lib/vendor/json_pure/tests/fixtures/fail23.json
217
+ - lib/vendor/json_pure/tests/fixtures/fail24.json
218
+ - lib/vendor/json_pure/tests/fixtures/fail25.json
219
+ - lib/vendor/json_pure/tests/fixtures/fail27.json
220
+ - lib/vendor/json_pure/tests/fixtures/fail28.json
221
+ - lib/vendor/json_pure/tests/fixtures/fail3.json
222
+ - lib/vendor/json_pure/tests/fixtures/fail4.json
223
+ - lib/vendor/json_pure/tests/fixtures/fail5.json
224
+ - lib/vendor/json_pure/tests/fixtures/fail6.json
225
+ - lib/vendor/json_pure/tests/fixtures/fail7.json
226
+ - lib/vendor/json_pure/tests/fixtures/fail8.json
227
+ - lib/vendor/json_pure/tests/fixtures/fail9.json
228
+ - lib/vendor/json_pure/tests/fixtures/pass1.json
229
+ - lib/vendor/json_pure/tests/fixtures/pass15.json
230
+ - lib/vendor/json_pure/tests/fixtures/pass16.json
231
+ - lib/vendor/json_pure/tests/fixtures/pass17.json
232
+ - lib/vendor/json_pure/tests/fixtures/pass2.json
233
+ - lib/vendor/json_pure/tests/fixtures/pass26.json
234
+ - lib/vendor/json_pure/tests/fixtures/pass3.json
235
+ - lib/vendor/json_pure/tests/test_json.rb
236
+ - lib/vendor/json_pure/tests/test_json_addition.rb
237
+ - lib/vendor/json_pure/tests/test_json_encoding.rb
238
+ - lib/vendor/json_pure/tests/test_json_fixtures.rb
239
+ - lib/vendor/json_pure/tests/test_json_generate.rb
240
+ - lib/vendor/json_pure/tests/test_json_rails.rb
241
+ - lib/vendor/json_pure/tests/test_json_unicode.rb
242
+ - lib/vendor/json_pure/TODO
243
+ - lib/vendor/json_pure/tools/fuzz.rb
244
+ - lib/vendor/json_pure/tools/server.rb
245
+ - lib/vendor/json_pure/VERSION
132
246
  - lib/vendor/open4/lib/open4.rb
247
+ - lib/vendor/thor/bin/rake2thor
248
+ - lib/vendor/thor/bin/thor
249
+ - lib/vendor/thor/CHANGELOG.rdoc
133
250
  - lib/vendor/thor/lib/thor/actions/create_file.rb
134
251
  - lib/vendor/thor/lib/thor/actions/directory.rb
135
252
  - lib/vendor/thor/lib/thor/actions/empty_directory.rb
@@ -157,6 +274,10 @@ files:
157
274
  - lib/vendor/thor/lib/thor/util.rb
158
275
  - lib/vendor/thor/lib/thor/version.rb
159
276
  - lib/vendor/thor/lib/thor.rb
277
+ - lib/vendor/thor/LICENSE
278
+ - lib/vendor/thor/README.rdoc
279
+ - lib/vendor/thor/thor.gemspec
280
+ - lib/vendor/thor/Thorfile
160
281
  - LICENSE
161
282
  - spec/basic_deploy_spec.rb
162
283
  - spec/bundler_deploy_spec.rb
@@ -220,7 +341,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
220
341
  requirements: []
221
342
 
222
343
  rubyforge_project:
223
- rubygems_version: 1.8.6
344
+ rubygems_version: 1.8.10
224
345
  signing_key:
225
346
  specification_version: 3
226
347
  summary: A gem that deploys ruby applications on EY Cloud instances