-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata_table.gemspec
41 lines (40 loc) · 1.35 KB
/
data_table.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Gem::Specification.new do |s|
s.name = "data_table"
s.version = "0.1.0"
s.date = "2008-08-04"
s.summary = "Sorting, filtering, and pagination. Together at last."
s.email = "[email protected]"
s.homepage = "http://github.com/bigfleet/data_table"
s.description = "data_table allows for integration of sorting, filtering, and pagination at the model, view, and controller layers."
s.has_rdoc = false
s.authors = ["Jim Van Fleet"]
s.files = ["init.rb",
"lib/data_table/filter.rb",
"lib/data_table/filter_element.rb",
"lib/data_table/filter_selection.rb",
"lib/data_table/filter_view_helpers.rb",
"lib/data_table/link_renderer.rb",
"lib/data_table/pagination_support.rb",
"lib/data_table/sort.rb",
"lib/data_table/sort_option.rb",
"lib/data_table/sort_view_helpers.rb",
"lib/data_table/view_helpers.rb",
"lib/data_table/wrapper.rb",
"lib/data_table.rb",
"MIT-LICENSE",
"Rakefile",
"README.textile",
"spec/data_table_spec.rb",
"spec/filter_element_spec.rb",
"spec/filter_selection_spec.rb",
"spec/filter_spec.rb",
"spec/filter_view_helpers_spec.rb",
"spec/pagination_support_spec.rb",
"spec/requirements_spec.rb",
"spec/sort_option_spec.rb",
"spec/sort_spec.rb",
"spec/sort_view_helpers_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb"]
s.add_dependency("will_paginate", ["> 2.2.0"])
end