aerosol 0.5.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/aerosol.gemspec +1 -1
- data/lib/aerosol/auto_scaling.rb +56 -129
- data/lib/aerosol/aws.rb +6 -15
- data/lib/aerosol/aws_model.rb +10 -10
- data/lib/aerosol/connection.rb +1 -1
- data/lib/aerosol/deploy.rb +18 -4
- data/lib/aerosol/instance.rb +19 -16
- data/lib/aerosol/launch_configuration.rb +42 -39
- data/lib/aerosol/rake_task.rb +12 -6
- data/lib/aerosol/runner.rb +15 -15
- data/lib/aerosol/version.rb +1 -1
- data/lib/aerosol.rb +14 -2
- data/spec/aerosol/auto_scaling_spec.rb +207 -113
- data/spec/aerosol/connection_spec.rb +21 -2
- data/spec/aerosol/deploy_spec.rb +3 -3
- data/spec/aerosol/instance_spec.rb +51 -30
- data/spec/aerosol/launch_configuration_spec.rb +174 -105
- data/spec/aerosol/runner_spec.rb +191 -71
- data/spec/spec_helper.rb +2 -4
- metadata +40 -57
- data/spec/fixtures/Procfile +0 -1
- data/spec/fixtures/Rakefile +0 -17
- data/spec/fixtures/not_a_tar-2.txt +0 -1
- data/spec/fixtures/not_a_tar.txt +0 -1
- data/spec/fixtures/tar-2.tar +0 -0
- data/spec/fixtures/test-1.tar +0 -0
- data/spec/fixtures/test-2.tar.gz +0 -0
- data/spec/vcr/Deployz_Docker/_fetch_import/when_both_import_and_name_are_present_present/and_it_points_to_a_non-S3_url/pulls_the_file.yml +0 -214
metadata
CHANGED
@@ -1,209 +1,209 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aerosol
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swipely, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 3.2.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 3.2.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: clamp
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ~>
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0.6'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - ~>
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0.6'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: excon
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: aws-sdk
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - ~>
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '2.0'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - ~>
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '2.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: grit
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: net-ssh
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- -
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: net-ssh-gateway
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '0'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: dockly-util
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - ~>
|
115
|
+
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: 0.0.5
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- - ~>
|
122
|
+
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 0.0.5
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: cane
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
|
-
- -
|
129
|
+
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
131
|
version: '0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
|
-
- -
|
136
|
+
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: pry
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- -
|
143
|
+
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: '0'
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- -
|
150
|
+
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: '0'
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: rake
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- -
|
157
|
+
- - ">="
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0'
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
|
-
- -
|
164
|
+
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
168
|
name: rspec
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
|
-
- - <
|
171
|
+
- - "<"
|
172
172
|
- !ruby/object:Gem::Version
|
173
173
|
version: '3.0'
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
|
-
- - <
|
178
|
+
- - "<"
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: '3.0'
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: webmock
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
|
-
- -
|
185
|
+
- - ">="
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: '0'
|
188
188
|
type: :development
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
|
-
- -
|
192
|
+
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
196
|
name: vcr
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
|
-
- -
|
199
|
+
- - ">="
|
200
200
|
- !ruby/object:Gem::Version
|
201
201
|
version: '0'
|
202
202
|
type: :development
|
203
203
|
prerelease: false
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
|
-
- -
|
206
|
+
- - ">="
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '0'
|
209
209
|
description: Instance-based deploys made easy
|
@@ -216,10 +216,10 @@ executables:
|
|
216
216
|
extensions: []
|
217
217
|
extra_rdoc_files: []
|
218
218
|
files:
|
219
|
-
- .cane
|
220
|
-
- .gitignore
|
221
|
-
- .rspec
|
222
|
-
- .travis.yml
|
219
|
+
- ".cane"
|
220
|
+
- ".gitignore"
|
221
|
+
- ".rspec"
|
222
|
+
- ".travis.yml"
|
223
223
|
- Gemfile
|
224
224
|
- LICENSE.txt
|
225
225
|
- README.md
|
@@ -253,16 +253,8 @@ files:
|
|
253
253
|
- spec/aerosol/rake_task_spec.rb
|
254
254
|
- spec/aerosol/runner_spec.rb
|
255
255
|
- spec/aerosol_spec.rb
|
256
|
-
- spec/fixtures/Procfile
|
257
|
-
- spec/fixtures/Rakefile
|
258
|
-
- spec/fixtures/not_a_tar-2.txt
|
259
|
-
- spec/fixtures/not_a_tar.txt
|
260
|
-
- spec/fixtures/tar-2.tar
|
261
|
-
- spec/fixtures/test-1.tar
|
262
|
-
- spec/fixtures/test-2.tar.gz
|
263
256
|
- spec/spec_helper.rb
|
264
257
|
- spec/support/vcr.rb
|
265
|
-
- spec/vcr/Deployz_Docker/_fetch_import/when_both_import_and_name_are_present_present/and_it_points_to_a_non-S3_url/pulls_the_file.yml
|
266
258
|
homepage: https://github.com/swipely/aerosol
|
267
259
|
licenses:
|
268
260
|
- MIT
|
@@ -273,17 +265,17 @@ require_paths:
|
|
273
265
|
- lib
|
274
266
|
required_ruby_version: !ruby/object:Gem::Requirement
|
275
267
|
requirements:
|
276
|
-
- -
|
268
|
+
- - ">="
|
277
269
|
- !ruby/object:Gem::Version
|
278
270
|
version: '0'
|
279
271
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
280
272
|
requirements:
|
281
|
-
- -
|
273
|
+
- - ">="
|
282
274
|
- !ruby/object:Gem::Version
|
283
275
|
version: '0'
|
284
276
|
requirements: []
|
285
277
|
rubyforge_project:
|
286
|
-
rubygems_version: 2.
|
278
|
+
rubygems_version: 2.2.2
|
287
279
|
signing_key:
|
288
280
|
specification_version: 4
|
289
281
|
summary: Instance-based deploys made easy
|
@@ -299,14 +291,5 @@ test_files:
|
|
299
291
|
- spec/aerosol/rake_task_spec.rb
|
300
292
|
- spec/aerosol/runner_spec.rb
|
301
293
|
- spec/aerosol_spec.rb
|
302
|
-
- spec/fixtures/Procfile
|
303
|
-
- spec/fixtures/Rakefile
|
304
|
-
- spec/fixtures/not_a_tar-2.txt
|
305
|
-
- spec/fixtures/not_a_tar.txt
|
306
|
-
- spec/fixtures/tar-2.tar
|
307
|
-
- spec/fixtures/test-1.tar
|
308
|
-
- spec/fixtures/test-2.tar.gz
|
309
294
|
- spec/spec_helper.rb
|
310
295
|
- spec/support/vcr.rb
|
311
|
-
- spec/vcr/Deployz_Docker/_fetch_import/when_both_import_and_name_are_present_present/and_it_points_to_a_non-S3_url/pulls_the_file.yml
|
312
|
-
has_rdoc:
|
data/spec/fixtures/Procfile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
web: start_my_server
|
data/spec/fixtures/Rakefile
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# Copyright Swipely, Inc. All rights reserved.
|
2
|
-
|
3
|
-
$LOAD_PATH.unshift( File.join( File.dirname(__FILE__), 'lib' ) )
|
4
|
-
|
5
|
-
require 'rake'
|
6
|
-
require 'rspec/core/rake_task'
|
7
|
-
require 'cane/rake_task'
|
8
|
-
|
9
|
-
task :default => [:spec, :quality]
|
10
|
-
|
11
|
-
RSpec::Core::RakeTask.new do |t|
|
12
|
-
t.pattern = 'spec/**/*_spec.rb'
|
13
|
-
end
|
14
|
-
|
15
|
-
Cane::RakeTask.new(:quality) do |cane|
|
16
|
-
cane.canefile = '.cane'
|
17
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
~~~ me neither :) :) :) ~~~
|
data/spec/fixtures/not_a_tar.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
~~~ no tarz here ~~~
|
data/spec/fixtures/tar-2.tar
DELETED
Binary file
|
data/spec/fixtures/test-1.tar
DELETED
Binary file
|
data/spec/fixtures/test-2.tar.gz
DELETED
Binary file
|
@@ -1,214 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://www.html5zombo.com/
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers: {}
|
10
|
-
response:
|
11
|
-
status:
|
12
|
-
code: 200
|
13
|
-
message: ''
|
14
|
-
headers:
|
15
|
-
!binary "U2VydmVy":
|
16
|
-
- !binary |-
|
17
|
-
Y2xvdWRmbGFyZS1uZ2lueA==
|
18
|
-
!binary "RGF0ZQ==":
|
19
|
-
- !binary |-
|
20
|
-
VGh1LCAxNiBNYXkgMjAxMyAxNDoxNzo1MyBHTVQ=
|
21
|
-
!binary "Q29udGVudC1UeXBl":
|
22
|
-
- !binary |-
|
23
|
-
YXBwbGljYXRpb24veGh0bWwreG1s
|
24
|
-
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
25
|
-
- !binary |-
|
26
|
-
Y2h1bmtlZA==
|
27
|
-
!binary "Q29ubmVjdGlvbg==":
|
28
|
-
- !binary |-
|
29
|
-
a2VlcC1hbGl2ZQ==
|
30
|
-
!binary "U2V0LUNvb2tpZQ==":
|
31
|
-
- !binary |-
|
32
|
-
X19jZmR1aWQ9ZDNjYjYxMzAyMmJmM2MyZWNkNzNmMzI5NTNmNGMwY2YxMTM2
|
33
|
-
ODcxMzg3Mjk1ODsgZXhwaXJlcz1Nb24sIDIzLURlYy0yMDE5IDIzOjUwOjAw
|
34
|
-
IEdNVDsgcGF0aD0vOyBkb21haW49Lmh0bWw1em9tYm8uY29tLCBfX2NmZHVp
|
35
|
-
ZD1kY2VmZDA4MWJiY2RiZmRmYThjOWVlYmJkYWEzNTI3MzIxMzY4NzEzODcy
|
36
|
-
OyBleHBpcmVzPU1vbiwgMjMtRGVjLTIwMTkgMjM6NTA6MDAgR01UOyBwYXRo
|
37
|
-
PS87IGRvbWFpbj0uaHRtbDV6b21iby5jb20=
|
38
|
-
!binary "TGFzdC1Nb2RpZmllZA==":
|
39
|
-
- !binary |-
|
40
|
-
V2VkLCAxOSBNYXkgMjAxMCAwODo1NDo0MiBHTVQ=
|
41
|
-
!binary "RXRhZw==":
|
42
|
-
- !binary |-
|
43
|
-
ImVjNmE0MC0zY2QyLTQ4NmVlOWJkYWY4ODAi
|
44
|
-
!binary "QWNjZXB0LVJhbmdlcw==":
|
45
|
-
- !binary |-
|
46
|
-
Ynl0ZXM=
|
47
|
-
!binary "Q2YtUmF5":
|
48
|
-
- !binary |-
|
49
|
-
NmY4YjFhOWY3ZGYwM2Y0
|
50
|
-
body:
|
51
|
-
encoding: US-ASCII
|
52
|
-
string: ! "<!DOCTYPE html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">
|
53
|
-
\r\n <head> \r\n <title>ZOMBO</title>\r\n </head>\r\n <body>\r\n <!--\r\n
|
54
|
-
\ \r\n HTML5zombo.com\r\n Bertrand Fan (bertrand@fan.net)\r\n
|
55
|
-
\ 5/19/2010\r\n\r\n I wanted zombo.com on my iPad. That
|
56
|
-
is all.\r\n \r\n ===================================================================\r\n
|
57
|
-
\ How I did it, for nerds:\r\n ===================================================================\r\n
|
58
|
-
\ \r\n Watched the Net tab for zombo.com in Firebug \r\n
|
59
|
-
\ \r\n wget http://www.zombo.com/inrozxa.swf\r\n wget
|
60
|
-
http://www.zombo.com/welcomeclip.swf\r\n \r\n Opened
|
61
|
-
them in SWFRIP to extract the MP3 and SVG representations of the logo and
|
62
|
-
spinner.\r\n Opened the SVG files in Adobe Illustrator (ironic,
|
63
|
-
I know), tweaked a bit, exported new SVG files\r\n \r\n Copy-pasted
|
64
|
-
the SVG contents into this HTML file, tweaked the attributes a bit\r\n\r\n
|
65
|
-
\ Wrote the JS code to rotate the SVG spinner\r\n\r\n Converted
|
66
|
-
the MP3 to OGG using oggenc2 (not really necessary for the iPad, but apparently
|
67
|
-
for Firefox)\r\n \r\n Discovered that the iPad does
|
68
|
-
not respect autoplay on HTML5 audio tags, crafted a javascript link for iPads\r\n\r\n
|
69
|
-
\ wget http://www.zombo.com/favicon.ico\r\n \r\n ===================================================================\r\n
|
70
|
-
\ References:\r\n ===================================================================\r\n\r\n
|
71
|
-
\ http://www.zombo.com/\r\n http://twitter.com/zombocom\r\n
|
72
|
-
\ http://sourceforge.net/projects/swfrip/\r\n http://developer.apple.com/safari/library/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/AudioandVideoTagBasics/AudioandVideoTagBasics.html\r\n
|
73
|
-
\ http://html5doctor.com/native-audio-in-the-browser/\r\n http://emacsformacosx.com/\r\n
|
74
|
-
\ http://www.apple.com/hotnews/thoughts-on-flash/\r\n \r\n
|
75
|
-
\ --> \r\n <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\"
|
76
|
-
xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\r\n \t
|
77
|
-
style=\"width: 100%; height: 15%\" width=\"555.85px\" height=\"61.35px\" viewBox=\"0
|
78
|
-
0 555.85 61.35\" xml:space=\"preserve\">\r\n <g id=\"logo\">\r\n \t\r\n
|
79
|
-
\ <linearGradient id=\"green_gradient\" x1=\"0%\" y1=\"0%\" x2=\"0%\"
|
80
|
-
y2=\"100%\">\r\n \t<stop offset=\"0\" style=\"stop-color:#33BB77\"/>\r\n
|
81
|
-
\ \t<stop offset=\"1\" style=\"stop-color:#FFFFFF\"/>\r\n </linearGradient>\r\n
|
82
|
-
\ \r\n \t<path fill=\"url(#green_gradient)\" d=\"M555.875,37.726V-0.175H0.025v37.901H555.875\"/>\r\n
|
83
|
-
\ \t<path fill=\"#00FFFF\" d=\"M292.575,29.575c-1.4-3.399-3.45-6.066-6.15-8c-2.733-2.033-5.55-3.05-8.45-3.05\r\n
|
84
|
-
\ \t\tc-2.933,0-5.733,0.983-8.4,2.95c-2.7,1.899-4.75,4.566-6.15,8c-1.433,3.434-2.15,6.899-2.15,10.399c0,3.467,0.717,6.801,2.15,10\r\n
|
85
|
-
\ \t\tc1.367,3.201,3.4,5.717,6.1,7.551c2.667,1.834,5.483,2.75,8.45,2.75c2.934,0,5.767-0.916,8.5-2.75c2.667-1.9,4.7-4.416,6.101-7.551\r\n
|
86
|
-
\ \t\tc1.399-3.266,2.1-6.582,2.1-9.949C294.675,36.359,293.975,32.909,292.575,29.575
|
87
|
-
M277.975,27.325c3.3,0,5.95,1.601,7.95,4.799\r\n \t\tc1.533,2.4,2.3,5.035,2.3,7.9c0,2.768-0.983,5.35-2.95,7.75c-2.033,2.367-4.467,3.566-7.3,3.6c-2.867-0.033-5.3-1.232-7.3-3.6\r\n
|
88
|
-
\ \t\tc-2-2.4-2.983-4.982-2.95-7.75c-0.033-3.365,0.95-6.299,2.95-8.799C272.608,28.625,275.042,27.325,277.975,27.325\"/>\r\n
|
89
|
-
\ \t<path fill=\"none\" d=\"M292.575,29.575\"/>\r\n \t<path fill=\"#FF9900\"
|
90
|
-
d=\"M346.425,37.425l0.5-15.35l-8.95-1.95c-8.533-2.433-14.816,1.351-18.85,11.351\r\n
|
91
|
-
\ \t\tc-4.233,10.6-2.616,18.898,4.85,24.898c6.833,5.568,13.983,6.217,21.45,1.951c2.8-1.734,4.05-4.467,3.75-8.201l-3.55-2.648\r\n
|
92
|
-
\ \t\tc-5.634,5.434-11.4,5.648-17.3,0.648c-6.834-5.965-6.4-11.582,1.3-16.85c5.866-4.167,9.899-2.599,12.1,4.701L346.425,37.425\r\n
|
93
|
-
\ \t\t M176.725,29.575c-1.4-3.399-3.466-6.066-6.2-8c-2.733-2.033-5.55-3.05-8.45-3.05s-5.683,0.983-8.35,2.95\r\n
|
94
|
-
\ \t\tc-2.7,1.899-4.767,4.566-6.2,8c-1.434,3.434-2.15,6.899-2.15,10.399c0,3.467,0.716,6.801,2.15,10c1.4,3.201,3.433,5.717,6.1,7.551\r\n
|
95
|
-
\ \t\tc2.667,1.834,5.483,2.75,8.45,2.75s5.817-0.916,8.55-2.75c2.667-1.9,4.7-4.416,6.1-7.551c1.367-3.266,2.05-6.582,2.05-9.949\r\n
|
96
|
-
\ \t\tC178.775,36.359,178.091,32.909,176.725,29.575 M170.075,32.124c1.5,2.4,2.25,5.035,2.25,7.9c0,2.768-0.983,5.35-2.95,7.75\r\n
|
97
|
-
\ \t\tc-2,2.367-4.434,3.566-7.3,3.6c-2.867-0.033-5.3-1.232-7.3-3.6c-1.967-2.4-2.95-4.982-2.95-7.75c0-3.365,0.983-6.299,2.95-8.799\r\n
|
98
|
-
\ \t\tc1.967-2.601,4.4-3.901,7.3-3.901C165.375,27.325,168.042,28.926,170.075,32.124\"/>\r\n
|
99
|
-
\ \t<path fill=\"none\" d=\"M346.425,37.425\"/>\r\n \t<path fill=\"#00FF00\"
|
100
|
-
d=\"M385.475,30.525c-1.399-3.366-3.466-6.033-6.2-8c-2.732-2.033-5.55-3.033-8.449-3\r\n
|
101
|
-
\ \t\tc-2.9-0.033-5.684,0.934-8.351,2.9c-2.7,1.899-4.767,4.566-6.2,8c-1.434,3.433-2.149,6.9-2.149,10.4s0.716,6.85,2.149,10.049\r\n
|
102
|
-
\ \t\tc1.4,3.168,3.434,5.684,6.101,7.551c2.667,1.834,5.483,2.75,8.45,2.75s5.816-0.916,8.55-2.75c2.667-1.934,4.7-4.449,6.1-7.551\r\n
|
103
|
-
\ \t\tc1.366-3.266,2.05-6.582,2.05-9.949C387.524,37.359,386.841,33.892,385.475,30.525
|
104
|
-
M363.524,32.175\r\n \t\tc1.967-2.567,4.4-3.85,7.301-3.85c3.3,0,5.967,1.601,8,4.799c1.5,2.367,2.266,5,2.3,7.9c-0.034,2.734-1.034,5.301-3,7.701\r\n
|
105
|
-
\ \t\tc-2,2.398-4.434,3.6-7.3,3.6c-2.867,0-5.301-1.201-7.301-3.6c-1.967-2.4-2.949-4.967-2.949-7.701\r\n
|
106
|
-
\ \t\tC360.575,37.624,361.558,34.675,363.524,32.175\"/>\r\n \t<path
|
107
|
-
fill=\"none\" d=\"M385.475,30.525\"/>\r\n \t<path fill=\"#0000FF\"
|
108
|
-
d=\"M399.475,20.625c-3.366-0.933-6.433-0.333-9.2,1.801c-1.199,1.1-1.482,2.55-0.85,4.35\r\n
|
109
|
-
\ \t\tc0.7,1.934,1.9,2.816,3.6,2.65v21.55c-3.833,0.766-4.75,3.217-2.75,7.35c0.268,0.467,0.65,0.699,1.15,0.699\r\n
|
110
|
-
\ \t\tc3.4,1.1,6.65,1.168,9.75,0.201c2-0.867,2.617-2.668,1.85-5.4c-0.6-2.1-1.783-3.051-3.55-2.85V33.124l5.45-4.699l1.05,0.75\r\n
|
111
|
-
\ \t\tl0.55,2.75v27.85c3.467,0.9,6.518,0.283,9.15-1.85c1.166-0.9,1.467-2.266,0.9-4.1c-0.667-2.1-1.867-3.051-3.601-2.85V33.124\r\n
|
112
|
-
\ \t\tl6.4-4.049l0.55,2.85v27.85c3.467,0.9,6.533,0.283,9.2-1.85c1.134-0.9,1.417-2.266,0.85-4.1c-0.667-2.1-1.866-3.051-3.6-2.85\r\n
|
113
|
-
\ \t\tV31.175c-0.767-8.534-4.233-12.117-10.4-10.75c-1.966,0.166-3.716,1.116-5.25,2.85l-11.25-0.1V20.625
|
114
|
-
M182.675,23.775v21.5\r\n \t\tc-3.833,0.801-4.75,3.25-2.75,7.35c0.267,0.5,0.65,0.75,1.15,0.75c3.367,1.102,6.6,1.168,9.7,0.201c2-0.867,2.633-2.684,1.9-5.451\r\n
|
115
|
-
\ \t\tc-0.6-2.1-1.783-3.049-3.55-2.85V27.426l5.4-4.7l1.1,0.75l0.55,2.75v27.899c3.467,0.9,6.517,0.285,9.15-1.85\r\n
|
116
|
-
\ \t\tc1.167-0.934,1.467-2.316,0.9-4.15c-0.7-2.1-1.917-3.049-3.65-2.85V27.426l6.45-4.051l0.55,2.851v27.899\r\n
|
117
|
-
\ \t\tc3.467,0.9,6.533,0.285,9.2-1.85c1.133-0.934,1.417-2.316,0.85-4.15c-0.667-2.1-1.867-3.049-3.6-2.85v-19.75\r\n
|
118
|
-
\ \t\tc-0.767-8.533-4.233-12.134-10.4-10.8c-1.967,0.2-3.717,1.149-5.25,2.85l-11.25-0.05v-2.6c-3.367-0.934-6.434-0.317-9.2,1.85\r\n
|
119
|
-
\ \t\tc-1.2,1.1-1.483,2.533-0.85,4.3C179.775,23.042,180.975,23.942,182.675,23.775\"/>\r\n
|
120
|
-
\ \t<path fill=\"none\" d=\"M399.475,20.625\"/>\r\n \t<path fill=\"#3366FF\"
|
121
|
-
d=\"M309.575,58.374l0.3-0.398c0.7-1,1.05-2.168,1.05-3.5c0-1.533-0.45-2.834-1.35-3.9\r\n
|
122
|
-
\ \t\tc-0.867-1.066-1.917-1.6-3.15-1.6s-2.3,0.533-3.2,1.6c-0.866,1.066-1.3,2.367-1.3,3.9c0,1.332,0.334,2.5,1,3.5l0.3,0.398\r\n
|
123
|
-
\ \t\tc0.9,1.068,1.967,1.602,3.2,1.602S308.708,59.443,309.575,58.374\"/>\r\n
|
124
|
-
\ \t<path fill=\"none\" d=\"M309.575,58.374\"/>\r\n \t<path fill=\"#FF0000\"
|
125
|
-
d=\"M116.425,24.575l0.2-9.2h11.85l-19.65,34.601v8.85h29.35l-1.9-21l-4.3,2.949l-0.25,9.201h-14.65\r\n
|
126
|
-
\ \t\tl19.75-34.75v-8.65l-26.7-0.1l2.6,21.149L116.425,24.575\"/>\r\n
|
127
|
-
\ \t<path fill=\"none\" d=\"M116.425,24.575\"/>\r\n \t<path fill=\"#9900FF\"
|
128
|
-
d=\"M220.875,3.725l-0.1,6.399l2.8,1.601l-2.95,45.399l10.55-0.449l2.25,1.6l2.35,1.1l2.5,0.701\r\n
|
129
|
-
\ \t\tc1.967,0,3.933-0.268,5.9-0.801c1.033,0.033,2.067-0.184,3.1-0.65l2.05-1.299l0.9-0.801l2-2.299l1.8-3.051l1.4-3.4l0.7-2.6\r\n
|
130
|
-
\ \t\tl0.4-2.85c0.066-1.033,0.083-2.066,0.05-3.1l-0.25-3.25l-0.55-2.852l-0.95-2.849l-1.55-3.55l-0.45-0.95l-1.9-2.1l-1.2-1.4\r\n
|
131
|
-
\ \t\tl-2.65-1.9l-1.35-0.85l-3.95-0.9h-2.1l-2.4,0.551l-2.45,1.199l-1.2,0.7l-2.45,1.65V2.875L220.875,3.725
|
132
|
-
M234.375,30.575\r\n \t\tc1.8-2.467,3.966-3.7,6.5-3.7c2.533,0,4.7,1.233,6.5,3.7c1.8,2.434,2.7,5.368,2.7,8.799c0,3.434-0.9,6.385-2.7,8.852\r\n
|
133
|
-
\ \t\tc-1.8,2.467-3.967,3.699-6.5,3.699c-2.534,0-4.7-1.232-6.5-3.699c-1.8-2.467-2.7-5.418-2.7-8.852\r\n
|
134
|
-
\ \t\tC231.675,35.943,232.575,33.009,234.375,30.575\"/>\r\n \t<path
|
135
|
-
fill=\"none\" d=\"M220.875,3.725\"/>\r\n </g>\r\n </svg>\r\n
|
136
|
-
\ \r\n <div style=\"text-align: center; width: 100%; margin-top:
|
137
|
-
1%;\">\r\n <svg version=\"1.1\" id=\"Layer_2\" xmlns=\"http://www.w3.org/2000/svg\"
|
138
|
-
xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\r\n \t
|
139
|
-
style=\"width:30%; height:30%\" width=\"150px\" height=\"150px\" viewBox=\"5.02
|
140
|
-
-3.954 150 150\" enable-background=\"new 5.02 -3.954 150 150\" xml:space=\"preserve\">\r\n
|
141
|
-
\ <g id=\"spinner\">\r\n \t<g transform=\"matrix(1.000,0.000,0.000,1.000,-84.150,-14.450)\">\r\n
|
142
|
-
\ \t\t<g>\r\n \t\t\t<path opacity=\"0.122\" fill=\"#00FF00\"
|
143
|
-
d=\"M152.151,71.151c2.073-0.69,3.888-1.727,5.442-3.107h0.13\r\n \t\t\t\tc1.556-1.38,2.807-3.063,3.757-5.047c1.988-4.054,2.247-8.196,0.778-12.423c-1.469-4.228-4.19-7.334-8.164-9.318l-12.312-0.647\r\n
|
144
|
-
\ \t\t\t\tc-4.321,1.381-7.43,4.099-9.331,8.153c-1.987,3.969-2.247,8.111-0.778,12.424c1.383,4.141,4.104,7.204,8.166,9.188\r\n
|
145
|
-
\ \t\t\t\tC143.814,72.358,147.918,72.617,152.151,71.151\"/>\r\n
|
146
|
-
\ \t\t</g>\r\n \t\t<path fill=\"none\" stroke=\"#000000\"
|
147
|
-
stroke-width=\"0.05\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M157.593,68.044h0.13\"\r\n
|
148
|
-
\ \t\t\t/>\r\n \t\t<g>\r\n \t\t\t<path opacity=\"0.122\"
|
149
|
-
fill=\"#1A24E6\" d=\"M175.867,41.386l-5.572,3.235c-1.556,1.38-2.766,3.019-3.63,4.917\r\n
|
150
|
-
\ \t\t\t\tc-1.987,3.969-2.247,8.067-0.777,12.294c1.123,3.192,2.98,5.781,5.572,7.765l2.592,1.553c3.974,1.984,8.078,2.242,12.311,0.776\r\n
|
151
|
-
\ \t\t\t\tc4.234-1.466,7.344-4.185,9.331-8.153l1.685-5.954l-0.907-6.471c-1.468-4.228-4.19-7.289-8.164-9.188\r\n
|
152
|
-
\ \t\t\t\tC184.247,40.177,180.1,39.918,175.867,41.386\"/>\r\n \t\t</g>\r\n
|
153
|
-
\ \t\t<g>\r\n \t\t\t<path opacity=\"0.122\" fill=\"#F2FE01\"
|
154
|
-
d=\"M125.194,69.467c-4.233,1.467-7.343,4.229-9.33,8.283\r\n \t\t\t\tc-1.988,3.969-2.246,8.067-0.778,12.294c1.47,4.228,4.233,7.333,8.295,9.318c3.974,1.898,8.078,2.157,12.311,0.776l0.648-0.259\r\n
|
155
|
-
\ \t\t\t\tc3.888-1.552,6.782-4.228,8.683-8.022c1.296-2.676,1.856-5.436,1.685-8.283l-0.907-4.011c-1.296-3.625-3.456-6.385-6.48-8.283\r\n
|
156
|
-
\ \t\t\t\tl-1.815-1.035C133.532,68.26,129.428,68.001,125.194,69.467\"/>\r\n
|
157
|
-
\ \t\t</g>\r\n \t\t\r\n \t\t\t<radialGradient
|
158
|
-
id=\"SVGID_1_\" cx=\"69.1842\" cy=\"587.5672\" r=\"2.5933\" fx=\"67.8876\"
|
159
|
-
fy=\"586.2706\" gradientTransform=\"matrix(12.5645 0 0 -12.5182 -705.0267
|
160
|
-
7439.6914)\" gradientUnits=\"userSpaceOnUse\">\r\n \t\t\t<stop
|
161
|
-
\ offset=\"0\" style=\"stop-color:#FFFFFF\"/>\r\n \t\t\t<stop offset=\"1\"
|
162
|
-
style=\"stop-color:#CCCCCC\"/>\r\n \t\t</radialGradient>\r\n \t\t<path
|
163
|
-
fill=\"url(#SVGID_1_)\" d=\"M149.688,77.232c-1.037,1.984-1.598,4.056-1.684,6.213v0.129c-0.174,1.984,0.129,4.012,0.907,6.083\r\n
|
164
|
-
\ \t\t\tc1.208,3.623,3.369,6.428,6.479,8.412l1.685,0.906c4.06,1.898,8.207,2.156,12.44,0.776c4.233-1.554,7.301-4.313,9.202-8.283\r\n
|
165
|
-
\ \t\t\tc1.037-2.156,1.641-4.313,1.813-6.471l-0.907-5.824c-1.468-4.313-4.233-7.418-8.293-9.316c-3.974-1.984-8.078-2.243-12.312-0.777\r\n
|
166
|
-
\ \t\t\tl-0.648,0.259C154.397,70.804,151.503,73.437,149.688,77.232\"/>\r\n
|
167
|
-
\ \t\t<path fill=\"none\" stroke=\"#000000\" stroke-width=\"0.05\"
|
168
|
-
stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M148.004,83.445v0.129\r\n
|
169
|
-
\ \t\t\t\"/>\r\n \t\t<g>\r\n \t\t\t<path opacity=\"0.122\"
|
170
|
-
fill=\"#E75303\" d=\"M162.388,120.456c0.95-2.07,1.469-4.098,1.555-6.083v-0.128\r\n
|
171
|
-
\ \t\t\t\tc0.086-2.071-0.216-4.142-0.907-6.212c-1.468-4.228-4.19-7.291-8.164-9.189c-3.974-1.984-8.079-2.243-12.312-0.776l-5.572,3.105\r\n
|
172
|
-
\ \t\t\t\tc-1.556,1.382-2.809,3.063-3.759,5.048c-1.987,3.968-2.247,8.067-0.777,12.294c1.468,4.228,4.233,7.334,8.293,9.318\r\n
|
173
|
-
\ \t\t\t\tc3.975,1.984,8.078,2.243,12.312,0.776C157.291,127.143,160.401,124.425,162.388,120.456\"/>\r\n
|
174
|
-
\ \t\t</g>\r\n \t\t<path fill=\"none\" stroke=\"#000000\"
|
175
|
-
stroke-width=\"0.05\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M163.943,114.373\r\n
|
176
|
-
\ \t\t\tv-0.128\"/>\r\n \t\t<g>\r\n \t\t\t<path
|
177
|
-
opacity=\"0.122\" fill=\"#E90101\" d=\"M175.996,98.844c-4.319,1.382-7.473,4.099-9.46,8.153\r\n
|
178
|
-
\ \t\t\t\tc-1.123,2.331-1.685,4.703-1.685,7.118c0,1.726,0.345,3.494,1.036,5.307c1.382,4.228,4.104,7.334,8.165,9.318\r\n
|
179
|
-
\ \t\t\t\tc3.974,1.984,8.078,2.242,12.311,0.776c4.234-1.466,7.344-4.228,9.331-8.283c1.987-4.054,2.247-8.196,0.777-12.423\r\n
|
180
|
-
\ \t\t\t\tc-1.209-3.364-3.196-5.995-5.961-7.894l-2.203-1.294C184.247,97.637,180.143,97.378,175.996,98.844\"/>\r\n
|
181
|
-
\ \t\t</g>\r\n \t\t<g>\r\n \t\t\t<path opacity=\"0.122\"
|
182
|
-
fill=\"#1B02FD\" d=\"M183.383,78.656c-1.037,1.984-1.599,4.011-1.685,6.083v0.129\r\n
|
183
|
-
\ \t\t\t\tc-0.173,1.984,0.129,4.054,0.907,6.211c1.468,4.227,4.233,7.334,8.293,9.318c3.974,1.898,8.078,2.158,12.312,0.776\r\n
|
184
|
-
\ \t\t\t\tc4.233-1.466,7.344-4.227,9.331-8.281c1.901-3.97,2.117-8.067,0.648-12.295c-1.47-4.227-4.19-7.333-8.165-9.318\r\n
|
185
|
-
\ \t\t\t\tc-4.061-1.984-8.208-2.243-12.441-0.775C188.35,71.97,185.284,74.687,183.383,78.656\"/>\r\n
|
186
|
-
\ \t\t</g>\r\n \t\t<path fill=\"none\" stroke=\"#000000\"
|
187
|
-
stroke-width=\"0.05\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M181.698,84.739v0.129\r\n
|
188
|
-
\ \t\t\t\"/>\r\n \t</g>\r\n </g>\r\n </svg>\r\n
|
189
|
-
\ </div>\r\n \r\n <audio autoplay=\"autoplay\" playcount=\"999\"
|
190
|
-
id=\"looper\" loop=\"true\">\r\n <source src=\"zombo.ogg\"></source>\r\n
|
191
|
-
\ <source src=\"zombo.mp3\"></source>\r\n </audio>\r\n \r\n
|
192
|
-
\ <div style=\"text-align: center; width: 100%; display:none;\" id=\"start_container\">\r\n
|
193
|
-
\ <a href=\"javascript:ipad_start();\" style=\"font-family: Helvetica;
|
194
|
-
font-size: 44px;\">Start</a>\r\n </div>\r\n \r\n <script
|
195
|
-
type=\"text/javascript\">\r\n\r\n var _gaq = _gaq || [];\r\n _gaq.push(['_setAccount',
|
196
|
-
'UA-8093261-3']);\r\n _gaq.push(['_trackPageview']);\r\n \r\n
|
197
|
-
\ (function() {\r\n var ga = document.createElement('script');
|
198
|
-
ga.type = 'text/javascript'; ga.async = true;\r\n ga.src =
|
199
|
-
('https:' == document.location.protocol ? 'https://ssl' : 'http://www') +
|
200
|
-
'.google-analytics.com/ga.js';\r\n var s = document.getElementsByTagName('script')[0];
|
201
|
-
s.parentNode.insertBefore(ga, s);\r\n })();\r\n \r\n spinner
|
202
|
-
= document.getElementById('spinner');\r\n angle = 0;\r\n \r\n
|
203
|
-
\ function spin() {\r\n angle = angle + 80;\r\n if
|
204
|
-
(angle > 360) angle = angle - 360;\r\n spinner.setAttribute(\"transform\",\"rotate(\"
|
205
|
-
+ angle + \", 81, 69)\");\r\n setTimeout(\"spin()\", 100);\r\n
|
206
|
-
\ }\r\n \r\n function ipad_start() {\r\n document.getElementById('looper').play();\r\n
|
207
|
-
\ document.getElementById('start_container').style.display =
|
208
|
-
'none';\r\n spin(); \r\n }\r\n \r\n if
|
209
|
-
(navigator.userAgent.indexOf('iPad') != -1) {\r\n document.getElementById('start_container').style.display
|
210
|
-
= 'block';\r\n } else {\r\n spin(); \r\n
|
211
|
-
\ }\r\n \r\n </script>\r\n </body>\r\n</html>"
|
212
|
-
http_version:
|
213
|
-
recorded_at: Thu, 16 May 2013 14:17:56 GMT
|
214
|
-
recorded_with: VCR 2.4.0
|