gridion 0.0.20 → 0.0.21

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.
@@ -57,6 +57,7 @@ module Gridion
57
57
  options[:table_body_wrapper_tag]="tbody"
58
58
  options[:table_row_tag]||="tr"
59
59
  options[:table_cell_tag]||="td"
60
+ options[:paginate]||=true
60
61
 
61
62
  if collection.blank?
62
63
  if options[:render_empty_grid]
@@ -71,7 +72,7 @@ module Gridion
71
72
  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
72
73
 
73
74
  if collection.respond_to?(:current_page) && defined?(Kaminari) # we assume only Kaminari is supported
74
- grid_binding.paginator.call(collection.first.class, collection, options) if collection.num_pages > 1
75
+ grid_binding.paginator.call(collection.first.class, collection, options) if collection.num_pages > 1 && options[:paginate]==true
75
76
  end
76
77
 
77
78
 
@@ -1,3 +1,3 @@
1
1
  module Gridion
2
- VERSION = "0.0.20"
2
+ VERSION = "0.0.21"
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.20
4
+ version: 0.0.21
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-01-27 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sqlite3
16
- requirement: &70112276837960 !ruby/object:Gem::Requirement
16
+ requirement: &70361116067800 !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: *70112276837960
24
+ version_requirements: *70361116067800
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: kaminari
27
- requirement: &70112276837220 !ruby/object:Gem::Requirement
27
+ requirement: &70361116066480 !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: *70112276837220
35
+ version_requirements: *70361116066480
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: 387820204184933051
93
+ hash: 3132415821333992077
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: 387820204184933051
102
+ hash: 3132415821333992077
103
103
  requirements: []
104
104
  rubyforge_project:
105
105
  rubygems_version: 1.8.10