bobkit 0.1.6 → 0.1.7
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/README.md +2 -2
- data/lib/bobkit/version.rb +1 -1
- data/lib/bobkit/watcher.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86df02125d472098f93079cdde562f4443f32962
|
4
|
+
data.tar.gz: '038c94c77d185d7aa3b4bd80fa15e4d3a365a995'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bc22204f2640e1c9445cb9c912e20f6887ebdfe667dabc1f83b93222142060d2cf25c2b9a001c739030e659f14df64553496c5e0465ea09cb2753c1b7785e00
|
7
|
+
data.tar.gz: 43cc053d23d871c6a5378b31661cebdb585845e488c34a1f54f51e226940a1a20e32635bf150a4062f271cbef87c3ff11402a6209818e45032998e3798f76032
|
data/README.md
CHANGED
@@ -249,7 +249,7 @@ can use any of these methods.
|
|
249
249
|
copy_file 'exact/path.zip', 'exact/output/file.zip'
|
250
250
|
|
251
251
|
# Copy a folder - needed parent folders will be created as needed
|
252
|
-
|
252
|
+
copy_folder 'exact/path', 'exact/output/folder'
|
253
253
|
|
254
254
|
# Create folder, and any of the needed parent folders
|
255
255
|
create_folder 'my_folder'
|
@@ -277,7 +277,7 @@ end
|
|
277
277
|
```
|
278
278
|
|
279
279
|
The watch command is just like
|
280
|
-
`
|
280
|
+
`Filewatcher.new([...]).watch() do |filename, event|`
|
281
281
|
with the exception that the array of paths to watch is optional. If none
|
282
282
|
provided, we will watch all the input folders.
|
283
283
|
|
data/lib/bobkit/version.rb
CHANGED
data/lib/bobkit/watcher.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bobkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: slim
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0
|
89
|
+
version: '1.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0
|
96
|
+
version: '1.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: therubyracer
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|