gridion 0.0.5 → 0.0.6
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/lib/gridion/grid_helper.rb +9 -4
- data/lib/gridion/version.rb +1 -1
- metadata +7 -7
data/lib/gridion/grid_helper.rb
CHANGED
@@ -38,8 +38,10 @@ module Gridion
|
|
38
38
|
|
39
39
|
# we need to initialize the procs in the helper context otherwise other helpers inside the proc object (e.g. link_to) wont work
|
40
40
|
|
41
|
+
|
42
|
+
options={:actions=>[:edit, :delete]}.merge(options).with_indifferent_access
|
43
|
+
|
41
44
|
|
42
|
-
options=options.with_indifferent_access
|
43
45
|
|
44
46
|
unless collection.blank?
|
45
47
|
grid_binding.header.call(collection.first.class, collection, options)
|
@@ -79,15 +81,18 @@ module Gridion
|
|
79
81
|
[object]
|
80
82
|
end
|
81
83
|
puts "options: #{options.inspect}"
|
82
|
-
puts "object_list: #{object_list.inspect}"
|
83
84
|
|
84
85
|
result =""
|
85
86
|
result << "<tr id=\"#{klass.name}_#{object.id}\" class=\"#{options[:row_is_even] ? 'even' : 'odd'}\">"
|
86
87
|
(options[:columns]||klass.column_names).each do |col|
|
87
88
|
result << "<td class=\"#{col}\">#{object.send(col)}</td>"
|
88
89
|
end
|
89
|
-
|
90
|
-
|
90
|
+
actions=options[:actions]
|
91
|
+
|
92
|
+
result << "<td class=\"actions\">"
|
93
|
+
result << "#{link_to 'Show', object_list, :class=>%w{action_link show}}" if actions.include?(:show)
|
94
|
+
result << "#{link_to 'Edit', [:edit]+ object_list, :class=>%w{action_link edit}}" if actions.include?(:edit)
|
95
|
+
result << "#{link_to 'Delete', object_list, :class=>%w{action_link delete}, :method=>:delete, :confirm=>'Are you sure?'}" if actions.include?(:delete)
|
91
96
|
result << "</td>"
|
92
97
|
result << "</tr>"
|
93
98
|
safe_concat(result)
|
data/lib/gridion/version.rb
CHANGED
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.
|
4
|
+
version: 0.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-09-26 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sqlite3
|
16
|
-
requirement: &
|
16
|
+
requirement: &70183356945680 !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: *
|
24
|
+
version_requirements: *70183356945680
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: kaminari
|
27
|
-
requirement: &
|
27
|
+
requirement: &70183356945180 !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: *
|
35
|
+
version_requirements: *70183356945180
|
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:
|
93
|
+
hash: -104628255911398425
|
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:
|
102
|
+
hash: -104628255911398425
|
103
103
|
requirements: []
|
104
104
|
rubyforge_project:
|
105
105
|
rubygems_version: 1.8.10
|