shellplay 0.0.8 → 0.0.9

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: cd8a8bcdfaed9eba512c6ac385d427d822764b02
4
- data.tar.gz: 853a25e9b05ee965a95dd8c7e2305c50c4b345f2
3
+ metadata.gz: ba6ca8828951742fde4d0454df7e456e52bcc4b2
4
+ data.tar.gz: 7ff07ac4580c97d429b92dfc9922e85f7b71b47f
5
5
  SHA512:
6
- metadata.gz: 6505d6294617e138774477534d96ca97edceca8e349c2f69e0699ca02d6ca32c912e0b2648c237dc026d4557e49f87734cfd71135ae25a405399532b7c25a376
7
- data.tar.gz: e52aa0a301d8fb8c109fd41778049cabc1e6245dbd401c687c71661c18872612ab76f0c3bf81255605d3d19bb32cade644fe51daabb8803b3e91d668510a41ab
6
+ metadata.gz: 1feb5dee5f89cf4c1d85292c2418236254dbdb8234ec84f5cdcf045a12334297cfeaae26a0da8995cb5abc2811d7f600491ed32d4c3f9ff0def91fd3208c3c92
7
+ data.tar.gz: 6ddec235ddd612b530eed54e97789427078313c208889d5ea0f5fe700b40100c90bef99cb6f0c848b0a16e216e19a29ad3007646d5ecf2725c16b983d7e5f9fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Shellplay Changelog
2
2
  =========================
3
3
 
4
+ v0.0.9 - 2014-08-13
5
+ ------------------
6
+ - fix the fix of creation of config dir
7
+
4
8
  v0.0.8 - 2014-08-13
5
9
  ------------------
6
10
  - fix creation of the config dir at first launch
@@ -1,5 +1,6 @@
1
1
  require 'cliprompt'
2
2
  require 'configstruct'
3
+ require 'fileutils'
3
4
 
4
5
  module Shellplay
5
6
  class Config < ConfigStruct
@@ -8,7 +9,7 @@ module Shellplay
8
9
 
9
10
  def initialize(options = nil, input = STDIN, output = STDOUT)
10
11
  confdir = File.join(ENV['HOME'], '.shellplay')
11
- FileUtils.mkdir_p confdir unless Dir.exist? confdir
12
+ FileUtils::mkdir_p confdir unless Dir.exist? confdir
12
13
  super(options = nil, input = STDIN, output = STDOUT)
13
14
  end
14
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shellplay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - mose