Agiley-ec2onrails 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,144 @@
1
+ body {
2
+ background-color: white;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ h4 {
21
+ margin-bottom: 0;
22
+ }
23
+ ul {
24
+ margin-top: 0;
25
+ }
26
+ li {
27
+ padding: 0;
28
+ margin: 0;
29
+ list-style-type: square;
30
+ }
31
+ a {
32
+ color: #00266F;
33
+ font-weight: normal;
34
+ text-decoration: underline;
35
+ }
36
+ blockquote {
37
+ font-size: 90%;
38
+ font-style: italic;
39
+ border-left: 1px solid #111;
40
+ padding-left: 1em;
41
+ }
42
+ .caps {
43
+ font-size: 80%;
44
+ }
45
+
46
+ #main {
47
+ width: 45em;
48
+ padding: 0;
49
+ margin: 0 auto;
50
+ }
51
+ .coda {
52
+ text-align: right;
53
+ color: #444;
54
+ font-size: smaller;
55
+ }
56
+
57
+ table {
58
+ font-size: 90%;
59
+ line-height: 1.4em;
60
+ color: #ff8;
61
+ background-color: #111;
62
+ padding: 2px 10px 2px 10px;
63
+ border-style: dashed;
64
+ }
65
+
66
+ th {
67
+ color: #fff;
68
+ }
69
+
70
+ td {
71
+ padding: 2px 10px 2px 10px;
72
+ }
73
+
74
+ .success {
75
+ color: #0CC52B;
76
+ }
77
+
78
+ .failed {
79
+ color: #E90A1B;
80
+ }
81
+
82
+ .unknown {
83
+ color: #995000;
84
+ }
85
+ pre, code {
86
+ overflow: auto;
87
+ font-family: monospace;
88
+ font-size: 90%;
89
+ line-height: 1.4em;
90
+ color: #ff8;
91
+ background-color: #111;
92
+ padding: 2px 10px 2px 10px;
93
+ }
94
+ .comment { color: #aaa; font-style: italic; }
95
+ .keyword { color: #eff; font-weight: bold; }
96
+ .punct { color: #eee; font-weight: bold; }
97
+ .symbol { color: #0bb; }
98
+ .string { color: #6b4; }
99
+ .ident { color: #ff8; }
100
+ .constant { color: #66f; }
101
+ .regex { color: #ec6; }
102
+ .number { color: #F99; }
103
+ .expr { color: #227; }
104
+
105
+ #version {
106
+ float: right;
107
+ text-align: right;
108
+ font-family: sans-serif;
109
+ font-weight: normal;
110
+ background-color: #7CBBFF;
111
+ color: #7CBBFF;
112
+ padding: 15px 20px 10px 20px;
113
+ margin: 0 auto;
114
+ margin-top: 15px;
115
+ border: 3px solid #141331;
116
+ }
117
+
118
+ #version .numbers {
119
+ display: block;
120
+ font-size: 4em;
121
+ line-height: 0.8em;
122
+ letter-spacing: -0.1ex;
123
+ margin-bottom: 15px;
124
+ }
125
+
126
+ #version p {
127
+ text-decoration: none;
128
+ color: #141331;
129
+ background-color: #7CBBFF;
130
+ margin: 0;
131
+ padding: 0;
132
+ }
133
+
134
+ #version a {
135
+ text-decoration: none;
136
+ color: #141331;
137
+ background-color: #7CBBFF;
138
+ }
139
+
140
+ .clickable {
141
+ cursor: pointer;
142
+ cursor: hand;
143
+ }
144
+
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+
33
+ <h1><%= title %></h1>
34
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
35
+ <p>Get Version</p>
36
+ <a href="<%= download %>" class="numbers"><%= version %></a>
37
+ </div>
38
+ <%= body %>
39
+ <p class="coda">
40
+ <a href="http://pauldowman.com/contact/">Paul Dowman</a>, <%= modified.pretty %><br>
41
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
42
+ </p>
43
+ </div>
44
+
45
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
46
+ </script>
47
+ <script type="text/javascript">
48
+ _uacct = "UA-2759652-1";
49
+ urchinTracker();
50
+ </script>
51
+
52
+ </body>
53
+ </html>
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: Agiley-ec2onrails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.9
5
+ platform: ruby
6
+ authors:
7
+ - Paul Dowman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-11 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: capistrano
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - "="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.4.3
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: archive-tar-minitar
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 0.5.1
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: optiflag
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.6.5
41
+ version:
42
+ - !ruby/object:Gem::Dependency
43
+ name: hoe
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.7.0
50
+ version:
51
+ description: Client-side libraries (Capistrano tasks) for managing and deploying to EC2 on Rails servers.
52
+ email: paul@pauldowman.com
53
+ executables: []
54
+
55
+ extensions: []
56
+
57
+ extra_rdoc_files:
58
+ - History.txt
59
+ - COPYING.txt
60
+ - Manifest.txt
61
+ - README.txt
62
+ - website/index.txt
63
+ files:
64
+ - History.txt
65
+ - COPYING.txt
66
+ - Manifest.txt
67
+ - README.txt
68
+ - Rakefile
69
+ - config/hoe.rb
70
+ - config/requirements.rb
71
+ - lib/ec2onrails.rb
72
+ - lib/ec2onrails/capistrano_utils.rb
73
+ - lib/ec2onrails/recipes.rb
74
+ - lib/ec2onrails/version.rb
75
+ - script/destroy
76
+ - script/generate
77
+ - script/txt2html
78
+ - setup.rb
79
+ - tasks/deployment.rake
80
+ - tasks/environment.rake
81
+ - tasks/website.rake
82
+ - test/test_ec2onrails.rb
83
+ - test/test_helper.rb
84
+ - website/index.txt
85
+ - website/template.rhtml
86
+ - website/javascripts/rounded_corners_lite.inc.js
87
+ - website/stylesheets/screen.css
88
+ - test/test_app/test/test_helper.rb
89
+ has_rdoc: true
90
+ homepage: http://ec2onrails.rubyforge.org
91
+ post_install_message:
92
+ rdoc_options:
93
+ - --main
94
+ - README.txt
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: "0"
102
+ version:
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: "0"
108
+ version:
109
+ requirements: []
110
+
111
+ rubyforge_project: ec2onrails
112
+ rubygems_version: 1.2.0
113
+ signing_key:
114
+ specification_version: 2
115
+ summary: Client-side libraries (Capistrano tasks) for managing and deploying to EC2 on Rails servers.
116
+ test_files:
117
+ - test/test_app/test/test_helper.rb
118
+ - test/test_ec2onrails.rb
119
+ - test/test_helper.rb