trailblazer 2.0.4 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/Gemfile +1 -1
- data/lib/trailblazer/operation/wrap.rb +1 -1
- data/lib/trailblazer/version.rb +1 -1
- data/test/test_helper.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5044acf088ef7c93daedbd4b2f26a9601aae07e6
|
4
|
+
data.tar.gz: c9195569bbb61caf1f94969e4d39daa262990274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31f85ea3865e9682b21bf1ea57447f1fab277589fd193a37aeba6471ea4823c2d3de88fe866972b900f326d5cfad232ad63705d9e5eb604246066452537a2272
|
7
|
+
data.tar.gz: c2452aa7f8a95e7e3698c3442b07e07b13973eb38367a232b7f97b4e9da474a00b30cafd9d534e1799e66888f0b39cdb630804b9077cc293dc44b6cde05f2829
|
data/CHANGES.md
CHANGED
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
class Trailblazer::Operation
|
2
2
|
def self.Wrap(wrap, &block)
|
3
|
-
operation = Class.new(
|
3
|
+
operation = Class.new(self) # self is Trailblazer::Operation.
|
4
4
|
# DISCUSS: don't instance_exec when |pipe| given?
|
5
5
|
operation.instance_exec(&block) # evaluate the nested pipe.
|
6
6
|
|
data/lib/trailblazer/version.rb
CHANGED
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trailblazer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Sutterer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: trailblazer-operation
|
@@ -243,7 +243,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
243
|
version: '0'
|
244
244
|
requirements: []
|
245
245
|
rubyforge_project:
|
246
|
-
rubygems_version: 2.
|
246
|
+
rubygems_version: 2.6.3
|
247
247
|
signing_key:
|
248
248
|
specification_version: 4
|
249
249
|
summary: A high-level architecture for Ruby and Rails.
|