workflow-activerecord 4.1.7 → 4.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/lib/workflow-activerecord/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5974a889346ecc0b4d47a333a9ce5c2cf9a71073f59dcd2ae7698b38a8e6e1e2
|
4
|
+
data.tar.gz: 669f86b67930aa0b140dbf201fb5049d2b3bbe662b4dbb517c50042ae43b8999
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5086caf826c24e788f704738e3bcb297c9edd903638fe4d0bc6a7307bb0ef63731ee5bcad5d6e9a38493c21e988da985fa215b6411a0617efaa61c897c2cff9c
|
7
|
+
data.tar.gz: b5b1e5f5f6e446b430fd995fcd5e759e894da22b600af1d0e33e1ae067b8efe803e4120aa46a0dbf8d90d5236634c42b5998d186ea0ab2ef5c4e5a0fdaecab67
|
data/README.md
CHANGED
@@ -9,15 +9,15 @@
|
|
9
9
|
|
10
10
|
Major+minor versions of workflow-activerecord are based on the oldest
|
11
11
|
compatible ActiveRecord API. To use [`workflow`][workflow] with
|
12
|
-
Rails/ActiveRecord 4.1, 4.2, 5.0, 5.1, 5.2 please use:
|
12
|
+
Rails/ActiveRecord 4.1, 4.2, 5.0, 5.1, 5.2, 6.0, 6.1 please use:
|
13
13
|
|
14
|
-
gem 'workflow-activerecord', '
|
14
|
+
gem 'workflow-activerecord', '~> 4.1'
|
15
15
|
|
16
16
|
This will also automatically include the newest compatible version of
|
17
17
|
the core 'workflow' gem. But you can also choose a specific version:
|
18
18
|
|
19
19
|
gem 'workflow', '~> 2.0'
|
20
|
-
gem 'workflow-activerecord', '
|
20
|
+
gem 'workflow-activerecord', '~> 4.1'
|
21
21
|
|
22
22
|
Please also have a look at [the sample application][]!
|
23
23
|
|
@@ -188,6 +188,10 @@ You can have a look at an advanced [`on_transition`][] example in
|
|
188
188
|
Changelog
|
189
189
|
---------
|
190
190
|
|
191
|
+
### New in the version 4.1.8
|
192
|
+
|
193
|
+
* gh-11 Rails 6.1 support
|
194
|
+
|
191
195
|
### New in the version 4.1.7
|
192
196
|
|
193
197
|
* gh-9 refactor the implementation to a single file, deprecate `require
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workflow-activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir Dobriakov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workflow
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3.0'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '6.
|
36
|
+
version: '6.2'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3.0'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '6.
|
46
|
+
version: '6.2'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rdoc
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -163,8 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
- !ruby/object:Gem::Version
|
164
164
|
version: '0'
|
165
165
|
requirements: []
|
166
|
-
|
167
|
-
rubygems_version: 2.7.6
|
166
|
+
rubygems_version: 3.1.2
|
168
167
|
signing_key:
|
169
168
|
specification_version: 4
|
170
169
|
summary: ActiveRecord/Rails Integration for the Workflow library.
|