workflow-activerecord 4.1.7 → 6.0.0
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/README.md +12 -28
- data/lib/workflow-activerecord/version.rb +1 -1
- metadata +11 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13ca95d8527ee9aed041301018b24b7ad0b94aa9ceb18b8c8344b85bcea30c17
|
|
4
|
+
data.tar.gz: 26f9d39af2dfc6431a9b87086f04bc065348b0404d955d13fb6ab54c88f25298
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7417e0389ca9cb990f574e5e9265252461b10bcb127c1b144b899eb2f7d283b91cb335e106c57fed0471fcdfe3bc1b1fd8a828f92c36396ffb38fecd7d688215
|
|
7
|
+
data.tar.gz: 63aa64aceaf356e8192d4c0d752383b2747670ef34f37d8c17780367367824cea08320d4fabb2862735876834e182456f46a331e23e4885404201d81d007da5c
|
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[](https://rubygems.org/gems/workflow-activerecord)
|
|
2
|
-
[](https://github.com/geekq/workflow-activerecord/actions/workflows/test.yml)
|
|
3
3
|
[](https://codeclimate.com/github/geekq/workflow-activerecord)
|
|
4
4
|
[](https://codeclimate.com/github/geekq/workflow-activerecord/coverage)
|
|
5
5
|
|
|
@@ -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
|
|
12
|
+
Rails/ActiveRecord 6.0, 6.1, 7.0 please use:
|
|
13
13
|
|
|
14
|
-
gem 'workflow-activerecord', '
|
|
14
|
+
gem 'workflow-activerecord', '~> 6.0'
|
|
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,33 +188,17 @@ You can have a look at an advanced [`on_transition`][] example in
|
|
|
188
188
|
Changelog
|
|
189
189
|
---------
|
|
190
190
|
|
|
191
|
-
### New in the version
|
|
191
|
+
### New in the version 6.0.0
|
|
192
192
|
|
|
193
|
-
*
|
|
194
|
-
|
|
193
|
+
* GH-14 retire Ruby 2.6 and Rails 5.* and older since they have reached end of
|
|
194
|
+
live; please use workflow-activerecord 4.1.9, if you still depend on
|
|
195
|
+
those versions
|
|
195
196
|
|
|
196
|
-
### New in the version 4.1.
|
|
197
|
+
### New in the version 4.1.9
|
|
197
198
|
|
|
198
|
-
*
|
|
199
|
+
* GH-13 Switch CI (continuous integration) from travis-CI to GitHub
|
|
200
|
+
* Tested Rails 7.0 support
|
|
199
201
|
|
|
200
|
-
### New in the version 4.1.5
|
|
201
|
-
|
|
202
|
-
* gh-2 Show code coverage on codeclimate
|
|
203
|
-
* gh-7 Improve require for base `workflow`
|
|
204
|
-
|
|
205
|
-
### New in the version 4.1.3
|
|
206
|
-
|
|
207
|
-
* retire Ruby 2.3 and Rails 4.1 since this Ruby version has reached end of life
|
|
208
|
-
* add build for Rails 6.0 beta, Ruby 2.6
|
|
209
|
-
* fix #4 ruby-graphiz warnings
|
|
210
|
-
|
|
211
|
-
### New in the version 4.1.0
|
|
212
|
-
|
|
213
|
-
First version supporting Rails/ActiveRecord 4.1, 4.2, 5.0, 5.1, 5.2
|
|
214
|
-
Special thanks to [@voltechs][] for implementing Rails 5 support
|
|
215
|
-
and helping to revive `workflow`!
|
|
216
|
-
|
|
217
|
-
[@voltechs]: https://github.com/voltechs
|
|
218
202
|
|
|
219
203
|
Support
|
|
220
204
|
-------
|
|
@@ -229,7 +213,7 @@ About
|
|
|
229
213
|
|
|
230
214
|
Author: Vladimir Dobriakov, <https://infrastructure-as-code.de>
|
|
231
215
|
|
|
232
|
-
Copyright (c) 2010-
|
|
216
|
+
Copyright (c) 2010-2022 Vladimir Dobriakov and Contributors
|
|
233
217
|
|
|
234
218
|
Copyright (c) 2008-2009 Vodafone
|
|
235
219
|
|
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
|
+
version: 6.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vladimir Dobriakov
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workflow
|
|
@@ -16,34 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '3.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '3.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activerecord
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
34
|
-
- - "<"
|
|
35
|
-
- !ruby/object:Gem::Version
|
|
36
|
-
version: '6.1'
|
|
33
|
+
version: '6.0'
|
|
37
34
|
type: :runtime
|
|
38
35
|
prerelease: false
|
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
40
37
|
requirements:
|
|
41
38
|
- - ">="
|
|
42
39
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: '
|
|
44
|
-
- - "<"
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: '6.1'
|
|
40
|
+
version: '6.0'
|
|
47
41
|
- !ruby/object:Gem::Dependency
|
|
48
42
|
name: rdoc
|
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -148,7 +142,7 @@ homepage: https://github.com/geekq/workflow-activerecord
|
|
|
148
142
|
licenses:
|
|
149
143
|
- MIT
|
|
150
144
|
metadata: {}
|
|
151
|
-
post_install_message:
|
|
145
|
+
post_install_message:
|
|
152
146
|
rdoc_options: []
|
|
153
147
|
require_paths:
|
|
154
148
|
- lib
|
|
@@ -156,16 +150,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
156
150
|
requirements:
|
|
157
151
|
- - ">="
|
|
158
152
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: '2.
|
|
153
|
+
version: '2.7'
|
|
160
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
161
155
|
requirements:
|
|
162
156
|
- - ">="
|
|
163
157
|
- !ruby/object:Gem::Version
|
|
164
158
|
version: '0'
|
|
165
159
|
requirements: []
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
signing_key:
|
|
160
|
+
rubygems_version: 3.1.2
|
|
161
|
+
signing_key:
|
|
169
162
|
specification_version: 4
|
|
170
163
|
summary: ActiveRecord/Rails Integration for the Workflow library.
|
|
171
164
|
test_files: []
|