tumugi 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8245cbb305b7100cc7b3c522ee232d89ac6704c6
4
- data.tar.gz: 3a7b0605e4f5b7e7fbc5b8fa0b77c1c5c9c932c2
3
+ metadata.gz: d097fbd84b2e0cbe35d75c307cfaabf6f3627aee
4
+ data.tar.gz: 3d08f180dac47101cc308b7574d4188365b9f1bc
5
5
  SHA512:
6
- metadata.gz: 081770a32be9360b5c3dec706f5277cfe22c42b1d2ad21771bfa3567b83a75451d7f2ab71dfcf69c5e0391e11b8224172d9ec71a9e7c1b1c40ddf2eaed0c05cf
7
- data.tar.gz: 010e6fcb0d19a20c8e7e33fddb06f63cbac19b5f15a45f40cc381cc0c36522fee4ef80b7939358318d2e7b20566ffb65c0f0b4174e2ccb74fdc0aaa0f35dfd38
6
+ metadata.gz: 53f05ad5df3653c4effe4d22a4eb49f82c8f862c2fa81572f837ddbd0af5a1ed56e1ecdf6acd1b19d661aa8699bc1640488fbd2095075ee1f09d336a19be0157
7
+ data.tar.gz: 7f70098d0f37930fd9053753dbd339edd42812b30f44edd7f0ce1c4408133c584a38c83e964fc19ac8e0cbc6b5e5896ec8880981f4fcc4fcd20399b8c9a21f92
@@ -1,14 +1,20 @@
1
1
  # Change Log
2
2
 
3
- ## [0.6.0](https://github.com/tumugi/tumugi/tree/0.6.0) (2016-07-09)
4
- [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.5.3...0.6.0)
3
+ ## [0.6.1](https://github.com/tumugi/tumugi/tree/0.6.1) (2016-07-11)
4
+ [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.6.0...0.6.1)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Suppress unusable info log [\#102](https://github.com/tumugi/tumugi/pull/102) ([hakobera](https://github.com/hakobera))
9
+
10
+ ## [v0.6.0](https://github.com/tumugi/tumugi/tree/v0.6.0) (2016-07-09)
11
+ [Full Changelog](https://github.com/tumugi/tumugi/compare/v0.5.3...v0.6.0)
5
12
 
6
13
  **Implemented enhancements:**
7
14
 
8
15
  - Refactoring executor [\#95](https://github.com/tumugi/tumugi/issues/95)
9
16
  - Improve log [\#87](https://github.com/tumugi/tumugi/issues/87)
10
17
  - DSL improvement [\#81](https://github.com/tumugi/tumugi/issues/81)
11
- - Support dryrun option [\#55](https://github.com/tumugi/tumugi/issues/55)
12
18
  - param\_set accept block [\#53](https://github.com/tumugi/tumugi/issues/53)
13
19
  - Plugin test helper [\#29](https://github.com/tumugi/tumugi/issues/29)
14
20
  - Plugin template generator [\#28](https://github.com/tumugi/tumugi/issues/28)
@@ -28,6 +34,7 @@
28
34
 
29
35
  **Merged pull requests:**
30
36
 
37
+ - Prepare release for 0.6.0 [\#101](https://github.com/tumugi/tumugi/pull/101) ([hakobera](https://github.com/hakobera))
31
38
  - Remove File.exists? [\#100](https://github.com/tumugi/tumugi/pull/100) ([hakobera](https://github.com/hakobera))
32
39
  - Remove development dependency: github\_changelog\_generator [\#98](https://github.com/tumugi/tumugi/pull/98) ([hakobera](https://github.com/hakobera))
33
40
  - Refactoring executor [\#97](https://github.com/tumugi/tumugi/pull/97) ([hakobera](https://github.com/hakobera))
@@ -4,8 +4,6 @@ require 'concurrent'
4
4
  require 'tumugi'
5
5
  require 'tumugi/error'
6
6
 
7
- Concurrent.use_stdlib_logger(Logger::DEBUG)
8
-
9
7
  module Tumugi
10
8
  module Executor
11
9
  class LocalExecutor
@@ -30,7 +28,7 @@ module Tumugi
30
28
 
31
29
  Concurrent::Future.execute(executor: pool) do
32
30
  if !task.runnable?(Time.now)
33
- info "not_runnable: #{task.id}"
31
+ debug { "not_runnable: #{task.id}" }
34
32
  enqueue_task(task)
35
33
  else
36
34
  begin
@@ -1,3 +1,3 @@
1
1
  module Tumugi
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.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.6.0
4
+ version: 0.6.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-07-09 00:00:00.000000000 Z
11
+ date: 2016-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby