gridion 0.0.21 → 0.0.22

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/README.textile ADDED
@@ -0,0 +1,13 @@
1
+ h1. Gridion
2
+
3
+ License: MIT-LICENSE
4
+
5
+ h2. Features
6
+
7
+ Use @grid@ helper to render table with various options.
8
+
9
+ <pre>
10
+ grid(@patents, :object_class=>Patent, :columns=>%w(coverage_countries_serial patent_number_serial title grant_date status availability_serial), :actions=>nil, :paginate=>false)
11
+ </pre>
12
+
13
+
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_dir = 'rdoc'
17
17
  rdoc.title = 'Gridion'
18
18
  rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
19
+ rdoc.rdoc_files.include('README.textile')
20
20
  rdoc.rdoc_files.include('lib/**/*.rb')
21
21
  end
22
22
 
@@ -57,7 +57,8 @@ 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
+ options[:paginate]=true unless options.has_key?(:paginate)
61
+
61
62
 
62
63
  if collection.blank?
63
64
  if options[:render_empty_grid]
@@ -73,6 +74,7 @@ module Gridion
73
74
 
74
75
  if collection.respond_to?(:current_page) && defined?(Kaminari) # we assume only Kaminari is supported
75
76
  grid_binding.paginator.call(collection.first.class, collection, options) if collection.num_pages > 1 && options[:paginate]==true
77
+
76
78
  end
77
79
 
78
80
 
@@ -1,3 +1,3 @@
1
1
  module Gridion
2
- VERSION = "0.0.21"
2
+ VERSION = "0.0.22"
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.21
4
+ version: 0.0.22
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: &70361116067800 !ruby/object:Gem::Requirement
16
+ requirement: &70172132954060 !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: *70361116067800
24
+ version_requirements: *70172132954060
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: kaminari
27
- requirement: &70361116066480 !ruby/object:Gem::Requirement
27
+ requirement: &70172132952540 !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: *70361116066480
35
+ version_requirements: *70172132952540
36
36
  description: Simple grid helper for rails
37
37
  email:
38
38
  - william@tofugear.com
@@ -46,7 +46,7 @@ files:
46
46
  - lib/tasks/gridion_tasks.rake
47
47
  - MIT-LICENSE
48
48
  - Rakefile
49
- - README.rdoc
49
+ - README.textile
50
50
  - test/dummy/app/assets/javascripts/application.js
51
51
  - test/dummy/app/assets/stylesheets/application.css
52
52
  - test/dummy/app/controllers/application_controller.rb
@@ -90,7 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
90
  version: '0'
91
91
  segments:
92
92
  - 0
93
- hash: 3132415821333992077
93
+ hash: 2851179047300669129
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: 3132415821333992077
102
+ hash: 2851179047300669129
103
103
  requirements: []
104
104
  rubyforge_project:
105
105
  rubygems_version: 1.8.10
data/README.rdoc DELETED
@@ -1,6 +0,0 @@
1
- = Gridion
2
-
3
- License: MIT-LICENSE
4
-
5
- = Features
6
-