gridion 0.0.17 → 0.0.18

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.
@@ -26,7 +26,11 @@ module Gridion
26
26
  @paginator
27
27
  end
28
28
 
29
-
29
+ def filter(&block)
30
+ @filter=block if block_given?
31
+ @filter
32
+ end
33
+
30
34
  end
31
35
 
32
36
  def grid(collection, options={}, &block)
@@ -59,6 +63,7 @@ module Gridion
59
63
  end
60
64
  else
61
65
  grid_binding.header.call(collection.first.class, collection, options)
66
+ grid_binding.filter.call(collection.first.class, collection, options) if grid_binding.filter.present?
62
67
 
63
68
  collection.each_with_index {|object, i| grid_binding.row.call(object.class, object, options.merge(:row_is_even=>i%2==1)) } #index starts from 0
64
69
 
@@ -80,7 +85,8 @@ module Gridion
80
85
  table_tag = options[:table_tag]||"table"
81
86
  table_row_tag=options[:table_row_tag]||"tr"
82
87
  table_header_tag=options[:table_header_tag]||"th"
83
- safe_concat("<#{table_tag} class=\"#{klass.name.downcase}\">")
88
+ table_classes=[options[:class]].flatten.compact
89
+ safe_concat("<#{table_tag} class=\"#{klass.name.downcase} #{table_classes.join(' ')}\">")
84
90
 
85
91
  columns=options[:columns]||klass.column_names
86
92
 
@@ -1,3 +1,3 @@
1
1
  module Gridion
2
- VERSION = "0.0.17"
2
+ VERSION = "0.0.18"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gridion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-07 00:00:00.000000000Z
12
+ date: 2011-12-21 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sqlite3
16
- requirement: &70341045774500 !ruby/object:Gem::Requirement
16
+ requirement: &70245627603180 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70341045774500
24
+ version_requirements: *70245627603180
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: kaminari
27
- requirement: &70341045773800 !ruby/object:Gem::Requirement
27
+ requirement: &70245627602760 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70341045773800
35
+ version_requirements: *70245627602760
36
36
  description: Simple grid helper for rails
37
37
  email:
38
38
  - william@tofugear.com
@@ -90,7 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
90
  version: '0'
91
91
  segments:
92
92
  - 0
93
- hash: -2132856971133222190
93
+ hash: -2111164749067047670
94
94
  required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  none: false
96
96
  requirements:
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  version: '0'
100
100
  segments:
101
101
  - 0
102
- hash: -2132856971133222190
102
+ hash: -2111164749067047670
103
103
  requirements: []
104
104
  rubyforge_project:
105
105
  rubygems_version: 1.8.10