tumugi 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0da0502fdc3a3597274e65a853e7433393f07b1
4
- data.tar.gz: 5f135e5d6dc31bbd0f61fae38de75febe63c9f97
3
+ metadata.gz: 3bc506113378a637136e4d843c2e68ba431b376d
4
+ data.tar.gz: 687bdb67a1ef02fafde28ea6ec6f4f44775d0d70
5
5
  SHA512:
6
- metadata.gz: f50123341f96baf3c9b39e05dd1f3cc5730e0d36cc5f2b2c22b4cfc55b57778cf6c5813a663ebfd18b4615066c32c74af8d70bb7fc6afed283ae9c229441b405
7
- data.tar.gz: 6e2db1837fd0edca19cbe15069569f9de41b8ff4d9ecd3ee9ec18a4336928c66e2a54e80532124f4ba784ae4d8bec037095d90fcbbf9b01a31a165b472bc88b3
6
+ metadata.gz: 860c86e2db4f799c7894aff42d70389b6c686cf380cf948c1af6c500665ea0cf62a7b6a53ad8234f7be5c398d92c1d8a003fabbfc76286199e1927621bc99ab0
7
+ data.tar.gz: fcd0ae11f13f83c39c0a35d98235c4b995fa3991c3575e7e0e685331d05af6c2d2c964d02476dbe84bd447e6fa19c23c5e1b03ecc9ab08f768097316c3c4b1e7
data/CHANGELOG.md CHANGED
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [0.4.3](https://github.com/tumugi/tumugi/tree/0.4.3) (2016-05-12)
4
- [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.4.2...0.4.3)
3
+ ## [0.4.4](https://github.com/tumugi/tumugi/tree/0.4.4) (2016-05-13)
4
+ [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.4.3...0.4.4)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - Fix workflow result output of parameters [\#47](https://github.com/tumugi/tumugi/pull/47) ([hakobera](https://github.com/hakobera))
9
+
10
+ ## [v0.4.3](https://github.com/tumugi/tumugi/tree/v0.4.3) (2016-05-12)
11
+ [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.4.2...v0.4.3)
5
12
 
6
13
  **Implemented enhancements:**
7
14
 
@@ -11,6 +18,10 @@
11
18
 
12
19
  - Fix param\_set in subclass overrite parent class param [\#44](https://github.com/tumugi/tumugi/pull/44) ([hakobera](https://github.com/hakobera))
13
20
 
21
+ **Merged pull requests:**
22
+
23
+ - Prepare release for v0.4.3 [\#46](https://github.com/tumugi/tumugi/pull/46) ([hakobera](https://github.com/hakobera))
24
+
14
25
  ## [v0.4.2](https://github.com/tumugi/tumugi/tree/v0.4.2) (2016-05-10)
15
26
  [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.4.1...v0.4.2)
16
27
 
@@ -83,7 +83,7 @@ module Tumugi
83
83
  r.id
84
84
  end
85
85
  params = proxy.params.map do |name, _|
86
- "#{name}=#{task.instance_variable_get("@#{name}")}"
86
+ "#{name}=#{task.send(name.to_sym)}"
87
87
  end
88
88
  t << [ task.id, requires.join("\n"), params.join("\n"), task.state ]
89
89
  end
@@ -61,7 +61,9 @@ module Tumugi
61
61
  define_method(name) do
62
62
  val = self.instance_variable_get("@#{name}")
63
63
  if val.instance_of?(Proc)
64
- self.instance_exec(&val)
64
+ v = self.instance_exec(&val)
65
+ self.instance_variable_set("@#{name}", v)
66
+ v
65
67
  else
66
68
  val
67
69
  end
@@ -1,3 +1,3 @@
1
1
  module Tumugi
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tumugi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuyuki Honda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-12 00:00:00.000000000 Z
11
+ date: 2016-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel