engineyard-serverside 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -62,6 +62,7 @@ module EY
|
|
62
62
|
in_git_work_tree do
|
63
63
|
(logged_system("git checkout -q '#{to_checkout}'") ||
|
64
64
|
logged_system("git reset -q --hard '#{to_checkout}'")) &&
|
65
|
+
logged_system("git submodule sync") &&
|
65
66
|
logged_system("git submodule update --init") &&
|
66
67
|
logged_system("git clean -dfq")
|
67
68
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: engineyard-serverside
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 1.3.
|
9
|
+
- 5
|
10
|
+
version: 1.3.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- EY Cloud Team
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-10-15 00:00:00 -07:00
|
19
19
|
default_executable: engineyard-serverside
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -29,227 +29,227 @@ extra_rdoc_files: []
|
|
29
29
|
|
30
30
|
files:
|
31
31
|
- bin/engineyard-serverside
|
32
|
+
- lib/engineyard-serverside/bundle_installer.rb
|
33
|
+
- lib/engineyard-serverside/cli.rb
|
34
|
+
- lib/engineyard-serverside/configuration.rb
|
35
|
+
- lib/engineyard-serverside/default_maintenance_page.html
|
36
|
+
- lib/engineyard-serverside/deploy.rb
|
37
|
+
- lib/engineyard-serverside/deploy_hook.rb
|
38
|
+
- lib/engineyard-serverside/lockfile_parser.rb
|
39
|
+
- lib/engineyard-serverside/logged_output.rb
|
40
|
+
- lib/engineyard-serverside/server.rb
|
41
|
+
- lib/engineyard-serverside/strategies/git.rb
|
42
|
+
- lib/engineyard-serverside/task.rb
|
43
|
+
- lib/engineyard-serverside/version.rb
|
32
44
|
- lib/engineyard-serverside.rb
|
33
|
-
- lib/vendor/open4/lib/open4.rb
|
34
|
-
- lib/vendor/dataflow/HISTORY
|
35
|
-
- lib/vendor/dataflow/Rakefile
|
36
|
-
- lib/vendor/dataflow/dataflow/port.rb
|
37
|
-
- lib/vendor/dataflow/dataflow/future_queue.rb
|
38
45
|
- lib/vendor/dataflow/dataflow/actor.rb
|
39
46
|
- lib/vendor/dataflow/dataflow/equality.rb
|
40
|
-
- lib/vendor/dataflow/
|
41
|
-
- lib/vendor/dataflow/
|
42
|
-
- lib/vendor/dataflow/
|
43
|
-
- lib/vendor/dataflow/
|
44
|
-
- lib/vendor/dataflow/spec/need_later_spec.rb
|
45
|
-
- lib/vendor/dataflow/spec/equality_spec.rb
|
46
|
-
- lib/vendor/dataflow/spec/flow_spec.rb
|
47
|
-
- lib/vendor/dataflow/spec/spec_helper.rb
|
48
|
-
- lib/vendor/dataflow/spec/by_need_spec.rb
|
49
|
-
- lib/vendor/dataflow/spec/anonymous_variables_spec.rb
|
50
|
-
- lib/vendor/dataflow/spec/barrier_spec.rb
|
51
|
-
- lib/vendor/dataflow/spec/future_queue_spec.rb
|
52
|
-
- lib/vendor/dataflow/spec/dataflow_spec.rb
|
53
|
-
- lib/vendor/dataflow/spec/forker_spec.rb
|
54
|
-
- lib/vendor/dataflow/LICENSE
|
55
|
-
- lib/vendor/dataflow/README.textile
|
56
|
-
- lib/vendor/dataflow/examples/future_http_gets.rb
|
47
|
+
- lib/vendor/dataflow/dataflow/future_queue.rb
|
48
|
+
- lib/vendor/dataflow/dataflow/port.rb
|
49
|
+
- lib/vendor/dataflow/dataflow.rb
|
50
|
+
- lib/vendor/dataflow/examples/barrier.rb
|
57
51
|
- lib/vendor/dataflow/examples/data_driven.rb
|
58
|
-
- lib/vendor/dataflow/examples/port_send.rb
|
59
|
-
- lib/vendor/dataflow/examples/ring.rb
|
60
|
-
- lib/vendor/dataflow/examples/flow.rb
|
61
52
|
- lib/vendor/dataflow/examples/dataflow_http_gets.rb
|
53
|
+
- lib/vendor/dataflow/examples/flow.rb
|
54
|
+
- lib/vendor/dataflow/examples/future_http_gets.rb
|
62
55
|
- lib/vendor/dataflow/examples/future_queue.rb
|
63
|
-
- lib/vendor/dataflow/examples/
|
56
|
+
- lib/vendor/dataflow/examples/instance_variables.rb
|
64
57
|
- lib/vendor/dataflow/examples/laziness.rb
|
65
|
-
- lib/vendor/dataflow/examples/
|
66
|
-
- lib/vendor/dataflow/examples/port_http_gets.rb
|
58
|
+
- lib/vendor/dataflow/examples/local_variables.rb
|
67
59
|
- lib/vendor/dataflow/examples/messages.rb
|
68
|
-
- lib/vendor/dataflow/examples/
|
69
|
-
- lib/vendor/dataflow/
|
70
|
-
- lib/vendor/
|
71
|
-
- lib/vendor/
|
60
|
+
- lib/vendor/dataflow/examples/port_http_gets.rb
|
61
|
+
- lib/vendor/dataflow/examples/port_send.rb
|
62
|
+
- lib/vendor/dataflow/examples/ring.rb
|
63
|
+
- lib/vendor/dataflow/HISTORY
|
64
|
+
- lib/vendor/dataflow/LICENSE
|
65
|
+
- lib/vendor/dataflow/Rakefile
|
66
|
+
- lib/vendor/dataflow/README.textile
|
67
|
+
- lib/vendor/dataflow/spec/actor_spec.rb
|
68
|
+
- lib/vendor/dataflow/spec/anonymous_variables_spec.rb
|
69
|
+
- lib/vendor/dataflow/spec/barrier_spec.rb
|
70
|
+
- lib/vendor/dataflow/spec/by_need_spec.rb
|
71
|
+
- lib/vendor/dataflow/spec/dataflow_spec.rb
|
72
|
+
- lib/vendor/dataflow/spec/equality_spec.rb
|
73
|
+
- lib/vendor/dataflow/spec/flow_spec.rb
|
74
|
+
- lib/vendor/dataflow/spec/forker_spec.rb
|
75
|
+
- lib/vendor/dataflow/spec/future_queue_spec.rb
|
76
|
+
- lib/vendor/dataflow/spec/inspect_spec.rb
|
77
|
+
- lib/vendor/dataflow/spec/need_later_spec.rb
|
78
|
+
- lib/vendor/dataflow/spec/port_spec.rb
|
79
|
+
- lib/vendor/dataflow/spec/spec.opts
|
80
|
+
- lib/vendor/dataflow/spec/spec_helper.rb
|
81
|
+
- lib/vendor/escape/doc_include/template/qualitysmith.rb
|
82
|
+
- lib/vendor/escape/lib/escape.rb
|
83
|
+
- lib/vendor/escape/Readme
|
84
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
|
85
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
|
86
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
|
87
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
|
88
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
|
89
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
|
90
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
|
91
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
|
92
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
|
93
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
|
94
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
|
95
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
|
96
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
|
97
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
|
98
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
|
99
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
|
100
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
|
101
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
|
102
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
|
103
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
|
104
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
|
105
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
|
106
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
|
107
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
|
108
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
|
109
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
|
110
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
|
111
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
|
112
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
|
113
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
|
114
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
|
115
|
+
- lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
|
116
|
+
- lib/vendor/json_pure/benchmarks/generator_benchmark.rb
|
117
|
+
- lib/vendor/json_pure/benchmarks/ohai.json
|
118
|
+
- lib/vendor/json_pure/benchmarks/ohai.ruby
|
119
|
+
- lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
|
120
|
+
- lib/vendor/json_pure/benchmarks/parser_benchmark.rb
|
121
|
+
- lib/vendor/json_pure/bin/edit_json.rb
|
122
|
+
- lib/vendor/json_pure/bin/prettify_json.rb
|
123
|
+
- lib/vendor/json_pure/CHANGES
|
124
|
+
- lib/vendor/json_pure/COPYING
|
125
|
+
- lib/vendor/json_pure/data/example.json
|
126
|
+
- lib/vendor/json_pure/data/index.html
|
127
|
+
- lib/vendor/json_pure/data/prototype.js
|
128
|
+
- lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
|
129
|
+
- lib/vendor/json_pure/ext/json/ext/generator/generator.c
|
130
|
+
- lib/vendor/json_pure/ext/json/ext/generator/generator.h
|
131
|
+
- lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
|
132
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.c
|
133
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.h
|
134
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.rl
|
135
|
+
- lib/vendor/json_pure/GPL
|
136
|
+
- lib/vendor/json_pure/install.rb
|
137
|
+
- lib/vendor/json_pure/lib/json/add/core.rb
|
138
|
+
- lib/vendor/json_pure/lib/json/add/rails.rb
|
72
139
|
- lib/vendor/json_pure/lib/json/Array.xpm
|
140
|
+
- lib/vendor/json_pure/lib/json/common.rb
|
141
|
+
- lib/vendor/json_pure/lib/json/editor.rb
|
142
|
+
- lib/vendor/json_pure/lib/json/ext.rb
|
73
143
|
- lib/vendor/json_pure/lib/json/FalseClass.xpm
|
144
|
+
- lib/vendor/json_pure/lib/json/Hash.xpm
|
145
|
+
- lib/vendor/json_pure/lib/json/json.xpm
|
74
146
|
- lib/vendor/json_pure/lib/json/Key.xpm
|
75
|
-
- lib/vendor/json_pure/lib/json/
|
147
|
+
- lib/vendor/json_pure/lib/json/NilClass.xpm
|
76
148
|
- lib/vendor/json_pure/lib/json/Numeric.xpm
|
77
|
-
- lib/vendor/json_pure/lib/json/json.xpm
|
78
149
|
- lib/vendor/json_pure/lib/json/pure/generator.rb
|
79
150
|
- lib/vendor/json_pure/lib/json/pure/parser.rb
|
80
|
-
- lib/vendor/json_pure/lib/json/Hash.xpm
|
81
|
-
- lib/vendor/json_pure/lib/json/String.xpm
|
82
|
-
- lib/vendor/json_pure/lib/json/version.rb
|
83
|
-
- lib/vendor/json_pure/lib/json/add/core.rb
|
84
|
-
- lib/vendor/json_pure/lib/json/add/rails.rb
|
85
|
-
- lib/vendor/json_pure/lib/json/editor.rb
|
86
151
|
- lib/vendor/json_pure/lib/json/pure.rb
|
152
|
+
- lib/vendor/json_pure/lib/json/String.xpm
|
87
153
|
- lib/vendor/json_pure/lib/json/TrueClass.xpm
|
88
|
-
- lib/vendor/json_pure/lib/json/
|
89
|
-
- lib/vendor/json_pure/
|
90
|
-
- lib/vendor/json_pure/
|
91
|
-
- lib/vendor/json_pure/
|
92
|
-
- lib/vendor/json_pure/tests/
|
93
|
-
- lib/vendor/json_pure/tests/fixtures/
|
94
|
-
- lib/vendor/json_pure/tests/fixtures/
|
95
|
-
- lib/vendor/json_pure/tests/fixtures/fail2.json
|
96
|
-
- lib/vendor/json_pure/tests/fixtures/fail5.json
|
97
|
-
- lib/vendor/json_pure/tests/fixtures/fail8.json
|
98
|
-
- lib/vendor/json_pure/tests/fixtures/pass16.json
|
99
|
-
- lib/vendor/json_pure/tests/fixtures/pass2.json
|
100
|
-
- lib/vendor/json_pure/tests/fixtures/fail23.json
|
154
|
+
- lib/vendor/json_pure/lib/json/version.rb
|
155
|
+
- lib/vendor/json_pure/lib/json.rb
|
156
|
+
- lib/vendor/json_pure/Rakefile
|
157
|
+
- lib/vendor/json_pure/README
|
158
|
+
- lib/vendor/json_pure/tests/fixtures/fail1.json
|
159
|
+
- lib/vendor/json_pure/tests/fixtures/fail10.json
|
160
|
+
- lib/vendor/json_pure/tests/fixtures/fail11.json
|
101
161
|
- lib/vendor/json_pure/tests/fixtures/fail12.json
|
102
|
-
- lib/vendor/json_pure/tests/fixtures/
|
103
|
-
- lib/vendor/json_pure/tests/fixtures/
|
162
|
+
- lib/vendor/json_pure/tests/fixtures/fail13.json
|
163
|
+
- lib/vendor/json_pure/tests/fixtures/fail14.json
|
164
|
+
- lib/vendor/json_pure/tests/fixtures/fail18.json
|
104
165
|
- lib/vendor/json_pure/tests/fixtures/fail19.json
|
166
|
+
- lib/vendor/json_pure/tests/fixtures/fail2.json
|
167
|
+
- lib/vendor/json_pure/tests/fixtures/fail20.json
|
168
|
+
- lib/vendor/json_pure/tests/fixtures/fail21.json
|
169
|
+
- lib/vendor/json_pure/tests/fixtures/fail22.json
|
170
|
+
- lib/vendor/json_pure/tests/fixtures/fail23.json
|
171
|
+
- lib/vendor/json_pure/tests/fixtures/fail24.json
|
172
|
+
- lib/vendor/json_pure/tests/fixtures/fail25.json
|
173
|
+
- lib/vendor/json_pure/tests/fixtures/fail27.json
|
174
|
+
- lib/vendor/json_pure/tests/fixtures/fail28.json
|
105
175
|
- lib/vendor/json_pure/tests/fixtures/fail3.json
|
106
176
|
- lib/vendor/json_pure/tests/fixtures/fail4.json
|
107
|
-
- lib/vendor/json_pure/tests/fixtures/
|
108
|
-
- lib/vendor/json_pure/tests/fixtures/fail21.json
|
109
|
-
- lib/vendor/json_pure/tests/fixtures/fail14.json
|
110
|
-
- lib/vendor/json_pure/tests/fixtures/fail10.json
|
177
|
+
- lib/vendor/json_pure/tests/fixtures/fail5.json
|
111
178
|
- lib/vendor/json_pure/tests/fixtures/fail6.json
|
112
|
-
- lib/vendor/json_pure/tests/fixtures/pass1.json
|
113
|
-
- lib/vendor/json_pure/tests/fixtures/fail11.json
|
114
|
-
- lib/vendor/json_pure/tests/fixtures/pass26.json
|
115
|
-
- lib/vendor/json_pure/tests/fixtures/fail22.json
|
116
|
-
- lib/vendor/json_pure/tests/fixtures/fail9.json
|
117
|
-
- lib/vendor/json_pure/tests/fixtures/fail1.json
|
118
179
|
- lib/vendor/json_pure/tests/fixtures/fail7.json
|
180
|
+
- lib/vendor/json_pure/tests/fixtures/fail8.json
|
181
|
+
- lib/vendor/json_pure/tests/fixtures/fail9.json
|
182
|
+
- lib/vendor/json_pure/tests/fixtures/pass1.json
|
183
|
+
- lib/vendor/json_pure/tests/fixtures/pass15.json
|
184
|
+
- lib/vendor/json_pure/tests/fixtures/pass16.json
|
119
185
|
- lib/vendor/json_pure/tests/fixtures/pass17.json
|
120
|
-
- lib/vendor/json_pure/tests/fixtures/
|
121
|
-
- lib/vendor/json_pure/tests/fixtures/
|
122
|
-
- lib/vendor/json_pure/tests/fixtures/
|
123
|
-
- lib/vendor/json_pure/tests/
|
186
|
+
- lib/vendor/json_pure/tests/fixtures/pass2.json
|
187
|
+
- lib/vendor/json_pure/tests/fixtures/pass26.json
|
188
|
+
- lib/vendor/json_pure/tests/fixtures/pass3.json
|
189
|
+
- lib/vendor/json_pure/tests/test_json.rb
|
124
190
|
- lib/vendor/json_pure/tests/test_json_addition.rb
|
125
191
|
- lib/vendor/json_pure/tests/test_json_encoding.rb
|
126
192
|
- lib/vendor/json_pure/tests/test_json_fixtures.rb
|
127
|
-
- lib/vendor/json_pure/
|
128
|
-
- lib/vendor/json_pure/
|
129
|
-
- lib/vendor/json_pure/
|
130
|
-
- lib/vendor/json_pure/data/example.json
|
193
|
+
- lib/vendor/json_pure/tests/test_json_generate.rb
|
194
|
+
- lib/vendor/json_pure/tests/test_json_rails.rb
|
195
|
+
- lib/vendor/json_pure/tests/test_json_unicode.rb
|
131
196
|
- lib/vendor/json_pure/TODO
|
132
|
-
- lib/vendor/json_pure/Rakefile
|
133
|
-
- lib/vendor/json_pure/benchmarks/generator_benchmark.rb
|
134
|
-
- lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
|
135
|
-
- lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
|
136
|
-
- lib/vendor/json_pure/benchmarks/ohai.ruby
|
137
|
-
- lib/vendor/json_pure/benchmarks/parser_benchmark.rb
|
138
|
-
- lib/vendor/json_pure/benchmarks/ohai.json
|
139
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
|
140
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
|
141
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
|
142
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
|
143
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
|
144
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
|
145
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
|
146
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
|
147
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
|
148
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
|
149
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
|
150
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
|
151
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
|
152
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
|
153
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
|
154
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
|
155
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
|
156
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
|
157
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
|
158
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
|
159
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
|
160
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
|
161
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
|
162
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
|
163
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
|
164
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
|
165
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
|
166
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
|
167
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
|
168
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
|
169
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
|
170
|
-
- lib/vendor/json_pure/ext/json/ext/generator/generator.h
|
171
|
-
- lib/vendor/json_pure/ext/json/ext/generator/generator.c
|
172
|
-
- lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
|
173
|
-
- lib/vendor/json_pure/ext/json/ext/parser/parser.h
|
174
|
-
- lib/vendor/json_pure/ext/json/ext/parser/parser.rl
|
175
|
-
- lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
|
176
|
-
- lib/vendor/json_pure/ext/json/ext/parser/parser.c
|
177
|
-
- lib/vendor/json_pure/bin/prettify_json.rb
|
178
|
-
- lib/vendor/json_pure/bin/edit_json.rb
|
179
|
-
- lib/vendor/json_pure/CHANGES
|
180
|
-
- lib/vendor/json_pure/README
|
181
|
-
- lib/vendor/json_pure/install.rb
|
182
|
-
- lib/vendor/json_pure/GPL
|
183
|
-
- lib/vendor/json_pure/COPYING
|
184
|
-
- lib/vendor/json_pure/tools/server.rb
|
185
197
|
- lib/vendor/json_pure/tools/fuzz.rb
|
186
|
-
- lib/vendor/
|
187
|
-
- lib/vendor/
|
188
|
-
- lib/vendor/
|
198
|
+
- lib/vendor/json_pure/tools/server.rb
|
199
|
+
- lib/vendor/json_pure/VERSION
|
200
|
+
- lib/vendor/open4/lib/open4.rb
|
201
|
+
- lib/vendor/thor/bin/rake2thor
|
202
|
+
- lib/vendor/thor/bin/thor
|
189
203
|
- lib/vendor/thor/CHANGELOG.rdoc
|
190
|
-
- lib/vendor/thor/lib/thor.rb
|
191
|
-
- lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
192
|
-
- lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
|
193
|
-
- lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
194
|
-
- lib/vendor/thor/lib/thor/group.rb
|
195
|
-
- lib/vendor/thor/lib/thor/util.rb
|
204
|
+
- lib/vendor/thor/lib/thor/actions/create_file.rb
|
196
205
|
- lib/vendor/thor/lib/thor/actions/directory.rb
|
206
|
+
- lib/vendor/thor/lib/thor/actions/empty_directory.rb
|
197
207
|
- lib/vendor/thor/lib/thor/actions/file_manipulation.rb
|
198
208
|
- lib/vendor/thor/lib/thor/actions/inject_into_file.rb
|
199
|
-
- lib/vendor/thor/lib/thor/actions/create_file.rb
|
200
|
-
- lib/vendor/thor/lib/thor/actions/empty_directory.rb
|
201
|
-
- lib/vendor/thor/lib/thor/error.rb
|
202
209
|
- lib/vendor/thor/lib/thor/actions.rb
|
203
|
-
- lib/vendor/thor/lib/thor/rake_compat.rb
|
204
|
-
- lib/vendor/thor/lib/thor/shell/basic.rb
|
205
|
-
- lib/vendor/thor/lib/thor/shell/color.rb
|
206
|
-
- lib/vendor/thor/lib/thor/parser.rb
|
207
210
|
- lib/vendor/thor/lib/thor/base.rb
|
211
|
+
- lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
|
212
|
+
- lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
213
|
+
- lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
214
|
+
- lib/vendor/thor/lib/thor/error.rb
|
215
|
+
- lib/vendor/thor/lib/thor/group.rb
|
208
216
|
- lib/vendor/thor/lib/thor/invocation.rb
|
209
|
-
- lib/vendor/thor/lib/thor/version.rb
|
210
|
-
- lib/vendor/thor/lib/thor/shell.rb
|
211
|
-
- lib/vendor/thor/lib/thor/parser/option.rb
|
212
|
-
- lib/vendor/thor/lib/thor/parser/arguments.rb
|
213
217
|
- lib/vendor/thor/lib/thor/parser/argument.rb
|
218
|
+
- lib/vendor/thor/lib/thor/parser/arguments.rb
|
219
|
+
- lib/vendor/thor/lib/thor/parser/option.rb
|
214
220
|
- lib/vendor/thor/lib/thor/parser/options.rb
|
221
|
+
- lib/vendor/thor/lib/thor/parser.rb
|
222
|
+
- lib/vendor/thor/lib/thor/rake_compat.rb
|
215
223
|
- lib/vendor/thor/lib/thor/runner.rb
|
224
|
+
- lib/vendor/thor/lib/thor/shell/basic.rb
|
225
|
+
- lib/vendor/thor/lib/thor/shell/color.rb
|
226
|
+
- lib/vendor/thor/lib/thor/shell.rb
|
216
227
|
- lib/vendor/thor/lib/thor/task.rb
|
228
|
+
- lib/vendor/thor/lib/thor/util.rb
|
229
|
+
- lib/vendor/thor/lib/thor/version.rb
|
230
|
+
- lib/vendor/thor/lib/thor.rb
|
231
|
+
- lib/vendor/thor/LICENSE
|
232
|
+
- lib/vendor/thor/README.rdoc
|
217
233
|
- lib/vendor/thor/thor.gemspec
|
218
234
|
- lib/vendor/thor/Thorfile
|
219
|
-
- lib/vendor/thor/README.rdoc
|
220
|
-
- lib/vendor/thor/LICENSE
|
221
|
-
- lib/vendor/thor/bin/rake2thor
|
222
|
-
- lib/vendor/thor/bin/thor
|
223
|
-
- lib/engineyard-serverside/server.rb
|
224
|
-
- lib/engineyard-serverside/cli.rb
|
225
|
-
- lib/engineyard-serverside/logged_output.rb
|
226
|
-
- lib/engineyard-serverside/strategies/git.rb
|
227
|
-
- lib/engineyard-serverside/bundle_installer.rb
|
228
|
-
- lib/engineyard-serverside/deploy.rb
|
229
|
-
- lib/engineyard-serverside/configuration.rb
|
230
|
-
- lib/engineyard-serverside/version.rb
|
231
|
-
- lib/engineyard-serverside/deploy_hook.rb
|
232
|
-
- lib/engineyard-serverside/lockfile_parser.rb
|
233
|
-
- lib/engineyard-serverside/default_maintenance_page.html
|
234
|
-
- lib/engineyard-serverside/task.rb
|
235
235
|
- LICENSE
|
236
|
-
- spec/
|
237
|
-
- spec/support/lockfiles/1.0-no-bundler
|
238
|
-
- spec/support/lockfiles/0.9-no-bundler
|
239
|
-
- spec/support/lockfiles/not-a-lockfile
|
240
|
-
- spec/support/lockfiles/0.9-with-bundler
|
236
|
+
- spec/custom_deploy_spec.rb
|
241
237
|
- spec/deploy_hook_spec.rb
|
238
|
+
- spec/fixtures/gitrepo/foo
|
239
|
+
- spec/fixtures/gitrepo.tar.gz
|
240
|
+
- spec/fixtures/invalid_hook.rb
|
241
|
+
- spec/fixtures/valid_hook.rb
|
242
242
|
- spec/git_strategy_spec.rb
|
243
243
|
- spec/lockfile_parser_spec.rb
|
244
244
|
- spec/real_deploy_spec.rb
|
245
|
-
- spec/spec_helper.rb
|
246
|
-
- spec/custom_deploy_spec.rb
|
247
|
-
- spec/fixtures/invalid_hook.rb
|
248
|
-
- spec/fixtures/gitrepo.tar.gz
|
249
|
-
- spec/fixtures/valid_hook.rb
|
250
|
-
- spec/fixtures/gitrepo/foo
|
251
245
|
- spec/restart_spec.rb
|
252
246
|
- spec/server_spec.rb
|
247
|
+
- spec/spec_helper.rb
|
248
|
+
- spec/support/lockfiles/0.9-no-bundler
|
249
|
+
- spec/support/lockfiles/0.9-with-bundler
|
250
|
+
- spec/support/lockfiles/1.0-no-bundler
|
251
|
+
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
252
|
+
- spec/support/lockfiles/not-a-lockfile
|
253
253
|
has_rdoc: true
|
254
254
|
homepage: http://github.com/engineyard/engineyard-serverside
|
255
255
|
licenses: []
|
@@ -285,20 +285,20 @@ signing_key:
|
|
285
285
|
specification_version: 3
|
286
286
|
summary: A gem that deploys ruby applications on EY Cloud instances
|
287
287
|
test_files:
|
288
|
-
- spec/
|
289
|
-
- spec/support/lockfiles/1.0-no-bundler
|
290
|
-
- spec/support/lockfiles/0.9-no-bundler
|
291
|
-
- spec/support/lockfiles/not-a-lockfile
|
292
|
-
- spec/support/lockfiles/0.9-with-bundler
|
288
|
+
- spec/custom_deploy_spec.rb
|
293
289
|
- spec/deploy_hook_spec.rb
|
290
|
+
- spec/fixtures/gitrepo/foo
|
291
|
+
- spec/fixtures/gitrepo.tar.gz
|
292
|
+
- spec/fixtures/invalid_hook.rb
|
293
|
+
- spec/fixtures/valid_hook.rb
|
294
294
|
- spec/git_strategy_spec.rb
|
295
295
|
- spec/lockfile_parser_spec.rb
|
296
296
|
- spec/real_deploy_spec.rb
|
297
|
-
- spec/spec_helper.rb
|
298
|
-
- spec/custom_deploy_spec.rb
|
299
|
-
- spec/fixtures/invalid_hook.rb
|
300
|
-
- spec/fixtures/gitrepo.tar.gz
|
301
|
-
- spec/fixtures/valid_hook.rb
|
302
|
-
- spec/fixtures/gitrepo/foo
|
303
297
|
- spec/restart_spec.rb
|
304
298
|
- spec/server_spec.rb
|
299
|
+
- spec/spec_helper.rb
|
300
|
+
- spec/support/lockfiles/0.9-no-bundler
|
301
|
+
- spec/support/lockfiles/0.9-with-bundler
|
302
|
+
- spec/support/lockfiles/1.0-no-bundler
|
303
|
+
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
304
|
+
- spec/support/lockfiles/not-a-lockfile
|