pwice_grid 5.0.1 → 5.0.2
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +12 -12
- data/lib/wice/table_column_matrix.rb +1 -1
- data/wice_grid.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7b2761f091e153518ea2d0eadb1dca280dc11631c4fc7ddbfb4599220b51bea
|
|
4
|
+
data.tar.gz: 0f94d8928db60e26fd1c8a0d0ad5ac3f4b6957cece6dc5366bd34ddb528d8a06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef620448ef6585b46a890a1216e58608814af97bcf175dc99e138d75704f0ec46cf4aae40fb55600c2452944438b7efc6569aaedbd56fa71124031bc4fc955ee
|
|
7
|
+
data.tar.gz: 4ba6122ff599ae69113d96ab94a4221ecd61fd36c0852a305434b69642aa70c3af64694584a35f6d5ef00dad678d799bbdd0f2a0be6ff873f4b6525ecb0179a8
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
|
|
4
|
+
wice_grid (4.1.0)
|
|
5
5
|
coffee-rails (> 3.2)
|
|
6
6
|
kaminari (~> 1.1)
|
|
7
7
|
rails (>= 5.0, < 7)
|
|
@@ -113,18 +113,18 @@ GEM
|
|
|
113
113
|
jquery-ui-themes (0.0.12)
|
|
114
114
|
httparty
|
|
115
115
|
json (1.8.6)
|
|
116
|
-
kaminari (1.
|
|
116
|
+
kaminari (1.1.1)
|
|
117
117
|
activesupport (>= 4.1.0)
|
|
118
|
-
kaminari-actionview (= 1.
|
|
119
|
-
kaminari-activerecord (= 1.
|
|
120
|
-
kaminari-core (= 1.
|
|
121
|
-
kaminari-actionview (1.
|
|
118
|
+
kaminari-actionview (= 1.1.1)
|
|
119
|
+
kaminari-activerecord (= 1.1.1)
|
|
120
|
+
kaminari-core (= 1.1.1)
|
|
121
|
+
kaminari-actionview (1.1.1)
|
|
122
122
|
actionview
|
|
123
|
-
kaminari-core (= 1.
|
|
124
|
-
kaminari-activerecord (1.
|
|
123
|
+
kaminari-core (= 1.1.1)
|
|
124
|
+
kaminari-activerecord (1.1.1)
|
|
125
125
|
activerecord
|
|
126
|
-
kaminari-core (= 1.
|
|
127
|
-
kaminari-core (1.
|
|
126
|
+
kaminari-core (= 1.1.1)
|
|
127
|
+
kaminari-core (1.1.1)
|
|
128
128
|
launchy (2.4.3)
|
|
129
129
|
addressable (~> 2.3)
|
|
130
130
|
libv8 (3.16.14.19)
|
|
@@ -139,7 +139,7 @@ GEM
|
|
|
139
139
|
minitest (5.11.1)
|
|
140
140
|
multi_json (1.13.1)
|
|
141
141
|
multi_xml (0.6.0)
|
|
142
|
-
nio4r (2.5.
|
|
142
|
+
nio4r (2.5.2)
|
|
143
143
|
nokogiri (1.10.1)
|
|
144
144
|
mini_portile2 (~> 2.4.0)
|
|
145
145
|
poltergeist (1.18.1)
|
|
@@ -280,7 +280,6 @@ DEPENDENCIES
|
|
|
280
280
|
jquery-ui-rails (~> 5.0.5)
|
|
281
281
|
jquery-ui-themes (~> 0.0.11)
|
|
282
282
|
poltergeist (~> 1.18.0)
|
|
283
|
-
pwice_grid!
|
|
284
283
|
rake (~> 10.1)
|
|
285
284
|
rdoc (~> 4.2.0)
|
|
286
285
|
rspec (~> 3.6.0)
|
|
@@ -292,6 +291,7 @@ DEPENDENCIES
|
|
|
292
291
|
sqlite3 (~> 1.3)
|
|
293
292
|
therubyracer
|
|
294
293
|
turbolinks (~> 5.1.1)
|
|
294
|
+
wice_grid!
|
|
295
295
|
yard (~> 0.8)
|
|
296
296
|
|
|
297
297
|
BUNDLED WITH
|
|
@@ -56,7 +56,7 @@ module Wice
|
|
|
56
56
|
def init_columns_of_table(model) #:nodoc:
|
|
57
57
|
self[model] = HashWithIndifferentAccess.new(model.columns.index_by(&:name))
|
|
58
58
|
@by_table_names[model.table_name] = self[model]
|
|
59
|
-
self[model].each_value { |c| c.model = model }
|
|
59
|
+
self[model].each_value { |c| next if c.frozen?; c.model = model }
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
alias_method :<<, :init_columns_of_table
|
data/wice_grid.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pwice_grid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yuri Leikind and contributors
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2021-03-31 00:00:00.000000000 Z
|
|
@@ -838,7 +838,7 @@ homepage: https://github.com/pololu/pwice_grid
|
|
|
838
838
|
licenses:
|
|
839
839
|
- MIT
|
|
840
840
|
metadata: {}
|
|
841
|
-
post_install_message:
|
|
841
|
+
post_install_message:
|
|
842
842
|
rdoc_options: []
|
|
843
843
|
require_paths:
|
|
844
844
|
- lib
|
|
@@ -853,8 +853,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
853
853
|
- !ruby/object:Gem::Version
|
|
854
854
|
version: '0'
|
|
855
855
|
requirements: []
|
|
856
|
-
rubygems_version: 3.
|
|
857
|
-
signing_key:
|
|
856
|
+
rubygems_version: 3.2.16
|
|
857
|
+
signing_key:
|
|
858
858
|
specification_version: 4
|
|
859
859
|
summary: A Rails grid plugin to quickly create grids with sorting, pagination, and
|
|
860
860
|
filters.
|