charmkit 0.3.0 → 0.3.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: a4aaf465f5e2188921b780a65855c2b2882488c5
4
- data.tar.gz: 746c903f97888841dbc6f9a123600fe5e01fe7af
3
+ metadata.gz: 80eb981dc102d082b0f5596f4b83101d340faec0
4
+ data.tar.gz: 1a581779cc5df31754e6092f8a72bc50e793c3c7
5
5
  SHA512:
6
- metadata.gz: 104024317ce841e1c8094b015250934b543292580adab0b93f11a8e0f9963b938b5828defc1847020296744a9228150a0f670e80876d15b80e1f9e80754f4d52
7
- data.tar.gz: 04f4d7957d325899ef13ac254d4833550e732f9558ac12260a19e98de8362e99e2bf840510b04741626c476aba409e028c1ed64ab7a9d9ff18100a5b862016e6
6
+ metadata.gz: 35a5b80cb5a23b2834d6ee127935555b1897cf8b8f5641a22b0f636bcad3d328606ee89ad9ef6eb3d76707c1715abf087eef0ce0684eeafbcfbf83f277c069ea
7
+ data.tar.gz: dbfd92058d61b55b0e467c67c348409de3dd5de3446cb546b486c61869f8a5599599aea85b1756b8205ebb90f3b9cd1368885829578a6113e7d12c4644af85f7
@@ -0,0 +1,21 @@
1
+ require 'fileutils'
2
+
3
+ module Charmkit
4
+ module DSL
5
+ def file(src, content:)
6
+ File.write(src, content)
7
+ end
8
+
9
+ def is_file?(path)
10
+ return File.exists?(path)
11
+ end
12
+
13
+ def is_dir?(path)
14
+ return Dir.exists?(path)
15
+ end
16
+
17
+ def mkdir(path)
18
+ FileUtils.mkdir_p path unless is_dir? path
19
+ end
20
+ end
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Charmkit
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: charmkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Stokes
@@ -88,6 +88,7 @@ files:
88
88
  - examples/template.rb
89
89
  - examples/templates/user_auth.txt
90
90
  - lib/charmkit.rb
91
+ - lib/charmkit/fs.rb
91
92
  - lib/charmkit/hook-tools.rb
92
93
  - lib/charmkit/package.rb
93
94
  - lib/charmkit/runner.rb