tumugi 0.7.0 → 0.7.1

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: e1245ddebd2d69768433b3cfdea9ea0c3e39cff8
4
- data.tar.gz: f40eded5362a22f951caf384411387758fb668ce
3
+ metadata.gz: 27c139225787aaacddb4d8f6f53b3927689e495e
4
+ data.tar.gz: 0431446da77af2d835665ce4bf08a00bcf4d7995
5
5
  SHA512:
6
- metadata.gz: e1d78046c13e29e2f0cff749e54cfb020256de583c5561c9664edbabfcdae7a45fc64918b5cb4582a0ea7321e8f87932e0470365f142e12c792b82e432d94bff
7
- data.tar.gz: b6745f25485a5aaa1e6ad494e468640209839fe77a7952ba955f888554f41764ccd31c6c983b04e6030a82e2e040f51af01d8f8d7c51b097ec62016ea5eb0bd0
6
+ metadata.gz: 13e94f3ee68567f45c4f59d5c883a00e6c2f85c54a957ceb3d30e6e9298f5c67c0bd26d3ac807d18179713e82bece4aec898041e9194231b45e53048e41449b7
7
+ data.tar.gz: b5231a360c2c628b38b07fff792639852e33208d62f74b54afd9a2618052c1a6cfa7e6fddac825d33e25450d204fd3e4911775268a48be25897486e563ba6ffe
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.7.1](https://github.com/tumugi/tumugi/tree/v0.7.1) (2017-01-07)
4
+ [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.7.0...v0.7.1)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - Local file target misses some data on Linux \(Ubuntu\) [\#139](https://github.com/tumugi/tumugi/issues/139)
9
+
10
+ **Merged pull requests:**
11
+
12
+ - Fix local\_file target result unstable. [\#141](https://github.com/tumugi/tumugi/pull/141) ([hakobera](https://github.com/hakobera))
13
+
3
14
  ## [v0.7.0](https://github.com/tumugi/tumugi/tree/v0.7.0) (2016-11-01)
4
15
  [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.6.3...v0.7.0)
5
16
 
@@ -13,14 +24,15 @@
13
24
 
14
25
  **Merged pull requests:**
15
26
 
27
+ - Prepare release for v0.7.0 [\#130](https://github.com/tumugi/tumugi/pull/130) ([hakobera](https://github.com/hakobera))
28
+ - Write workflow and task elapsed time to log [\#124](https://github.com/tumugi/tumugi/pull/124) ([hakobera](https://github.com/hakobera))
29
+ - Bumpup version to 0.7.0.dev [\#115](https://github.com/tumugi/tumugi/pull/115) ([hakobera](https://github.com/hakobera))
16
30
  - Introduce success/failure event callback [\#128](https://github.com/tumugi/tumugi/pull/128) ([hakobera](https://github.com/hakobera))
17
31
  - Support force run all tasks [\#127](https://github.com/tumugi/tumugi/pull/127) ([hakobera](https://github.com/hakobera))
18
- - Write workflow and task elapsed time to log [\#124](https://github.com/tumugi/tumugi/pull/124) ([hakobera](https://github.com/hakobera))
19
32
  - Filter coverage target files [\#121](https://github.com/tumugi/tumugi/pull/121) ([hakobera](https://github.com/hakobera))
20
33
  - Test with jruby-9.1.5.0 on travis [\#120](https://github.com/tumugi/tumugi/pull/120) ([hakobera](https://github.com/hakobera))
21
34
  - Introduce new sub commands [\#119](https://github.com/tumugi/tumugi/pull/119) ([hakobera](https://github.com/hakobera))
22
35
  - Add param secret option [\#118](https://github.com/tumugi/tumugi/pull/118) ([hakobera](https://github.com/hakobera))
23
- - Bumpup version to 0.7.0.dev [\#115](https://github.com/tumugi/tumugi/pull/115) ([hakobera](https://github.com/hakobera))
24
36
 
25
37
  ## [v0.6.3](https://github.com/tumugi/tumugi/tree/v0.6.3) (2016-08-13)
26
38
  [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.6.2...v0.6.3)
@@ -305,4 +317,4 @@
305
317
 
306
318
 
307
319
 
308
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
320
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -7,7 +7,7 @@ module Tumugi
7
7
  def_delegators :@temp_file,
8
8
  :bin_mode?, :print, :printf, :putc, :puts, :write,
9
9
  :seek, :set_encoding, :sync, :sync=, :sysseek,
10
- :syswrite, :write, :write_nonblock
10
+ :syswrite, :write, :write_nonblock, :flush
11
11
 
12
12
  def initialize(path)
13
13
  @path = path
@@ -30,6 +30,7 @@ module Tumugi
30
30
 
31
31
  def close
32
32
  if @temp_file
33
+ @temp_file.flush
33
34
  move_to_final_destination(@temp_file)
34
35
  @temp_file.close
35
36
  @temp_file = nil
@@ -1,3 +1,3 @@
1
1
  module Tumugi
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
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.7.0
4
+ version: 0.7.1
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-11-01 00:00:00.000000000 Z
11
+ date: 2017-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -270,7 +270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
270
270
  version: '0'
271
271
  requirements: []
272
272
  rubyforge_project:
273
- rubygems_version: 2.5.1
273
+ rubygems_version: 2.5.2
274
274
  signing_key:
275
275
  specification_version: 4
276
276
  summary: Tumugi is a library to build, run and manage complex workflows. Tumugi enables