widget_list 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -1,6 +1,5 @@
1
- widget_list
2
- ====================
3
1
  # WidgetList
2
+ ====================
4
3
 
5
4
  ## Introduction
6
5
 
@@ -11,10 +10,16 @@ I feel like there are not very good lists in ruby/rails and/or dont care to find
11
10
  In rails you have will_paginate and other ones like it using the ActiveRecord approach, but widget_list adds some awesome treats to standard boring pagers:
12
11
 
13
12
  * A sleek ajaxified list
14
- * Full sorting
13
+ * Supports *ALL Databases (Haven't tested everything yet though, I am sure there are tweaks for each DB)
14
+ * Full sorting ASC/DESC of list via ajax
15
+ * Easily add row level buttons for each row
16
+ * Custom tags to pass to be replaced by actual data from each column/value
15
17
  * Search bar/Ajax searching
16
- * Column mappings
17
- * Buttons for each row and areas on the bottom of the grid where you can add "Action buttons" like Add R
18
+ * Column mappings and names
19
+ * Checkboxes for each row for custom selection and mass actions
20
+ * Session rememberance for each list/view of what was last sorted, which page the person was on, the limit and search filters
21
+ * Ability to set a cool custom HTML arrow which draws a hidden DIV intended for someone to put custom widgets inside of to pass new filters to the list before it executes
22
+ * Buttons for each row and areas on the bottom of the grid where you can add "Action buttons"
18
23
 
19
24
 
20
25
  ## Installation
@@ -234,7 +239,7 @@ Or install it yourself as:
234
239
  Meta
235
240
  ----
236
241
 
237
- * Gems: <http://rubygems.org/gems/widget-list>
242
+ * Gems: <https://rubygems.org/gems/widget_list>
238
243
 
239
244
 
240
245
  Authors
@@ -1,3 +1,3 @@
1
1
  module WidgetList
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/widget_list.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
8
8
  gem.version = WidgetList::VERSION
9
9
  gem.authors = ["David Renne"]
10
10
  gem.email = ["message_me_on_github@dave.com"]
11
- gem.description = %q{widgetlist desc}
12
- gem.summary = %q{widgetlist summary}
11
+ gem.description = %q{An Advanced and flexible ajax data grid. Outside of all of the RAILS Active record CRAP!}
12
+ gem.summary = %q{In rails you have will_paginate and other gems like it using the ActiveRecord approach, but widget_list adds some awesome treats to standard boring pagers}
13
13
  gem.homepage = "https://github.com/davidrenne/widget_list"
14
14
  gem.add_dependency('sequel', '3.42.0')
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: widget_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -27,7 +27,8 @@ dependencies:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
29
  version: 3.42.0
30
- description: widgetlist desc
30
+ description: An Advanced and flexible ajax data grid. Outside of all of the RAILS
31
+ Active record CRAP!
31
32
  email:
32
33
  - message_me_on_github@dave.com
33
34
  executables: []
@@ -66,5 +67,6 @@ rubyforge_project:
66
67
  rubygems_version: 1.8.19
67
68
  signing_key:
68
69
  specification_version: 3
69
- summary: widgetlist summary
70
+ summary: In rails you have will_paginate and other gems like it using the ActiveRecord
71
+ approach, but widget_list adds some awesome treats to standard boring pagers
70
72
  test_files: []