wice_grid_mongoid 6.0.10 → 6.1.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 6.0.10
1
+ 6.1.0
@@ -2,11 +2,12 @@ module Wice
2
2
  class FilterConditionsGenerator #:nodoc:
3
3
 
4
4
  cattr_accessor :handled_type
5
+ attr_reader :criteria
5
6
  @@handled_type = HashWithIndifferentAccess.new
6
7
 
7
- def initialize(field, criteria) #:nodoc:
8
+ def initialize(field, klass) #:nodoc:
8
9
  @field = field
9
- @criteria = criteria
10
+ @criteria = Mongoid::Criteria.new(klass)
10
11
  end
11
12
 
12
13
  def generate_conditions(opts)
@@ -14,10 +15,9 @@ module Wice
14
15
  end
15
16
  end
16
17
 
17
- class FilterConditionsGeneratorCustomFilter < FilterConditionsGenerator #:nodoc:
18
+ # class FilterConditionsGeneratorCustomFilter < FilterConditionsGenerator #:nodoc:
18
19
 
19
- def generate_conditions(opts) #:nodoc:
20
- return false # should be implemented
20
+ # def generate_conditions(opts) #:nodoc:
21
21
  # if opts.empty?
22
22
  # Wice.log "empty parameters for the grid custom filter"
23
23
  # return false
@@ -49,8 +49,9 @@ module Wice
49
49
  # [" #{@field.alias_or_table_name(table_alias)}.#{@field.name} = ?", opts]
50
50
  # end
51
51
  # end
52
- end
53
- end
52
+ # end
53
+
54
+ # end
54
55
 
55
56
  class FilterConditionsGeneratorBoolean < FilterConditionsGenerator #:nodoc:
56
57
  @@handled_type[Boolean] = self
@@ -60,7 +61,7 @@ module Wice
60
61
  Wice.log "invalid parameters for the grid boolean filter - must be an one item array: #{opts.inspect}"
61
62
  return false
62
63
  end
63
- @criteria.where(opts[0] == 't' ? {@field.name => true} : {@field.name.to_sym.ne => true})
64
+ @criteria = @criteria.where(opts[0] == 't' ? {@field.name => true} : {@field.name.to_sym.ne => true})
64
65
  return true
65
66
  end
66
67
  end
@@ -90,7 +91,7 @@ module Wice
90
91
  string_fragment = string_fragment.gsub( /([\|\(\)\[\]\{\}\+\^\\\$\*\?\.])/ ) { |s| '\\' + s}
91
92
  end
92
93
 
93
- @criteria.where(@field.name.to_s => /#{string_fragment}/i)
94
+ @criteria = @criteria.where(@field.name.to_s => /#{string_fragment}/i)
94
95
  return true
95
96
  end
96
97
 
@@ -114,8 +115,8 @@ module Wice
114
115
  end
115
116
  from = parse_number(opts[:fr])
116
117
  to = parse_number(opts[:to])
117
- @criteria.where(@field.name.to_sym.gte => from)
118
- @criteria.where(@field.name.to_sym.lte => to)
118
+ @criteria = @criteria.where(@field.name.to_sym.gte => from)
119
+ @criteria = @criteria.where(@field.name.to_sym.lte => to)
119
120
 
120
121
  return true
121
122
  end
@@ -139,8 +140,8 @@ module Wice
139
140
  @@handled_type[Time] = self
140
141
 
141
142
  def generate_conditions(opts) #:nodoc:
142
- @criteria.where(@field.name.to_sym.gte => opts[:fr]) if opts[:fr]
143
- @criteria.where(@field.name.to_sym.lte => opts[:to]) if opts[:to]
143
+ @criteria = @criteria.where(@field.name.to_sym.gte => opts[:fr]) if opts[:fr]
144
+ @criteria = @criteria.where(@field.name.to_sym.lte => opts[:to]) if opts[:to]
144
145
  opts[:fr] || opts[:to]
145
146
  end
146
147
  end
data/lib/mongoid_field.rb CHANGED
@@ -3,37 +3,22 @@ require 'filter_conditions_generators'
3
3
  module Wice
4
4
  # to be mixed in into Mongoid::Field
5
5
  module MongoidField
6
- def wice_add_filter_criteria(all_filter_params, criteria, custom_filter_active) #:nodoc:
6
+ def wice_add_filter_criteria(all_filter_params, klass, custom_filter_active) #:nodoc:
7
7
  request_params = all_filter_params ? all_filter_params[name] : nil
8
- return nil unless request_params
8
+ return [nil,nil] unless request_params
9
9
 
10
10
  # Preprocess incoming parameters for datetime, if what's coming in is
11
11
  # a datetime (with custom_filter it can be anything else, and not
12
12
  # the datetime hash {"fr" => ..., "to" => ...})
13
- if (self.type == Time)
14
- if request_params.is_a?(Hash)
15
- ["fr", "to"].each do |sym|
16
- if request_params[sym]
17
- if request_params[sym].is_a?(String)
18
- request_params[sym] = Time.parse(Wice::Defaults::DATETIME_PARSER.call(request_params[sym]).to_s)
19
- elsif request_params[sym].is_a?(Hash)
20
- request_params[sym] = Time.parse(::Wice::GridTools.params_2_datetime(request_params[sym]).to_s)
21
- end
13
+ if (self.type == Time) && request_params.is_a?(Hash)
14
+ ["fr", "to"].each do |sym|
15
+ if request_params[sym]
16
+ if request_params[sym].is_a?(String)
17
+ request_params[sym] = Time.parse(Wice::Defaults::DATETIME_PARSER.call(request_params[sym]).to_s)
18
+ elsif request_params[sym].is_a?(Hash)
19
+ request_params[sym] = Time.parse(::Wice::GridTools.params_2_datetime(request_params[sym]).to_s)
22
20
  end
23
21
  end
24
- elsif request_params.is_a?(Array) && request_params.size == 1
25
- ago = request_params.first
26
- today = Time.now.beginning_of_day
27
- agos = {'1 day' => today - 24.hours,
28
- '1 week' => today - 7.days,
29
- '1 month' => today - 1.month,
30
- 'ever' => Time.parse("2000-01-01")}
31
- if agos.keys.include?(ago)
32
- request_params = {}
33
- #regular filtering viea 'fr', 'to' field
34
- request_params[:fr] = agos[ago]
35
- custom_filter_active = nil
36
- end
37
22
  end
38
23
  end
39
24
 
@@ -56,9 +41,11 @@ module Wice
56
41
  processor_klass = ::Wice::FilterConditionsGenerator.handled_type[self.type] unless processor_klass
57
42
  unless processor_klass
58
43
  Wice.log("No processor for database type #{self.type}!!!")
59
- return nil
44
+ return [nil,nil]
60
45
  end
61
- processor_klass.new(self, criteria).generate_conditions(request_params)
46
+ processor = processor_klass.new(self, klass)
47
+ added = processor.generate_conditions(request_params)
48
+ [added, processor.criteria]
62
49
  end
63
50
 
64
51
  end
data/lib/wice_grid.rb CHANGED
@@ -136,7 +136,7 @@ module Wice
136
136
 
137
137
  def add_criteria(extra)
138
138
  @extra_filter = extra
139
- @criteria.merge(extra)
139
+ @criteria = @criteria.merge(extra)
140
140
  end
141
141
 
142
142
  def has_any_filter_criteria?
@@ -197,7 +197,9 @@ module Wice
197
197
  field = @klass.fields[field_name]
198
198
  raise WiceGridArgumentError.new("Model #{@klass.name} does not have field '#{field_name}'.! ") unless field
199
199
 
200
- criteria_added = field.wice_add_filter_criteria(@status[:f], @criteria, custom_filter_active)
200
+ criteria_added, criteria = field.wice_add_filter_criteria(@status[:f], @klass, custom_filter_active)
201
+ @criteria = @criteria.merge(criteria) if criteria
202
+
201
203
  @status[:f].delete(field_name) if @status[:f] && !criteria_added
202
204
 
203
205
  @has_any_filter_criteria ||= criteria_added
@@ -223,7 +225,7 @@ module Wice
223
225
 
224
226
  if !opts[:skip_ordering] && @status[:order]
225
227
  order_by = @status[:order].to_sym.send( @status[:order_direction].to_sym )
226
- @criteria.order_by(order_by)
228
+ @criteria = @criteria.order_by(order_by)
227
229
  end
228
230
 
229
231
  @criteria.limit(@status[:per_page].to_i)
@@ -1,124 +1,121 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{wice_grid_mongoid}
8
- s.version = "6.0.10"
8
+ s.version = "6.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Yuri Leikind", "Aleksandr Furmanov"]
12
- s.date = %q{2011-01-28}
12
+ s.date = %q{2011-05-11}
13
13
  s.description = %q{A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters }
14
14
  s.email = %q{aleksandr.furmanov@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README.rdoc"
17
17
  ]
18
18
  s.files = [
19
- ".gitignore",
20
- "CHANGELOG",
21
- "Gemfile",
22
- "Gemfile.lock",
23
- "MIT-LICENSE",
24
- "README.rdoc",
25
- "Rakefile",
26
- "SAVED_QUERIES_HOWTO.rdoc",
27
- "VERSION",
28
- "lib/filter_conditions_generators.rb",
29
- "lib/generators/wice_grid/templates/calendarview.css",
30
- "lib/generators/wice_grid/templates/calendarview.js",
31
- "lib/generators/wice_grid/templates/icons/arrow_down.gif",
32
- "lib/generators/wice_grid/templates/icons/arrow_up.gif",
33
- "lib/generators/wice_grid/templates/icons/calendar_view_month.png",
34
- "lib/generators/wice_grid/templates/icons/delete.png",
35
- "lib/generators/wice_grid/templates/icons/expand.png",
36
- "lib/generators/wice_grid/templates/icons/page_white_excel.png",
37
- "lib/generators/wice_grid/templates/icons/page_white_find.png",
38
- "lib/generators/wice_grid/templates/icons/table.png",
39
- "lib/generators/wice_grid/templates/icons/table_refresh.png",
40
- "lib/generators/wice_grid/templates/icons/tick_all.png",
41
- "lib/generators/wice_grid/templates/icons/untick_all.png",
42
- "lib/generators/wice_grid/templates/wice_grid.css",
43
- "lib/generators/wice_grid/templates/wice_grid.yml",
44
- "lib/generators/wice_grid/templates/wice_grid_config.rb",
45
- "lib/generators/wice_grid/templates/wice_grid_jquery.js",
46
- "lib/generators/wice_grid/templates/wice_grid_prototype.js",
47
- "lib/generators/wice_grid/wice_grid_assets_jquery_generator.rb",
48
- "lib/generators/wice_grid/wice_grid_assets_prototype_generator.rb",
49
- "lib/grid_output_buffer.rb",
50
- "lib/grid_renderer.rb",
51
- "lib/helpers/js_calendar_helpers.rb",
52
- "lib/helpers/wice_grid_misc_view_helpers.rb",
53
- "lib/helpers/wice_grid_serialized_queries_view_helpers.rb",
54
- "lib/helpers/wice_grid_view_helpers.rb",
55
- "lib/js_adaptors/jquery_adaptor.rb",
56
- "lib/js_adaptors/js_adaptor.rb",
57
- "lib/js_adaptors/prototype_adaptor.rb",
58
- "lib/mongoid_field.rb",
59
- "lib/tasks/wice_grid_tasks.rake",
60
- "lib/view_columns.rb",
61
- "lib/views/create.rjs",
62
- "lib/views/delete.rjs",
63
- "lib/wice_grid.rb",
64
- "lib/wice_grid_controller.rb",
65
- "lib/wice_grid_core_ext.rb",
66
- "lib/wice_grid_misc.rb",
67
- "lib/wice_grid_serialized_queries_controller.rb",
68
- "lib/wice_grid_serialized_query.rb",
69
- "lib/wice_grid_spreadsheet.rb",
70
- "mongoid_wice_grid.gemspec",
71
- "test/.gitignore",
72
- "test/blueprint.rb",
73
- "test/database.yml",
74
- "test/public/javascripts/jquery-1.4.2.min.js",
75
- "test/public/javascripts/wice_grid.js",
76
- "test/rails_mongoid_test.rb",
77
- "test/rails_test_app.rb",
78
- "test/require_gems.rb",
79
- "test/schema.rb",
80
- "test/spec_helper.rb",
81
- "test/test_helper.rb",
82
- "test/views/projects_and_people_grid.html.erb",
83
- "test/views/projects_and_people_grid_invalid.html.erb",
84
- "test/views/simple_projects_grid.html.erb",
85
- "test/wice_grid_core_ext_test.rb",
86
- "test/wice_grid_functional_test.rb",
87
- "test/wice_grid_initializer.rb",
88
- "test/wice_grid_misc_test.rb",
89
- "test/wice_grid_test.rb",
90
- "test/wice_grid_view_helper_test.rb",
91
- "wice_grid_mongoid.gemspec"
19
+ "CHANGELOG",
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "MIT-LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "SAVED_QUERIES_HOWTO.rdoc",
26
+ "VERSION",
27
+ "lib/filter_conditions_generators.rb",
28
+ "lib/generators/wice_grid/templates/calendarview.css",
29
+ "lib/generators/wice_grid/templates/calendarview.js",
30
+ "lib/generators/wice_grid/templates/icons/arrow_down.gif",
31
+ "lib/generators/wice_grid/templates/icons/arrow_up.gif",
32
+ "lib/generators/wice_grid/templates/icons/calendar_view_month.png",
33
+ "lib/generators/wice_grid/templates/icons/delete.png",
34
+ "lib/generators/wice_grid/templates/icons/expand.png",
35
+ "lib/generators/wice_grid/templates/icons/page_white_excel.png",
36
+ "lib/generators/wice_grid/templates/icons/page_white_find.png",
37
+ "lib/generators/wice_grid/templates/icons/table.png",
38
+ "lib/generators/wice_grid/templates/icons/table_refresh.png",
39
+ "lib/generators/wice_grid/templates/icons/tick_all.png",
40
+ "lib/generators/wice_grid/templates/icons/untick_all.png",
41
+ "lib/generators/wice_grid/templates/wice_grid.css",
42
+ "lib/generators/wice_grid/templates/wice_grid.yml",
43
+ "lib/generators/wice_grid/templates/wice_grid_config.rb",
44
+ "lib/generators/wice_grid/templates/wice_grid_jquery.js",
45
+ "lib/generators/wice_grid/templates/wice_grid_prototype.js",
46
+ "lib/generators/wice_grid/wice_grid_assets_jquery_generator.rb",
47
+ "lib/generators/wice_grid/wice_grid_assets_prototype_generator.rb",
48
+ "lib/grid_output_buffer.rb",
49
+ "lib/grid_renderer.rb",
50
+ "lib/helpers/js_calendar_helpers.rb",
51
+ "lib/helpers/wice_grid_misc_view_helpers.rb",
52
+ "lib/helpers/wice_grid_serialized_queries_view_helpers.rb",
53
+ "lib/helpers/wice_grid_view_helpers.rb",
54
+ "lib/js_adaptors/jquery_adaptor.rb",
55
+ "lib/js_adaptors/js_adaptor.rb",
56
+ "lib/js_adaptors/prototype_adaptor.rb",
57
+ "lib/mongoid_field.rb",
58
+ "lib/tasks/wice_grid_tasks.rake",
59
+ "lib/view_columns.rb",
60
+ "lib/views/create.rjs",
61
+ "lib/views/delete.rjs",
62
+ "lib/wice_grid.rb",
63
+ "lib/wice_grid_controller.rb",
64
+ "lib/wice_grid_core_ext.rb",
65
+ "lib/wice_grid_misc.rb",
66
+ "lib/wice_grid_serialized_queries_controller.rb",
67
+ "lib/wice_grid_serialized_query.rb",
68
+ "lib/wice_grid_spreadsheet.rb",
69
+ "mongoid_wice_grid.gemspec",
70
+ "test/.gitignore",
71
+ "test/blueprint.rb",
72
+ "test/database.yml",
73
+ "test/public/javascripts/jquery-1.4.2.min.js",
74
+ "test/public/javascripts/wice_grid.js",
75
+ "test/rails_mongoid_test.rb",
76
+ "test/rails_test_app.rb",
77
+ "test/require_gems.rb",
78
+ "test/schema.rb",
79
+ "test/spec_helper.rb",
80
+ "test/test_helper.rb",
81
+ "test/views/projects_and_people_grid.html.erb",
82
+ "test/views/projects_and_people_grid_invalid.html.erb",
83
+ "test/views/simple_projects_grid.html.erb",
84
+ "test/wice_grid_core_ext_test.rb",
85
+ "test/wice_grid_functional_test.rb",
86
+ "test/wice_grid_initializer.rb",
87
+ "test/wice_grid_misc_test.rb",
88
+ "test/wice_grid_test.rb",
89
+ "test/wice_grid_view_helper_test.rb",
90
+ "wice_grid_mongoid.gemspec"
92
91
  ]
93
92
  s.homepage = %q{http://github.com/afurmanov/wice_grid}
94
- s.rdoc_options = ["--charset=UTF-8"]
95
93
  s.require_paths = ["lib"]
96
- s.rubygems_version = %q{1.3.7}
94
+ s.rubygems_version = %q{1.5.0}
97
95
  s.summary = %q{Rails Grid Plugin}
98
- s.test_files = [
99
- "test/blueprint.rb",
100
- "test/rails_mongoid_test.rb",
101
- "test/rails_test_app.rb",
102
- "test/require_gems.rb",
103
- "test/schema.rb",
104
- "test/spec_helper.rb",
105
- "test/test_helper.rb",
106
- "test/wice_grid_core_ext_test.rb",
107
- "test/wice_grid_functional_test.rb",
108
- "test/wice_grid_initializer.rb",
109
- "test/wice_grid_misc_test.rb",
110
- "test/wice_grid_test.rb",
111
- "test/wice_grid_view_helper_test.rb"
112
- ]
113
96
 
114
97
  if s.respond_to? :specification_version then
115
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
116
98
  s.specification_version = 3
117
99
 
118
100
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
101
+ s.add_runtime_dependency(%q<rails>, ["= 3.0.1"])
102
+ s.add_runtime_dependency(%q<bson_ext>, ["= 1.0.4"])
103
+ s.add_runtime_dependency(%q<mongo>, ["= 1.0.7"])
104
+ s.add_runtime_dependency(%q<mongo_ext>, [">= 0"])
105
+ s.add_runtime_dependency(%q<mongoid>, ["= 2.0.0.beta.17"])
119
106
  else
107
+ s.add_dependency(%q<rails>, ["= 3.0.1"])
108
+ s.add_dependency(%q<bson_ext>, ["= 1.0.4"])
109
+ s.add_dependency(%q<mongo>, ["= 1.0.7"])
110
+ s.add_dependency(%q<mongo_ext>, [">= 0"])
111
+ s.add_dependency(%q<mongoid>, ["= 2.0.0.beta.17"])
120
112
  end
121
113
  else
114
+ s.add_dependency(%q<rails>, ["= 3.0.1"])
115
+ s.add_dependency(%q<bson_ext>, ["= 1.0.4"])
116
+ s.add_dependency(%q<mongo>, ["= 1.0.7"])
117
+ s.add_dependency(%q<mongo_ext>, [">= 0"])
118
+ s.add_dependency(%q<mongoid>, ["= 2.0.0.beta.17"])
122
119
  end
123
120
  end
124
121
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wice_grid_mongoid
3
3
  version: !ruby/object:Gem::Version
4
- hash: 59
5
- prerelease: false
4
+ hash: 43
5
+ prerelease:
6
6
  segments:
7
7
  - 6
8
+ - 1
8
9
  - 0
9
- - 10
10
- version: 6.0.10
10
+ version: 6.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Yuri Leikind
@@ -16,10 +16,89 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-01-28 00:00:00 -08:00
19
+ date: 2011-05-11 00:00:00 -07:00
20
20
  default_executable:
21
- dependencies: []
22
-
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: rails
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - "="
28
+ - !ruby/object:Gem::Version
29
+ hash: 5
30
+ segments:
31
+ - 3
32
+ - 0
33
+ - 1
34
+ version: 3.0.1
35
+ prerelease: false
36
+ type: :runtime
37
+ requirement: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: bson_ext
40
+ version_requirements: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - "="
44
+ - !ruby/object:Gem::Version
45
+ hash: 31
46
+ segments:
47
+ - 1
48
+ - 0
49
+ - 4
50
+ version: 1.0.4
51
+ prerelease: false
52
+ type: :runtime
53
+ requirement: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: mongo
56
+ version_requirements: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - "="
60
+ - !ruby/object:Gem::Version
61
+ hash: 25
62
+ segments:
63
+ - 1
64
+ - 0
65
+ - 7
66
+ version: 1.0.7
67
+ prerelease: false
68
+ type: :runtime
69
+ requirement: *id003
70
+ - !ruby/object:Gem::Dependency
71
+ name: mongo_ext
72
+ version_requirements: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ hash: 3
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ prerelease: false
82
+ type: :runtime
83
+ requirement: *id004
84
+ - !ruby/object:Gem::Dependency
85
+ name: mongoid
86
+ version_requirements: &id005 !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - "="
90
+ - !ruby/object:Gem::Version
91
+ hash: 62196417
92
+ segments:
93
+ - 2
94
+ - 0
95
+ - 0
96
+ - beta
97
+ - 17
98
+ version: 2.0.0.beta.17
99
+ prerelease: false
100
+ type: :runtime
101
+ requirement: *id005
23
102
  description: "A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters "
24
103
  email: aleksandr.furmanov@gmail.com
25
104
  executables: []
@@ -29,7 +108,6 @@ extensions: []
29
108
  extra_rdoc_files:
30
109
  - README.rdoc
31
110
  files:
32
- - .gitignore
33
111
  - CHANGELOG
34
112
  - Gemfile
35
113
  - Gemfile.lock
@@ -107,8 +185,8 @@ homepage: http://github.com/afurmanov/wice_grid
107
185
  licenses: []
108
186
 
109
187
  post_install_message:
110
- rdoc_options:
111
- - --charset=UTF-8
188
+ rdoc_options: []
189
+
112
190
  require_paths:
113
191
  - lib
114
192
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -132,21 +210,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
210
  requirements: []
133
211
 
134
212
  rubyforge_project:
135
- rubygems_version: 1.3.7
213
+ rubygems_version: 1.5.0
136
214
  signing_key:
137
215
  specification_version: 3
138
216
  summary: Rails Grid Plugin
139
- test_files:
140
- - test/blueprint.rb
141
- - test/rails_mongoid_test.rb
142
- - test/rails_test_app.rb
143
- - test/require_gems.rb
144
- - test/schema.rb
145
- - test/spec_helper.rb
146
- - test/test_helper.rb
147
- - test/wice_grid_core_ext_test.rb
148
- - test/wice_grid_functional_test.rb
149
- - test/wice_grid_initializer.rb
150
- - test/wice_grid_misc_test.rb
151
- - test/wice_grid_test.rb
152
- - test/wice_grid_view_helper_test.rb
217
+ test_files: []
218
+
data/.gitignore DELETED
@@ -1,11 +0,0 @@
1
- .DS_Store
2
- cand
3
- GPATH
4
- GRTAGS
5
- GSYMS
6
- GTAGS
7
- doc/
8
- log/
9
- pkg/
10
- ./test/public/capybara-*
11
-