shellplay 0.0.7 → 0.0.8

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: 6f8f5cb88df6cc5ab166a35c6edec2e75d3c0539
4
- data.tar.gz: 31a54955f161ff904ddd3deeac0a9936d01ac777
3
+ metadata.gz: cd8a8bcdfaed9eba512c6ac385d427d822764b02
4
+ data.tar.gz: 853a25e9b05ee965a95dd8c7e2305c50c4b345f2
5
5
  SHA512:
6
- metadata.gz: f250f0d76cc07130935c499b16dd36bf193df2f188a1e8e4e18decc1c8cd48e21ac3357bfb042e76b44dc36252151e9bf5b6f06c0335de5891212d5f3758bc28
7
- data.tar.gz: 80ed723b12f5755967e8ea57a504cdb6e2f325469c0afbd8de7408367062877cde6274d499aef11a58109812b0ea02486f567fac08c231b05991f8ff5ed28848
6
+ metadata.gz: 6505d6294617e138774477534d96ca97edceca8e349c2f69e0699ca02d6ca32c912e0b2648c237dc026d4557e49f87734cfd71135ae25a405399532b7c25a376
7
+ data.tar.gz: e52aa0a301d8fb8c109fd41778049cabc1e6245dbd401c687c71661c18872612ab76f0c3bf81255605d3d19bb32cade644fe51daabb8803b3e91d668510a41ab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Shellplay Changelog
2
2
  =========================
3
3
 
4
+ v0.0.8 - 2014-08-13
5
+ ------------------
6
+ - fix creation of the config dir at first launch
7
+
4
8
  v0.0.7 - 2014-08-13
5
9
  -------------------
6
10
  - fix exec of commandfs in shellplay
@@ -6,6 +6,12 @@ module Shellplay
6
6
 
7
7
  include Cliprompt
8
8
 
9
+ def initialize(options = nil, input = STDIN, output = STDOUT)
10
+ confdir = File.join(ENV['HOME'], '.shellplay')
11
+ FileUtils.mkdir_p confdir unless Dir.exist? confdir
12
+ super(options = nil, input = STDIN, output = STDOUT)
13
+ end
14
+
9
15
  def set_defaults
10
16
  default :basedir, File.join(ENV['HOME'], '.shellplay')
11
17
  super
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.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - mose