cmd_tools 4.2.0 → 4.2.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.
@@ -16,7 +16,7 @@ module ::CmdTools::Config
16
16
  # (Re)load config file.
17
17
  def self.load
18
18
  need_dump = false
19
- @config = if File.readable?(CONFIG_FILE)
19
+ @config = if File.readable?(CONFIG_FILE) && File.size(CONFeIG_FILE) > 0
20
20
  config_from_file = YAML.load_file(CONFIG_FILE)
21
21
  config = CONFIG_DEFAULT.merge(config_from_file)
22
22
  need_dump = config_from_file.size != CONFIG_DEFAULT.size
@@ -30,7 +30,10 @@ module ::CmdTools::Config
30
30
 
31
31
  if need_dump
32
32
  FileUtils.mkdir_p(CONFIG_DIR)
33
- open(CONFIG_FILE, 'w').write(@config.to_yaml)
33
+ open(CONFIG_FILE, 'w'){|io|
34
+ io.write(@config.to_yaml)
35
+ io.flush
36
+ }
34
37
  end
35
38
 
36
39
  @config.each{|name, val|
@@ -1,3 +1,3 @@
1
1
  module CmdTools
2
- VERSION = '4.2.0'
2
+ VERSION = '4.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmd_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-11-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby_patch
16
- requirement: &2152489040 !ruby/object:Gem::Requirement
16
+ requirement: &2152865140 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '2.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2152489040
24
+ version_requirements: *2152865140
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: thor
27
- requirement: &2152487640 !ruby/object:Gem::Requirement
27
+ requirement: &2152864500 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0.16'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2152487640
35
+ version_requirements: *2152864500
36
36
  description: ! 'Command line tools. Please type
37
37
 
38
38
 
@@ -76,7 +76,7 @@ post_install_message: ! '
76
76
 
77
77
  # CmdTools
78
78
 
79
- export PATH=${HOME}/.gem/ruby/1.9.1/gems/cmd_tools-4.2.0/bin/command:${PATH}
79
+ export PATH=${HOME}/.gem/ruby/1.9.1/gems/cmd_tools-4.2.1/bin/command:${PATH}
80
80
 
81
81
 
82
82
  '