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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 410db62b32e62adf3377dcecdbf9d6c42dda109a1fbb63a0cabc379ba8291bc1
4
- data.tar.gz: ad1b249687e8b7f082a213b19e229eee2bd7e6530e4696aa8f253029d68e273a
3
+ metadata.gz: 13ca95d8527ee9aed041301018b24b7ad0b94aa9ceb18b8c8344b85bcea30c17
4
+ data.tar.gz: 26f9d39af2dfc6431a9b87086f04bc065348b0404d955d13fb6ab54c88f25298
5
5
  SHA512:
6
- metadata.gz: 836f6c60d6db535c399567ec63c4193bf5bb57c7e366d64489d4fb3c3d51de369e8803131a7eb78f5ef14b48a996893c200a8e8d0aaf42e781d9eb05b75d4f01
7
- data.tar.gz: b3680f266639313d3c2ffa8861730cf2f975ee022b1c6a385593270a4029c0eafdf9d689e614620881075f96a5045e6f13b28c0b3abacd978e9c76a009ee3cca
6
+ metadata.gz: 7417e0389ca9cb990f574e5e9265252461b10bcb127c1b144b899eb2f7d283b91cb335e106c57fed0471fcdfe3bc1b1fd8a828f92c36396ffb38fecd7d688215
7
+ data.tar.gz: 63aa64aceaf356e8192d4c0d752383b2747670ef34f37d8c17780367367824cea08320d4fabb2862735876834e182456f46a331e23e4885404201d81d007da5c
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Version](https://img.shields.io/gem/v/workflow-activerecord.svg)](https://rubygems.org/gems/workflow-activerecord)
2
- [![Build Status](https://travis-ci.org/geekq/workflow-activerecord.svg)](https://travis-ci.org/geekq/workflow-activerecord)
2
+ [![Test](https://github.com/geekq/workflow-activerecord/actions/workflows/test.yml/badge.svg)](https://github.com/geekq/workflow-activerecord/actions/workflows/test.yml)
3
3
  [![Code Climate](https://codeclimate.com/github/geekq/workflow-activerecord/badges/gpa.svg)](https://codeclimate.com/github/geekq/workflow-activerecord)
4
4
  [![Test Coverage](https://codeclimate.com/github/geekq/workflow-activerecord/badges/coverage.svg)](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 4.1, 4.2, 5.0, 5.1, 5.2 please use:
12
+ Rails/ActiveRecord 6.0, 6.1, 7.0 please use:
13
13
 
14
- gem 'workflow-activerecord', '>= 4.1', '< 6.0'
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', '>= 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,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 4.1.7
191
+ ### New in the version 6.0.0
192
192
 
193
- * gh-9 refactor the implementation to a single file, deprecate `require
194
- 'workflow_activerecord'` (with the underscore)
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.6
197
+ ### New in the version 4.1.9
197
198
 
198
- * gh-3, gh-5 allow automatic require of workflow-activerecord - no need for explicit `require` anymore
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-2019 Vladimir Dobriakov and Contributors
216
+ Copyright (c) 2010-2022 Vladimir Dobriakov and Contributors
233
217
 
234
218
  Copyright (c) 2008-2009 Vodafone
235
219
 
@@ -1,3 +1,3 @@
1
1
  module WorkflowActiverecord
2
- VERSION = "4.1.7"
2
+ VERSION = "6.0.0"
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: 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: 2019-06-04 00:00:00.000000000 Z
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: '2.0'
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: '2.0'
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: '3.0'
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: '3.0'
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.3'
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
- rubyforge_project:
167
- rubygems_version: 2.7.6
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: []