g_sectioned_shower 1.0.6 → 1.0.7

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/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.0.7 2009-11-01
2
+
3
+ * Fixed bug created in 1.0.6 with incorrect variable name (typo).
4
+
5
+
1
6
  == 1.0.6 2009-10-29
2
7
 
3
8
  * Fixed bug with associated objects that are nil still trying to send methods to get values back.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.6
1
+ 1.0.7
@@ -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.6"
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-10-29}
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 assoc_obj.nil?
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?
@@ -4,7 +4,7 @@ $:.unshift(File.dirname(__FILE__)) unless
4
4
  require 'g_sectioned_shower/view_helpers'
5
5
 
6
6
  module GSectionedShower
7
- VERSION = '1.0.6'
7
+ VERSION = '1.0.7'
8
8
  end
9
9
 
10
10
  if defined?( ActionView::Base )
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.6
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-10-29 00:00:00 -05:00
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
- - LICENSE
67
+ - test/test_helper.rb
67
68
  has_rdoc: true
68
69
  homepage: http://github.com/midas/tester
69
70
  licenses: []