brighter_planet_layout 0.1.7 → 0.1.8
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.
- data/VERSION +1 -1
- data/app/views/layouts/brighter_planet.html.erb +1 -0
- data/brighter_planet_layout.gemspec +14 -1
- data/lib/brighter_planet_layout/railtie.rb +3 -0
- data/public/favicon.ico +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
- metadata +15 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.8
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{brighter_planet_layout}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.8"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andy Rossmeissl"]
|
|
@@ -30,7 +30,20 @@ Gem::Specification.new do |s|
|
|
|
30
30
|
"brighter_planet_layout.gemspec",
|
|
31
31
|
"lib/brighter_planet_layout.rb",
|
|
32
32
|
"lib/brighter_planet_layout/railtie.rb",
|
|
33
|
+
"public/favicon.ico",
|
|
33
34
|
"public/stylesheets/brighter_planet.css",
|
|
35
|
+
"public/stylesheets/fonts/KievitOT-Bold.otf",
|
|
36
|
+
"public/stylesheets/fonts/KievitOT-BoldItalic.otf",
|
|
37
|
+
"public/stylesheets/fonts/KievitOT-Italic.otf",
|
|
38
|
+
"public/stylesheets/fonts/KievitOT-Regular.otf",
|
|
39
|
+
"public/stylesheets/fonts/KievitWebPro-Bold.eot",
|
|
40
|
+
"public/stylesheets/fonts/KievitWebPro-Bold.woff",
|
|
41
|
+
"public/stylesheets/fonts/KievitWebPro-BoldIta.eot",
|
|
42
|
+
"public/stylesheets/fonts/KievitWebPro-BoldIta.woff",
|
|
43
|
+
"public/stylesheets/fonts/KievitWebPro-Ita.eot",
|
|
44
|
+
"public/stylesheets/fonts/KievitWebPro-Ita.woff",
|
|
45
|
+
"public/stylesheets/fonts/KievitWebPro.eot",
|
|
46
|
+
"public/stylesheets/fonts/KievitWebPro.woff",
|
|
34
47
|
"public/stylesheets/images/logo.png",
|
|
35
48
|
"test/helper.rb",
|
|
36
49
|
"test/test_brighter_planet_layout.rb"
|
|
@@ -3,7 +3,10 @@ module BrighterPlanetLayout
|
|
|
3
3
|
config.app_middleware.use '::ActionDispatch::Static', File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'public'))
|
|
4
4
|
initializer 'brighter_planet_layout.add_paths' do |app|
|
|
5
5
|
app.paths.app.views << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'app', 'views'))
|
|
6
|
+
end
|
|
7
|
+
config.to_prepare do
|
|
6
8
|
ApplicationController.helper BrighterPlanetHelper
|
|
9
|
+
ApplicationController.layout 'brighter_planet'
|
|
7
10
|
end
|
|
8
11
|
end
|
|
9
12
|
end
|
data/public/favicon.ico
ADDED
|
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
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 8
|
|
9
|
+
version: 0.1.8
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Andy Rossmeissl
|
|
@@ -52,7 +52,20 @@ files:
|
|
|
52
52
|
- brighter_planet_layout.gemspec
|
|
53
53
|
- lib/brighter_planet_layout.rb
|
|
54
54
|
- lib/brighter_planet_layout/railtie.rb
|
|
55
|
+
- public/favicon.ico
|
|
55
56
|
- public/stylesheets/brighter_planet.css
|
|
57
|
+
- public/stylesheets/fonts/KievitOT-Bold.otf
|
|
58
|
+
- public/stylesheets/fonts/KievitOT-BoldItalic.otf
|
|
59
|
+
- public/stylesheets/fonts/KievitOT-Italic.otf
|
|
60
|
+
- public/stylesheets/fonts/KievitOT-Regular.otf
|
|
61
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.eot
|
|
62
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.woff
|
|
63
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.eot
|
|
64
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.woff
|
|
65
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.eot
|
|
66
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.woff
|
|
67
|
+
- public/stylesheets/fonts/KievitWebPro.eot
|
|
68
|
+
- public/stylesheets/fonts/KievitWebPro.woff
|
|
56
69
|
- public/stylesheets/images/logo.png
|
|
57
70
|
- test/helper.rb
|
|
58
71
|
- test/test_brighter_planet_layout.rb
|