grapple 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +0 -0
  3. data/README.md +0 -0
  4. data/Rakefile +0 -0
  5. data/app/assets/images/grapple/arrow-down.png +0 -0
  6. data/app/assets/images/grapple/arrow-up.png +0 -0
  7. data/app/assets/images/grapple/loading-bar.gif +0 -0
  8. data/app/assets/images/grapple/minus.png +0 -0
  9. data/app/assets/images/grapple/plus.png +0 -0
  10. data/app/assets/javascripts/grapple-history.js +0 -0
  11. data/app/assets/javascripts/grapple-jquery.js +0 -0
  12. data/app/assets/javascripts/grapple.js +0 -0
  13. data/app/assets/stylesheets/grapple.css +0 -0
  14. data/config/locales/en.yml +0 -0
  15. data/lib/grapple/ajax_data_grid_builder.rb +0 -0
  16. data/lib/grapple/base_table_builder.rb +0 -0
  17. data/lib/grapple/components/actions.rb +0 -0
  18. data/lib/grapple/components/base_component.rb +0 -0
  19. data/lib/grapple/components/column_headings.rb +4 -0
  20. data/lib/grapple/components/html_body.rb +0 -0
  21. data/lib/grapple/components/html_caption.rb +0 -0
  22. data/lib/grapple/components/html_colgroup.rb +0 -0
  23. data/lib/grapple/components/html_component.rb +0 -0
  24. data/lib/grapple/components/html_footer.rb +0 -0
  25. data/lib/grapple/components/html_header.rb +0 -0
  26. data/lib/grapple/components/html_row.rb +0 -0
  27. data/lib/grapple/components/search_form.rb +0 -0
  28. data/lib/grapple/components/search_query_field.rb +0 -0
  29. data/lib/grapple/components/search_submit.rb +0 -0
  30. data/lib/grapple/components/toolbar.rb +0 -0
  31. data/lib/grapple/components/will_paginate_infobar.rb +0 -0
  32. data/lib/grapple/components/will_paginate_pagination.rb +0 -0
  33. data/lib/grapple/components.rb +2 -0
  34. data/lib/grapple/data_grid_builder.rb +0 -0
  35. data/lib/grapple/engine.rb +0 -0
  36. data/lib/grapple/helpers/table_helper.rb +0 -0
  37. data/lib/grapple/helpers.rb +0 -0
  38. data/lib/grapple/html_table_builder.rb +0 -0
  39. data/lib/grapple.rb +0 -0
  40. data/spec/builders/ajax_data_grid_builder_spec.rb +0 -0
  41. data/spec/builders/base_table_builder_spec.rb +0 -0
  42. data/spec/builders/data_grid_builder_spec.rb +0 -0
  43. data/spec/builders/html_table_builder_spec.rb +0 -0
  44. data/spec/components/actions_spec.rb +0 -0
  45. data/spec/components/column_headings_spec.rb +0 -0
  46. data/spec/components/html_body_spec.rb +0 -0
  47. data/spec/components/html_colgroup_spec.rb +0 -0
  48. data/spec/components/html_footer_spec.rb +0 -0
  49. data/spec/components/search_form_spec.rb +0 -0
  50. data/spec/components/toolbar_spec.rb +0 -0
  51. data/spec/components/will_paginate_spec.rb +0 -0
  52. data/spec/fixtures/schema.rb +0 -0
  53. data/spec/fixtures/users.yml +0 -0
  54. data/spec/spec_helper.rb +0 -0
  55. data/spec/support/test_environment.rb +0 -0
  56. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fba23ec15fa15e3af330adb21135aa01d7fc086b
4
- data.tar.gz: a1400867677c6d2aaf42f960be45cc3a43290882
3
+ metadata.gz: 3b8b223182179f78a4769730995aca3da8d06c40
4
+ data.tar.gz: 5f7a579be08f3bde19acd2c3aa467f5ea2d2ffb6
5
5
  SHA512:
6
- metadata.gz: c34626569e41eb3064454c449b39c6bf789addcf65e67891b2adade034e62666dbadc8ef5aec741cbd86466a2f30a0ce148b87e3f2aebc2ccb75756b0e23683b
7
- data.tar.gz: c7209519dd827357fa63d1d582ab050cfbd1b83345dbc24ea994c591f969b8d16fd0d39735b8328acbf4dd809e10cf1d661ada5d44bf34672d26125501e2851e
6
+ metadata.gz: 243715b28b9f5ec15b10fb07fd58b63dcef9aa163b64db954559feb2d5472fdc556af4f53ded4d180f9b53a27f525714c3ad67395bc155953e3247a0d965f9ac
7
+ data.tar.gz: e00d0910ef11f3287249a25437429557c546a579f04ea367746ffd384928625aa5c0982794cfdd4c22d38ea164a06c7d8dc0d57db6d106cec136f5188003d22e
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -33,6 +33,10 @@ module Grapple
33
33
  else
34
34
  content = label
35
35
  end
36
+
37
+ if column[:class]
38
+ column[:class].split(" ").each{|c| cell_classes << c }
39
+ end
36
40
 
37
41
  cell_classes = ' class="' + cell_classes.join(' ') + '"'
38
42
  title = column[:title] ? " title=\"#{h(column[:title])}\"" : ''
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -19,6 +19,8 @@ module Grapple
19
19
  autoload :SearchSubmit
20
20
  autoload :WillPaginatePagination
21
21
  autoload :WillPaginateInfobar
22
+ autoload :KaminariPagination
23
+ autoload :KaminariInfobar
22
24
 
23
25
  end
24
26
  end
File without changes
File without changes
File without changes
File without changes
File without changes
data/lib/grapple.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/spec/spec_helper.rb CHANGED
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grapple
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edward Potocko
@@ -207,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
207
  version: '0'
208
208
  requirements: []
209
209
  rubyforge_project:
210
- rubygems_version: 2.5.1
210
+ rubygems_version: 2.4.8
211
211
  signing_key:
212
212
  specification_version: 4
213
213
  summary: Customizable data grid for Rails