robinsp-robins_html_helpers 0.1.1 → 0.1.2
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/Rakefile +5 -1
- data/lib/robins_html_helpers.rb +1 -1
- data/robins_html_helpers.gemspec +3 -3
- metadata +3 -3
data/Rakefile
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
# Rakefile
|
2
|
+
|
3
|
+
# Run
|
4
|
+
# rake manifest, rake build_gemspec before git-push
|
5
|
+
|
2
6
|
require 'rubygems'
|
3
7
|
require 'rake'
|
4
8
|
require 'echoe'
|
5
9
|
|
6
|
-
Echoe.new('robins_html_helpers', '0.1.
|
10
|
+
Echoe.new('robins_html_helpers', '0.1.2') do |p|
|
7
11
|
p.description = "HTML stuff I use frequently."
|
8
12
|
p.url = "http://github.com/robinsp/robins_html_helpers"
|
9
13
|
p.author = "Robin Spainhour"
|
data/lib/robins_html_helpers.rb
CHANGED
@@ -27,7 +27,7 @@ module RobinsHtmlHelpers
|
|
27
27
|
content_tag(:div, :class => options[:bottom_right_class]) do
|
28
28
|
content_tag(:div, :class => options[:top_left_class]) do
|
29
29
|
content_tag(:div, :class => options[:inner_class], :id => options[:inner_id]) do
|
30
|
-
capture(&block)
|
30
|
+
capture(&block) if block.present?
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
data/robins_html_helpers.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{robins_html_helpers}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Robin Spainhour"]
|
9
|
-
s.date = %q{2008-12-
|
9
|
+
s.date = %q{2008-12-11}
|
10
10
|
s.description = %q{HTML stuff I use frequently.}
|
11
11
|
s.email = %q{robin@robinspainhour.com}
|
12
12
|
s.extra_rdoc_files = ["lib/robins_html_helpers.rb", "README.rdoc"]
|
13
|
-
s.files = ["
|
13
|
+
s.files = ["Rakefile", "Manifest", "lib/robins_html_helpers.rb", "README.rdoc", "robins_html_helpers.gemspec"]
|
14
14
|
s.has_rdoc = true
|
15
15
|
s.homepage = %q{http://github.com/robinsp/robins_html_helpers}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Robins_html_helpers", "--main", "README.rdoc"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: robinsp-robins_html_helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robin Spainhour
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-12-
|
12
|
+
date: 2008-12-11 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -23,11 +23,11 @@ extra_rdoc_files:
|
|
23
23
|
- lib/robins_html_helpers.rb
|
24
24
|
- README.rdoc
|
25
25
|
files:
|
26
|
-
- robins_html_helpers.gemspec
|
27
26
|
- Rakefile
|
28
27
|
- Manifest
|
29
28
|
- lib/robins_html_helpers.rb
|
30
29
|
- README.rdoc
|
30
|
+
- robins_html_helpers.gemspec
|
31
31
|
has_rdoc: true
|
32
32
|
homepage: http://github.com/robinsp/robins_html_helpers
|
33
33
|
post_install_message:
|