brighter_planet_layout-ruby19 0.2.37
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitattributes +2 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +12 -0
- data/Rakefile +55 -0
- data/VERSION +1 -0
- data/app/helpers/brighter_planet_helper.rb +23 -0
- data/app/views/layouts/_elsewhere.html.erb +21 -0
- data/app/views/layouts/_footer.html.erb +42 -0
- data/app/views/layouts/_google_analytics.html.erb +13 -0
- data/app/views/layouts/_header.html.erb +25 -0
- data/app/views/layouts/brighter_planet.html.erb +33 -0
- data/brighter_planet_layout.gemspec +98 -0
- data/lib/brighter_planet_layout.rb +111 -0
- data/lib/brighter_planet_layout/rails.rb +11 -0
- data/lib/brighter_planet_layout/railtie.rb +21 -0
- data/lib/brighter_planet_layout/rake_tasks.rb +5 -0
- data/public/401.html +15 -0
- data/public/403.html +29 -0
- data/public/403.xml +2 -0
- data/public/404.html +29 -0
- data/public/404.json +1 -0
- data/public/404.xml +2 -0
- data/public/409.html +29 -0
- data/public/422.html +29 -0
- data/public/500.html +30 -0
- data/public/favicon.ico +0 -0
- data/public/javascripts/controls.js +965 -0
- data/public/javascripts/dragdrop.js +974 -0
- data/public/javascripts/effects.js +1123 -0
- data/public/javascripts/prototype.js +4874 -0
- data/public/javascripts/rails.js +118 -0
- data/public/maintenance.html +30 -0
- data/public/stylesheets/brighter_planet.css +838 -0
- data/public/stylesheets/fonts/DejaVuSansMono-Oblique.eot +0 -0
- data/public/stylesheets/fonts/DejaVuSansMono-Oblique.ttf +0 -0
- data/public/stylesheets/fonts/DejaVuSansMono.eot +0 -0
- data/public/stylesheets/fonts/DejaVuSansMono.ttf +0 -0
- data/public/stylesheets/fonts/KievitOT-Bold.otf +0 -0
- data/public/stylesheets/fonts/KievitOT-BoldItalic.otf +0 -0
- data/public/stylesheets/fonts/KievitOT-Italic.otf +0 -0
- data/public/stylesheets/fonts/KievitOT-Regular.otf +0 -0
- data/public/stylesheets/fonts/KievitWebPro-Bold.eot +0 -0
- data/public/stylesheets/fonts/KievitWebPro-Bold.woff +0 -0
- data/public/stylesheets/fonts/KievitWebPro-BoldIta.eot +0 -0
- data/public/stylesheets/fonts/KievitWebPro-BoldIta.woff +0 -0
- data/public/stylesheets/fonts/KievitWebPro-Ita.eot +0 -0
- data/public/stylesheets/fonts/KievitWebPro-Ita.woff +0 -0
- data/public/stylesheets/fonts/KievitWebPro.eot +0 -0
- data/public/stylesheets/fonts/KievitWebPro.woff +0 -0
- data/public/stylesheets/idle.css +63 -0
- data/public/stylesheets/images/bg.png +0 -0
- data/public/stylesheets/images/cards.png +0 -0
- data/public/stylesheets/images/gears.png +0 -0
- data/public/stylesheets/images/logo.png +0 -0
- data/public/stylesheets/images/meter.png +0 -0
- data/public/stylesheets/images/prism.png +0 -0
- data/public/stylesheets/images/radiant_earth-small.png +0 -0
- data/rails/init.rb +3 -0
- data/test/helper.rb +10 -0
- data/test/test_brighter_planet_layout.rb +7 -0
- metadata +162 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,63 @@
|
|
1
|
+
pre.idle .InheritedClass {
|
2
|
+
}
|
3
|
+
pre.idle .TypeName {
|
4
|
+
color: #21439C;
|
5
|
+
}
|
6
|
+
pre.idle .Number {
|
7
|
+
}
|
8
|
+
pre.idle .LibraryVariable {
|
9
|
+
color: #A535AE;
|
10
|
+
}
|
11
|
+
pre.idle .Storage {
|
12
|
+
color: #FF5600;
|
13
|
+
}
|
14
|
+
pre.idle .line-numbers {
|
15
|
+
background-color: #BAD6FD;
|
16
|
+
color: #000000;
|
17
|
+
}
|
18
|
+
pre.idle {
|
19
|
+
background-color: #FFFFFF;
|
20
|
+
color: #000000;
|
21
|
+
}
|
22
|
+
pre.idle .StringInterpolation {
|
23
|
+
color: #990000;
|
24
|
+
}
|
25
|
+
pre.idle .TagName {
|
26
|
+
}
|
27
|
+
pre.idle .LibraryConstant {
|
28
|
+
color: #A535AE;
|
29
|
+
}
|
30
|
+
pre.idle .FunctionArgument {
|
31
|
+
}
|
32
|
+
pre.idle .BuiltInConstant {
|
33
|
+
color: #A535AE;
|
34
|
+
}
|
35
|
+
pre.idle .Invalid {
|
36
|
+
background-color: #990000;
|
37
|
+
color: #FFFFFF;
|
38
|
+
}
|
39
|
+
pre.idle .LibraryClassType {
|
40
|
+
color: #A535AE;
|
41
|
+
}
|
42
|
+
pre.idle .LibraryFunction {
|
43
|
+
color: #A535AE;
|
44
|
+
}
|
45
|
+
pre.idle .TagAttribute {
|
46
|
+
}
|
47
|
+
pre.idle .Keyword {
|
48
|
+
color: #FF5600;
|
49
|
+
}
|
50
|
+
pre.idle .UserDefinedConstant {
|
51
|
+
}
|
52
|
+
pre.idle .String {
|
53
|
+
color: #00A33F;
|
54
|
+
}
|
55
|
+
pre.idle .FunctionName {
|
56
|
+
color: #21439C;
|
57
|
+
}
|
58
|
+
pre.idle .Variable {
|
59
|
+
}
|
60
|
+
pre.idle .Comment {
|
61
|
+
color: #919191;
|
62
|
+
}
|
63
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/rails/init.rb
ADDED
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,162 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: brighter_planet_layout-ruby19
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 93
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 37
|
10
|
+
version: 0.2.37
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Andy Rossmeissl
|
14
|
+
- Seamus Abshere
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2010-09-27 00:00:00 -05:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: ultraviolet
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 51
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
- 10
|
34
|
+
- 2
|
35
|
+
version: 0.10.2
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: simple-rss
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 25
|
47
|
+
segments:
|
48
|
+
- 1
|
49
|
+
- 2
|
50
|
+
- 3
|
51
|
+
version: 1.2.3
|
52
|
+
type: :runtime
|
53
|
+
version_requirements: *id002
|
54
|
+
description: Layouts, partials, stylesheets, and images
|
55
|
+
email: andy@rossmeissl.net
|
56
|
+
executables: []
|
57
|
+
|
58
|
+
extensions: []
|
59
|
+
|
60
|
+
extra_rdoc_files:
|
61
|
+
- LICENSE
|
62
|
+
- README.rdoc
|
63
|
+
files:
|
64
|
+
- .document
|
65
|
+
- .gitattributes
|
66
|
+
- .gitignore
|
67
|
+
- LICENSE
|
68
|
+
- README.rdoc
|
69
|
+
- Rakefile
|
70
|
+
- VERSION
|
71
|
+
- app/helpers/brighter_planet_helper.rb
|
72
|
+
- app/views/layouts/_elsewhere.html.erb
|
73
|
+
- app/views/layouts/_footer.html.erb
|
74
|
+
- app/views/layouts/_google_analytics.html.erb
|
75
|
+
- app/views/layouts/_header.html.erb
|
76
|
+
- app/views/layouts/brighter_planet.html.erb
|
77
|
+
- brighter_planet_layout.gemspec
|
78
|
+
- lib/brighter_planet_layout.rb
|
79
|
+
- lib/brighter_planet_layout/rails.rb
|
80
|
+
- lib/brighter_planet_layout/railtie.rb
|
81
|
+
- lib/brighter_planet_layout/rake_tasks.rb
|
82
|
+
- public/401.html
|
83
|
+
- public/403.html
|
84
|
+
- public/403.xml
|
85
|
+
- public/404.html
|
86
|
+
- public/404.json
|
87
|
+
- public/404.xml
|
88
|
+
- public/409.html
|
89
|
+
- public/422.html
|
90
|
+
- public/500.html
|
91
|
+
- public/favicon.ico
|
92
|
+
- public/javascripts/controls.js
|
93
|
+
- public/javascripts/dragdrop.js
|
94
|
+
- public/javascripts/effects.js
|
95
|
+
- public/javascripts/prototype.js
|
96
|
+
- public/javascripts/rails.js
|
97
|
+
- public/maintenance.html
|
98
|
+
- public/stylesheets/brighter_planet.css
|
99
|
+
- public/stylesheets/fonts/DejaVuSansMono-Oblique.eot
|
100
|
+
- public/stylesheets/fonts/DejaVuSansMono-Oblique.ttf
|
101
|
+
- public/stylesheets/fonts/DejaVuSansMono.eot
|
102
|
+
- public/stylesheets/fonts/DejaVuSansMono.ttf
|
103
|
+
- public/stylesheets/fonts/KievitOT-Bold.otf
|
104
|
+
- public/stylesheets/fonts/KievitOT-BoldItalic.otf
|
105
|
+
- public/stylesheets/fonts/KievitOT-Italic.otf
|
106
|
+
- public/stylesheets/fonts/KievitOT-Regular.otf
|
107
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.eot
|
108
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.woff
|
109
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.eot
|
110
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.woff
|
111
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.eot
|
112
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.woff
|
113
|
+
- public/stylesheets/fonts/KievitWebPro.eot
|
114
|
+
- public/stylesheets/fonts/KievitWebPro.woff
|
115
|
+
- public/stylesheets/idle.css
|
116
|
+
- public/stylesheets/images/bg.png
|
117
|
+
- public/stylesheets/images/cards.png
|
118
|
+
- public/stylesheets/images/gears.png
|
119
|
+
- public/stylesheets/images/logo.png
|
120
|
+
- public/stylesheets/images/meter.png
|
121
|
+
- public/stylesheets/images/prism.png
|
122
|
+
- public/stylesheets/images/radiant_earth-small.png
|
123
|
+
- rails/init.rb
|
124
|
+
- test/helper.rb
|
125
|
+
- test/test_brighter_planet_layout.rb
|
126
|
+
has_rdoc: true
|
127
|
+
homepage: http://github.com/brighterplanet/brighter_planet_layout
|
128
|
+
licenses: []
|
129
|
+
|
130
|
+
post_install_message:
|
131
|
+
rdoc_options:
|
132
|
+
- --charset=UTF-8
|
133
|
+
require_paths:
|
134
|
+
- lib
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
136
|
+
none: false
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 3
|
141
|
+
segments:
|
142
|
+
- 0
|
143
|
+
version: "0"
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
hash: 3
|
150
|
+
segments:
|
151
|
+
- 0
|
152
|
+
version: "0"
|
153
|
+
requirements: []
|
154
|
+
|
155
|
+
rubyforge_project:
|
156
|
+
rubygems_version: 1.3.7
|
157
|
+
signing_key:
|
158
|
+
specification_version: 3
|
159
|
+
summary: Layout assets for Brighter Planet sites
|
160
|
+
test_files:
|
161
|
+
- test/helper.rb
|
162
|
+
- test/test_brighter_planet_layout.rb
|