brighter_planet_layout 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -1,5 +1,5 @@
1
1
  <div id="header">
2
- <h1><%= image_tag 'logo.png' :alt => "Brighter Planet" %></h1>
2
+ <h1><span>Brighter Planet</span></h1>
3
3
  <ul>
4
4
  <li><%= link_to 'Home', 'http://brighterplanet.com' %></li>
5
5
  <li><%= link_to 'About us', 'http://brighterplanet.com/about' %></li>
@@ -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.1"
8
+ s.version = "0.1.2"
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,8 +30,8 @@ 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/images/logo.png",
34
33
  "public/stylesheets/brighter_planet.css",
34
+ "public/stylesheets/images/logo.png",
35
35
  "test/helper.rb",
36
36
  "test/test_brighter_planet_layout.rb"
37
37
  ]
@@ -4,7 +4,6 @@ module BrighterPlanetLayout
4
4
  app.paths.app.views << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'app', 'views'))
5
5
  app.paths.app.helpers << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'app', 'helpers'))
6
6
  app.paths.public.stylesheets << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'public', 'stylesheets'))
7
- app.paths.public.images << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'public', 'images'))
8
7
  end
9
8
  end
10
9
  end
@@ -76,6 +76,11 @@ h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd {
76
76
  float: left;
77
77
  width: 129px;
78
78
  margin: 13px;
79
+ background: url(images/logo.png) no-repeat
80
+ }
81
+
82
+ #header h1 span {
83
+ display: none;
79
84
  }
80
85
 
81
86
  #header ul {
File without changes
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andy Rossmeissl
@@ -52,8 +52,8 @@ files:
52
52
  - brighter_planet_layout.gemspec
53
53
  - lib/brighter_planet_layout.rb
54
54
  - lib/brighter_planet_layout/railtie.rb
55
- - public/images/logo.png
56
55
  - public/stylesheets/brighter_planet.css
56
+ - public/stylesheets/images/logo.png
57
57
  - test/helper.rb
58
58
  - test/test_brighter_planet_layout.rb
59
59
  has_rdoc: true