workflow-activerecord 4.1.4 → 4.1.5

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: ca5abce1e9259f1fc05a8f2fb25aa4081b1c9cdb7ee0911c91c4e0c70b92ed91
4
- data.tar.gz: 5382f4bd2c33a919813e37533beb4232a5293c5e026550a15ea82acdfc84c883
3
+ metadata.gz: 8a4bccdfa2fe6eb48d3739e46b3c14f963aa9ecf60a1545e4458a53e4e7c0843
4
+ data.tar.gz: 48b16a9667b22e093e1072229be4c7f22f5e35655e89b47ded3bdb2b160a6f28
5
5
  SHA512:
6
- metadata.gz: 9979dbda710aa7f00159c2e9059cfbd7cf4a2ca5317de7384072cfabbd022116bb0ebeadb8f8aa47e08e3355d4c8f4837cfa0d01ef7a584d427ee13bbabf1d0e
7
- data.tar.gz: 479e2b2758f40b69e0a2d77460baf0fb5a22b4519d6885ad71c19330a31d92d3c905171beb0231de897590093ba050a403bffe12947d573bd9f8e3d2557f7e88
6
+ metadata.gz: f51e23b756c42bf88c2c20bb5a762713d865e3dfa85fc140dd39971917cb0cf7d052bf37c3f6cd9074518c39ffeff7f0ee238402b91d418caa63d2e357b15c4e
7
+ data.tar.gz: af0cb7a874652ccea06c0375a0ad3321efc10169008dd6e346373c63844ab8c34e36946044433b1cd6928502b3ca47adb8cb83d56cccd4e4166b91778fb357d1
data/README.md CHANGED
@@ -2,12 +2,8 @@
2
2
  ](https://img.shields.io/gem/v/workflow-activerecord.svg?maxAge=2592000)](https://rubygems.org/gems/workflow-activerecord)
3
3
  [![Build Status
4
4
  ](https://travis-ci.org/geekq/workflow-activerecord.svg)](https://travis-ci.org/geekq/workflow-activerecord)
5
- <!-- TODO find out how to add this repository without giving cloudclimate write access to the repo
6
- [![Code Climate
7
- ](https://codeclimate.com/github/geekq/workflow-activerecord/badges/gpa.svg)](https://codeclimate.com/github/geekq/workflow-activerecord)
8
- [![Test
9
- Coverage](https://codeclimate.com/github/geekq/workflow-activerecord/badges/coverage.svg)](https://codeclimate.com/github/geekq/workflow-activerecord/coverage)
10
- -->
5
+ [![Code Climate](https://codeclimate.com/github/geekq/workflow-activerecord/badges/gpa.svg)](https://codeclimate.com/github/geekq/workflow-activerecord)
6
+ [![Test Coverage](https://codeclimate.com/github/geekq/workflow-activerecord/badges/coverage.svg)](https://codeclimate.com/github/geekq/workflow-activerecord/coverage)
11
7
 
12
8
  # workflow-activerecord
13
9
 
@@ -194,6 +190,11 @@ You can have a look at an advanced [`on_transition`][] example in
194
190
  Changelog
195
191
  ---------
196
192
 
193
+ ### New in the version 4.1.5
194
+
195
+ * gh-2 Show code coverage on codeclimate
196
+ * gh-7 Improve require for base `workflow`
197
+
197
198
  ### New in the version 4.1.3
198
199
 
199
200
  * retire Ruby 2.3 and Rails 4.1 since this Ruby version has reached end of life
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
-
2
+ require 'workflow'
3
3
  require 'workflow/specification'
4
4
  require 'workflow_activerecord/adapters/active_record'
5
5
 
@@ -1,3 +1,3 @@
1
1
  module WorkflowActiverecord
2
- VERSION = "4.1.4"
2
+ VERSION = "4.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workflow-activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.4
4
+ version: 4.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dobriakov
@@ -128,9 +128,10 @@ dependencies:
128
128
  - - "~>"
129
129
  - !ruby/object:Gem::Version
130
130
  version: '1.3'
131
- description: "ActiveRecord/Rails Integration for the Workflow library. \nWorkflow
132
- is a finite-state-machine-inspired API for modeling and interacting\n with what
133
- we tend to refer to as 'workflow'."
131
+ description: |
132
+ ActiveRecord/Rails Integration for the Workflow library.
133
+ Workflow is a finite-state-machine-inspired API for modeling and interacting
134
+ with what we tend to refer to as 'workflow'.
134
135
  email:
135
136
  - vladimir@geekq.net
136
137
  executables: []
@@ -143,7 +144,7 @@ files:
143
144
  - lib/workflow_activerecord.rb
144
145
  - lib/workflow_activerecord/adapters/active_record.rb
145
146
  - lib/workflow_activerecord/version.rb
146
- homepage: http://www.geekq.net/workflow/
147
+ homepage: https://github.com/geekq/workflow-activerecord
147
148
  licenses:
148
149
  - MIT
149
150
  metadata: {}