acts_as_list 0.9.11 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e015505781243b63ca79d1bcc84df12709f397a6
4
- data.tar.gz: 3136ff3f5e771a5bcc6c298d3a26d3a66f2160a6
3
+ metadata.gz: 546373a5aef9b7e01d596125f12ca0d28a8ef17f
4
+ data.tar.gz: 2c9dc883a96de73adef5721bf06d24c2ac6ed796
5
5
  SHA512:
6
- metadata.gz: e0b1f462cf3a207ef0e6cf6de20ca598d1bf718ad6b3349422a753c030331f1ab5a0e9120ad3b79e0c8515efda7b5526942ebe8ce57aa60c15846967dc67930b
7
- data.tar.gz: 5c04d991727e00db36d9149c9a8d3d58074198dd57378f7608e75514be86e28e143d96b0e9f8a4b738df7ae3f9ee217879b56e06a40433de8963363a6ff08255
6
+ metadata.gz: de4f9a7760a8a74b356398335ea14dfc9ae1fe120b46def4190f13db6b19720b2720a83ef5c4fc7c585255c49b0e232075631927b3106ce6b9a43844339d9627
7
+ data.tar.gz: 32b9b84c6801e0bf4f2782e5285b03a4b60d98f2ec95cc5e78dd3fc906c67e73e63f6574f9ecfdd0a4e5ef161e51e4961d7de22ddc6ffae45f0acbd3e9c6ed7b
@@ -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
+ [![Build Status](https://secure.travis-ci.org/swanandp/acts_as_list.png)](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
- [![Build Status](https://secure.travis-ci.org/swanandp/acts_as_list.png)](https://secure.travis-ci.org/swanandp/acts_as_list)
189
-
190
190
  ## Workflow Status
191
191
  [![WIP Issues](https://badge.waffle.io/swanandp/acts_as_list.png)](http://waffle.io/swanandp/acts_as_list)
192
192
 
@@ -3,7 +3,7 @@
3
3
  module ActiveRecord
4
4
  module Acts
5
5
  module List
6
- VERSION = '0.9.11'
6
+ VERSION = '0.9.12'
7
7
  end
8
8
  end
9
9
  end
@@ -13,7 +13,7 @@ rescue Bundler::BundlerError => e
13
13
  end
14
14
  require "active_record"
15
15
  require "minitest/autorun"
16
- require "mocha/mini_test"
16
+ require "mocha/minitest"
17
17
  require "#{File.dirname(__FILE__)}/../init"
18
18
 
19
19
  if defined?(ActiveRecord::VERSION) &&
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.11
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-03-19 00:00:00.000000000 Z
13
+ date: 2018-05-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord