acts_as_list 0.9.11 → 0.9.12
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/CHANGELOG.md +20 -0
- data/README.md +3 -3
- data/lib/acts_as_list/version.rb +1 -1
- data/test/helper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 546373a5aef9b7e01d596125f12ca0d28a8ef17f
|
|
4
|
+
data.tar.gz: 2c9dc883a96de73adef5721bf06d24c2ac6ed796
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de4f9a7760a8a74b356398335ea14dfc9ae1fe120b46def4190f13db6b19720b2720a83ef5c4fc7c585255c49b0e232075631927b3106ce6b9a43844339d9627
|
|
7
|
+
data.tar.gz: 32b9b84c6801e0bf4f2782e5285b03a4b60d98f2ec95cc5e78dd3fc906c67e73e63f6574f9ecfdd0a4e5ef161e51e4961d7de22ddc6ffae45f0acbd3e9c6ed7b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.9.11](https://github.com/swanandp/acts_as_list/tree/v0.9.11) (2018-03-19)
|
|
4
|
+
[Full Changelog](https://github.com/swanandp/acts_as_list/compare/v0.9.10...v0.9.11)
|
|
5
|
+
|
|
6
|
+
**Closed issues:**
|
|
7
|
+
|
|
8
|
+
- Setting `position: nil` on update returns `Column 'position' cannot be null` instead of putting the item at the start or the end of the list, like it does on create. [\#302](https://github.com/swanandp/acts_as_list/issues/302)
|
|
9
|
+
- Switching to Semaphore [\#301](https://github.com/swanandp/acts_as_list/issues/301)
|
|
10
|
+
- Dropping jruby support [\#300](https://github.com/swanandp/acts_as_list/issues/300)
|
|
11
|
+
- Rails 5.2.0 [\#299](https://github.com/swanandp/acts_as_list/issues/299)
|
|
12
|
+
- Cannot update record position when scoped to enum [\#298](https://github.com/swanandp/acts_as_list/issues/298)
|
|
13
|
+
- `add\_new\_at: :top` does not work [\#296](https://github.com/swanandp/acts_as_list/issues/296)
|
|
14
|
+
- remove\_from\_list causing "wrong number of arguments \(given 2, expected 0..1\)" [\#293](https://github.com/swanandp/acts_as_list/issues/293)
|
|
15
|
+
- Passing raw strings to reorder deprecated in Rails 5.2 [\#290](https://github.com/swanandp/acts_as_list/issues/290)
|
|
16
|
+
|
|
17
|
+
**Merged pull requests:**
|
|
18
|
+
|
|
19
|
+
- Fix Test Suite [\#306](https://github.com/swanandp/acts_as_list/pull/306) ([brendon](https://github.com/brendon))
|
|
20
|
+
- Add frozen\_string\_literal pragma to ruby files [\#305](https://github.com/swanandp/acts_as_list/pull/305) ([krzysiek1507](https://github.com/krzysiek1507))
|
|
21
|
+
- Use symbols instead of SQL strings for reorder \(for Rails 5.2\) [\#294](https://github.com/swanandp/acts_as_list/pull/294) ([jhawthorn](https://github.com/jhawthorn))
|
|
22
|
+
|
|
3
23
|
## [v0.9.10](https://github.com/swanandp/acts_as_list/tree/v0.9.10) (2017-11-19)
|
|
4
24
|
[Full Changelog](https://github.com/swanandp/acts_as_list/compare/v0.9.9...v0.9.10)
|
|
5
25
|
|
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# ActsAsList
|
|
2
2
|
|
|
3
|
+
## Build Status
|
|
4
|
+
[](https://secure.travis-ci.org/swanandp/acts_as_list)
|
|
5
|
+
|
|
3
6
|
## Description
|
|
4
7
|
|
|
5
8
|
This `acts_as` extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a `position` column defined as an integer on the mapped database table.
|
|
@@ -184,9 +187,6 @@ As of version `0.7.5` Rails 5 is supported.
|
|
|
184
187
|
|
|
185
188
|
All versions `0.1.5` onwards require Rails 3.0.x and higher.
|
|
186
189
|
|
|
187
|
-
## Build Status
|
|
188
|
-
[](https://secure.travis-ci.org/swanandp/acts_as_list)
|
|
189
|
-
|
|
190
190
|
## Workflow Status
|
|
191
191
|
[](http://waffle.io/swanandp/acts_as_list)
|
|
192
192
|
|
data/lib/acts_as_list/version.rb
CHANGED
data/test/helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_list
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-
|
|
13
|
+
date: 2018-05-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activerecord
|