-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh-7 Improve require for base
workflow
When used in Rails context, its default `Bundler.require` / `require_gem` usually does a `require` for all Gems used in the project, also for transitive dependencies like your-app -> workflow-activerecord -> workflow. That way the CI build https://travis-ci.org/geekq/workflow-activerecord works. Anyway, adding this single `require` fix can not harm, but improve things in some special context. Like minimal `irb` without bundler.
- Loading branch information
Vladimir Dobriakov
committed
May 31, 2019
1 parent
c390a5d
commit 68fb46b
Showing
3 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module WorkflowActiverecord | ||
VERSION = "4.1.4" | ||
VERSION = "4.1.5" | ||
end |