bootstrap_leather 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/helpers/bootstrap_leather_helper.rb +4 -5
- data/bootstrap_leather.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4eaa2097f1ea327eba0b944d0cd9c5a01b07ec72
|
4
|
+
data.tar.gz: f6c8f59898bb520373e56ac0ccad3db99e782557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 367329f9fc6b8cf0f8c6ba635447b0c56e28b77263bbbde87e568e1f75861dcb4c9186159995dd0dd67660dc2c3b375ec975e2b4632a1bef4c24958873e56581
|
7
|
+
data.tar.gz: 0600f73e045e6bed618e9ba5494d2852662620db22a5c239f7f10bf00e327a0c9ac0239483cddfc38a326e77a6257d4b8c2190ebe51daa451bea2e1e1105b905
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.4
|
@@ -42,13 +42,12 @@ module BootstrapLeatherHelper
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def render_h1(html_options = {})
|
45
|
-
|
46
|
-
|
45
|
+
page_title = []
|
46
|
+
page_title << content_for(:title)
|
47
47
|
if content_for(:subtitle)
|
48
|
-
|
49
|
-
title += content_tag :small, content_for(:subtitle)
|
48
|
+
page_title << content_tag(:small, content_for(:subtitle))
|
50
49
|
end
|
51
|
-
content_tag :h1,
|
50
|
+
content_tag :h1, page_title.compact.join(' ').html_safe, html_options
|
52
51
|
end
|
53
52
|
|
54
53
|
def render_page_header(html_options = {})
|
data/bootstrap_leather.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bootstrap_leather 0.7.
|
5
|
+
# stub: bootstrap_leather 0.7.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bootstrap_leather"
|
9
|
-
s.version = "0.7.
|
9
|
+
s.version = "0.7.4"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|