g_sectioned_shower 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/VERSION +1 -1
- data/g_sectioned_shower.gemspec +5 -3
- data/lib/g_sectioned_shower/view_helpers.rb +1 -1
- data/lib/g_sectioned_shower.rb +1 -1
- metadata +4 -3
data/History.txt
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.7
|
data/g_sectioned_shower.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{g_sectioned_shower}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["C. Jason Harrelson (midas)"]
|
12
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-11-01}
|
13
13
|
s.description = %q{A Guilded (http://github.com/midas/guilded/tree/master) component that creates adaptable show (detail) views of a single ActiveRecord object.}
|
14
14
|
s.email = %q{jason@lookforwardenterprises.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
"History.txt",
|
21
|
+
"LICENSE",
|
21
22
|
"README.rdoc",
|
22
23
|
"Rakefile",
|
23
24
|
"VERSION",
|
@@ -27,7 +28,8 @@ Gem::Specification.new do |s|
|
|
27
28
|
"script/console",
|
28
29
|
"script/destroy",
|
29
30
|
"script/generate",
|
30
|
-
"tasks/rspec.rake"
|
31
|
+
"tasks/rspec.rake",
|
32
|
+
"test/test_helper.rb"
|
31
33
|
]
|
32
34
|
s.homepage = %q{http://github.com/midas/tester}
|
33
35
|
s.rdoc_options = ["--charset=UTF-8"]
|
@@ -226,7 +226,7 @@ module GSectionedShower
|
|
226
226
|
|
227
227
|
rel_methods.each_with_index do |rel_method, rel_i|
|
228
228
|
|
229
|
-
method_output = h( assoc_ar_obj.send( rel_method ) ) unless
|
229
|
+
method_output = h( assoc_ar_obj.send( rel_method ) ) unless assoc_ar_obj.nil?
|
230
230
|
|
231
231
|
links = section[:links]
|
232
232
|
throw "The 'links' option must have values in it, or be left out of the options for the section." if !links.nil? && links.empty?
|
data/lib/g_sectioned_shower.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: g_sectioned_shower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- C. Jason Harrelson (midas)
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-01 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -53,6 +53,7 @@ extra_rdoc_files:
|
|
53
53
|
- README.rdoc
|
54
54
|
files:
|
55
55
|
- History.txt
|
56
|
+
- LICENSE
|
56
57
|
- README.rdoc
|
57
58
|
- Rakefile
|
58
59
|
- VERSION
|
@@ -63,7 +64,7 @@ files:
|
|
63
64
|
- script/destroy
|
64
65
|
- script/generate
|
65
66
|
- tasks/rspec.rake
|
66
|
-
-
|
67
|
+
- test/test_helper.rb
|
67
68
|
has_rdoc: true
|
68
69
|
homepage: http://github.com/midas/tester
|
69
70
|
licenses: []
|