widget_list 1.1.6 → 1.1.7
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/lib/widget_list/version.rb +1 -1
- data/widget_list.gemspec +19 -3
- metadata +5 -4
data/lib/widget_list/version.rb
CHANGED
data/widget_list.gemspec
CHANGED
|
@@ -4,17 +4,33 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'widget_list/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
|
+
|
|
7
8
|
gem.name = "widget_list"
|
|
9
|
+
|
|
8
10
|
gem.version = WidgetList::VERSION
|
|
11
|
+
|
|
9
12
|
gem.authors = ["David Renne"]
|
|
13
|
+
|
|
10
14
|
gem.email = ["message_me_on_github@dave.com"]
|
|
11
|
-
|
|
15
|
+
|
|
16
|
+
gem.description = %q{An Advanced and flexible ajax data grid. Supports several databases where data is pulled from either using Sequel ORM (optional even though is a dependency), Active Record Models or Raw SQL.}
|
|
17
|
+
|
|
12
18
|
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}
|
|
19
|
+
|
|
13
20
|
gem.homepage = "https://github.com/davidrenne/widget_list"
|
|
14
|
-
|
|
15
|
-
|
|
21
|
+
|
|
22
|
+
#
|
|
23
|
+
# SEQUEL IS NOW OPTIONAL!! I am sure most people will be using ActiveRecord ORM
|
|
24
|
+
# I am including it as a dependency just because it is easier to pull it down and have it available
|
|
25
|
+
#
|
|
26
|
+
gem.add_dependency('sequel', '3.42.0')
|
|
27
|
+
|
|
16
28
|
gem.files = `git ls-files`.split($/)
|
|
29
|
+
|
|
17
30
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
31
|
+
|
|
18
32
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
33
|
+
|
|
19
34
|
gem.require_paths = ["lib"]
|
|
35
|
+
|
|
20
36
|
end
|
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.1.
|
|
4
|
+
version: 1.1.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-03-
|
|
12
|
+
date: 2013-03-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: sequel
|
|
@@ -27,8 +27,9 @@ dependencies:
|
|
|
27
27
|
- - '='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: 3.42.0
|
|
30
|
-
description: An Advanced and flexible ajax data grid.
|
|
31
|
-
|
|
30
|
+
description: An Advanced and flexible ajax data grid. Supports several databases where
|
|
31
|
+
data is pulled from either using Sequel ORM (optional even though is a dependency),
|
|
32
|
+
Active Record Models or Raw SQL.
|
|
32
33
|
email:
|
|
33
34
|
- message_me_on_github@dave.com
|
|
34
35
|
executables: []
|