fixed_activeadmin_sortable_table 1.3.0 → 1.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20c81aea75523dcfcb51564c1e26aeb1664daebace8fe10f89f10929faf7d51c
4
- data.tar.gz: 612672399b7ccb86476c8d09ad2dbd572321760a415dfdaa7dd9004fe0a0303a
3
+ metadata.gz: 7e438e60413cf3df6e0a607e1e5268e70f44d4122d5a4ae673db4db974edae87
4
+ data.tar.gz: 89770d2d78a888c92aeb81bdcb0402e447fcc29ebeac513a5a219c7e57034f8b
5
5
  SHA512:
6
- metadata.gz: ed246864dea02ade91c658df5be1f20a3d170dc255739abf9fb34cead27b7610a70aaeecadd792f631aeac8554094843e67dfff7a8ec9bbf21f640fe738a303c
7
- data.tar.gz: adfa43dca3b1b4eed74e10e4c030f84ea57811c753a7988497e86cfdade55c8062ff44130c16aa9c254e82050e3215b53ca4812fdbaf3e02b7d1349a26b3a6b9
6
+ metadata.gz: d5f6ec763430cafe23792b0adc2f0dd065e5a00d7f3e7ce6c8946022c9008cbeec8b4bdfa653ab3845fcdbf542509c0fbafebe0256dab1e0db6909e6aa777e61
7
+ data.tar.gz: 9902bd8b79d2de70e43ce2450df1c1ffe51f85851e8247e04750d6c5446709a491492fbef6391e092f2e738bf9da3d75afae76d4cb17bb272a04b512c0ef71b0
@@ -1,3 +1,7 @@
1
+ 1.3.1
2
+
3
+ * **Fix**. Can't verify CSRF token authenticity exception.
4
+
1
5
  1.3.0
2
6
 
3
7
  * Test against latest supported ruby versions: 2.3.7, 2.4.4, 2.5.1 and rails versions: 4.2.10, 5.2.1.
@@ -6,12 +6,12 @@ require 'active_admin/sortable_table/version'
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = 'fixed_activeadmin_sortable_table'
8
8
  gem.version = ActiveAdmin::SortableTable::VERSION
9
- gem.authors = ['Adam McCrea', 'Jonathan Gertig', 'Artyom Bolshakov']
10
- gem.email = ['adam@adamlogic.com', 'jcgertig@gmail.com', 'abolshakov@spbtv.com']
9
+ gem.authors = ['Sikandar Tariq']
10
+ gem.email = ['sikandartariq1@gmail.com']
11
11
  gem.description = 'Drag and drop reordering interface for ActiveAdmin tables'
12
12
  gem.summary = 'Drag and drop reordering interface for ActiveAdmin tables'
13
13
  gem.license = 'MIT'
14
- gem.homepage = 'https://github.com/bolshakov/activeadmin_sortable_table'
14
+ gem.homepage = 'https://github.com/sikandartariq1/activeadmin_sortable_table'
15
15
 
16
16
  gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
17
17
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
@@ -1,6 +1,6 @@
1
1
  module ActiveAdmin
2
2
  #
3
3
  module SortableTable
4
- VERSION = '1.3.0'
4
+ VERSION = '1.3.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fixed_activeadmin_sortable_table
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
- - Adam McCrea
8
- - Jonathan Gertig
9
- - Artyom Bolshakov
7
+ - Sikandar Tariq
10
8
  autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
13
- date: 2019-10-08 00:00:00.000000000 Z
11
+ date: 2019-10-11 00:00:00.000000000 Z
14
12
  dependencies:
15
13
  - !ruby/object:Gem::Dependency
16
14
  name: activeadmin
@@ -140,9 +138,7 @@ dependencies:
140
138
  version: '0'
141
139
  description: Drag and drop reordering interface for ActiveAdmin tables
142
140
  email:
143
- - adam@adamlogic.com
144
- - jcgertig@gmail.com
145
- - abolshakov@spbtv.com
141
+ - sikandartariq1@gmail.com
146
142
  executables: []
147
143
  extensions: []
148
144
  extra_rdoc_files: []
@@ -156,14 +152,14 @@ files:
156
152
  - LICENSE.txt
157
153
  - README.md
158
154
  - Rakefile
159
- - activeadmin_sortable_table.gemspec
160
155
  - app/assets/javascripts/activeadmin_sortable_table.js
161
156
  - app/assets/stylesheets/activeadmin_sortable_table.css
157
+ - fixed_activeadmin_sortable_table.gemspec
162
158
  - lib/active_admin/sortable_table.rb
163
159
  - lib/active_admin/sortable_table/engine.rb
164
160
  - lib/active_admin/sortable_table/handle_column.rb
165
161
  - lib/active_admin/sortable_table/version.rb
166
- - lib/activeadmin_sortable_table.rb
162
+ - lib/fixed_activeadmin_sortable_table.rb
167
163
  - spec/dummy/README.rdoc
168
164
  - spec/dummy/Rakefile
169
165
  - spec/dummy/app/admin/categories.rb
@@ -221,7 +217,7 @@ files:
221
217
  - spec/rails_helper.rb
222
218
  - spec/spec_helper.rb
223
219
  - spec/support/wait_for_ajax.rb
224
- homepage: https://github.com/bolshakov/activeadmin_sortable_table
220
+ homepage: https://github.com/sikandartariq1/activeadmin_sortable_table
225
221
  licenses:
226
222
  - MIT
227
223
  metadata: {}