workflow-activerecord 4.1.7 → 4.1.8

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: 410db62b32e62adf3377dcecdbf9d6c42dda109a1fbb63a0cabc379ba8291bc1
4
- data.tar.gz: ad1b249687e8b7f082a213b19e229eee2bd7e6530e4696aa8f253029d68e273a
3
+ metadata.gz: 5974a889346ecc0b4d47a333a9ce5c2cf9a71073f59dcd2ae7698b38a8e6e1e2
4
+ data.tar.gz: 669f86b67930aa0b140dbf201fb5049d2b3bbe662b4dbb517c50042ae43b8999
5
5
  SHA512:
6
- metadata.gz: 836f6c60d6db535c399567ec63c4193bf5bb57c7e366d64489d4fb3c3d51de369e8803131a7eb78f5ef14b48a996893c200a8e8d0aaf42e781d9eb05b75d4f01
7
- data.tar.gz: b3680f266639313d3c2ffa8861730cf2f975ee022b1c6a385593270a4029c0eafdf9d689e614620881075f96a5045e6f13b28c0b3abacd978e9c76a009ee3cca
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', '>= 4.1', '< 6.0'
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', '>= 4.1pre', '< 6.0'
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
@@ -1,3 +1,3 @@
1
1
  module WorkflowActiverecord
2
- VERSION = "4.1.7"
2
+ VERSION = "4.1.8"
3
3
  end
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.7
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: 2019-06-04 00:00:00.000000000 Z
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.1'
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.1'
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
- rubyforge_project:
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.