-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
17 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ test/tmp | |
test/version_tmp | ||
tmp | ||
/**/*.log | ||
.rubocop-*yml |
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,7 @@ | ||
## 0.6.3 | ||
|
||
* Require forwardable module from standard lib. | ||
|
||
## 0.6.2 | ||
|
||
* Fix Trace so it works with Ruby <= 2.4 | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,6 @@ An operation can be used exaclty like an activity, including nesting, tracing, e | |
|
||
## Copyright | ||
|
||
Copyright (c) 2016 Nick Sutterer <[email protected]> | ||
Copyright (c) 2016-2020 Nick Sutterer <[email protected]> | ||
|
||
`trailblazer-operation` is released under the [MIT License](http://www.opensource.org/licenses/MIT). |
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
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,7 +1,5 @@ | ||
module Trailblazer | ||
module Version | ||
module Operation | ||
VERSION = "0.6.2" | ||
end | ||
class Operation | ||
VERSION = "0.6.3" | ||
end | ||
end |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ require 'trailblazer/operation/version' | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "trailblazer-operation" | ||
spec.version = Trailblazer::Version::Operation::VERSION | ||
spec.version = Trailblazer::Operation::VERSION | ||
spec.authors = ["Nick Sutterer"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q(Trailblazer's operation object.) | ||
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec| | |
|
||
spec.files = `git ls-files`.split($/) | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.test_files = spec.files.grep(%r{^(test)/}) | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_dependency "trailblazer-activity-dsl-linear", ">= 0.2.6", "< 1.0.0" | ||
|