tumugi 0.5.2 → 0.5.3
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 +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/tumugi/config.rb +1 -1
- data/lib/tumugi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee5ae43e408b981ed963063ab589495702a573ba
|
|
4
|
+
data.tar.gz: 0bded13c3f3eb229613b724b04c96963741b0d09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50c955ce2e7f277bcda63d977aae3eaafe1c4ed0e989df7a490592b61d43cc1478fa844221dc2f3c6f6187f50dbc15882f4beceefdd0ca1a64ad5acaff51ffe0
|
|
7
|
+
data.tar.gz: a4e031251a9b2a4077bde42d735f7aa06f29c55ec1c9b6452bd5d3b0dbd672a933fbb9a89cb384bda9ac53bc0bf0e52863c3cb3ca2b540c029d98842a20f8f03
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.5.
|
|
4
|
-
[Full Changelog](https://github.com/tumugi/tumugi/compare/v0.5.
|
|
3
|
+
## [0.5.3](https://github.com/tumugi/tumugi/tree/0.5.3) (2016-06-14)
|
|
4
|
+
[Full Changelog](https://github.com/tumugi/tumugi/compare/v0.5.2...0.5.3)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- Fix logger not defiend in Tumugi::Config [\#79](https://github.com/tumugi/tumugi/pull/79) ([hakobera](https://github.com/hakobera))
|
|
9
|
+
|
|
10
|
+
## [v0.5.2](https://github.com/tumugi/tumugi/tree/v0.5.2) (2016-06-13)
|
|
11
|
+
[Full Changelog](https://github.com/tumugi/tumugi/compare/v0.5.1...v0.5.2)
|
|
5
12
|
|
|
6
13
|
**Implemented enhancements:**
|
|
7
14
|
|
|
@@ -13,6 +20,7 @@
|
|
|
13
20
|
|
|
14
21
|
**Merged pull requests:**
|
|
15
22
|
|
|
23
|
+
- Prepare release for 0.5.2 [\#78](https://github.com/tumugi/tumugi/pull/78) ([hakobera](https://github.com/hakobera))
|
|
16
24
|
- when type is boolean and default value is false, it should return false [\#77](https://github.com/tumugi/tumugi/pull/77) ([hakobera](https://github.com/hakobera))
|
|
17
25
|
- Add to\_s method to FileSystemTarget [\#74](https://github.com/tumugi/tumugi/pull/74) ([hakobera](https://github.com/hakobera))
|
|
18
26
|
|
data/lib/tumugi/config.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Tumugi
|
|
|
52
52
|
begin
|
|
53
53
|
@section_procs[name].call(@section_instances[name])
|
|
54
54
|
rescue NoMethodError => e
|
|
55
|
-
logger.error "#{e.message}. Available attributes are #{@section_instances[name].members}"
|
|
55
|
+
Config.logger.error "#{e.message}. Available attributes are #{@section_instances[name].members}"
|
|
56
56
|
raise e
|
|
57
57
|
end if @section_procs[name]
|
|
58
58
|
end
|
data/lib/tumugi/version.rb
CHANGED
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.5.
|
|
4
|
+
version: 0.5.3
|
|
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-06-
|
|
11
|
+
date: 2016-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|