pluginaweek-table_helper 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pluginaweek-table_helper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Pfeifer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-08 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Adds a helper method for generating HTML tables from collections in Rails
17
+ email: aaron@pluginaweek.org
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - lib/table_helper.rb
26
+ - lib/table_helper
27
+ - lib/table_helper/header.rb
28
+ - lib/table_helper/body_row.rb
29
+ - lib/table_helper/body.rb
30
+ - lib/table_helper/cell.rb
31
+ - lib/table_helper/footer.rb
32
+ - lib/table_helper/html_element.rb
33
+ - lib/table_helper/row.rb
34
+ - lib/table_helper/collection_table.rb
35
+ - test/unit
36
+ - test/unit/row_builder_test.rb
37
+ - test/unit/body_row_test.rb
38
+ - test/unit/html_element_test.rb
39
+ - test/unit/collection_table_test.rb
40
+ - test/unit/header_test.rb
41
+ - test/unit/row_test.rb
42
+ - test/unit/body_test.rb
43
+ - test/unit/cell_test.rb
44
+ - test/unit/footer_test.rb
45
+ - test/helpers
46
+ - test/helpers/table_helper_test.rb
47
+ - test/app_root
48
+ - test/app_root/app
49
+ - test/app_root/app/models
50
+ - test/app_root/app/models/person.rb
51
+ - test/app_root/db
52
+ - test/app_root/db/migrate
53
+ - test/app_root/db/migrate/001_create_people.rb
54
+ - test/test_helper.rb
55
+ - CHANGELOG.rdoc
56
+ - init.rb
57
+ - LICENSE
58
+ - Rakefile
59
+ - README.rdoc
60
+ has_rdoc: true
61
+ homepage: http://www.pluginaweek.org
62
+ post_install_message:
63
+ rdoc_options: []
64
+
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "0"
72
+ version:
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: "0"
78
+ version:
79
+ requirements: []
80
+
81
+ rubyforge_project: pluginaweek
82
+ rubygems_version: 1.2.0
83
+ signing_key:
84
+ specification_version: 2
85
+ summary: Adds a helper method for generating HTML tables from collections in Rails
86
+ test_files:
87
+ - test/unit/row_builder_test.rb
88
+ - test/unit/body_row_test.rb
89
+ - test/unit/html_element_test.rb
90
+ - test/unit/collection_table_test.rb
91
+ - test/unit/header_test.rb
92
+ - test/unit/row_test.rb
93
+ - test/unit/body_test.rb
94
+ - test/unit/cell_test.rb
95
+ - test/unit/footer_test.rb
96
+ - test/helpers/table_helper_test.rb