spock 0.0.1 → 0.0.2
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.
- data/.gitignore +0 -1
- data/Gemfile.lock +16 -0
- data/README.md +18 -1
- data/lib/spock.rb +1 -0
- data/lib/spock/version.rb +1 -1
- metadata +4 -3
data/.gitignore
CHANGED
data/Gemfile.lock
ADDED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Spock
|
|
1
|
+
# Spock [](https://codeclimate.com/github/ariofrio/oration)
|
|
2
2
|
|
|
3
3
|
Merge multiple directories into one using symlinks (copies on Windows). It's like [Spock][]'s mind meld. Kind of. Not really.
|
|
4
4
|
|
|
@@ -12,6 +12,10 @@ Merge multiple directories into one using symlinks (copies on Windows). It's lik
|
|
|
12
12
|
|
|
13
13
|
See [spock/examples][] for sample configuration files. Place yours in ~/.spockrc, ~/Dropbox/.spockrc, or ~/Dropbox/Apps/Spock/spockrc. Then, run
|
|
14
14
|
|
|
15
|
+
spock --dry-run
|
|
16
|
+
|
|
17
|
+
If you are satisfied, run
|
|
18
|
+
|
|
15
19
|
spock
|
|
16
20
|
|
|
17
21
|
You can also a configuration file anywhere by running
|
|
@@ -27,3 +31,16 @@ You can also a configuration file anywhere by running
|
|
|
27
31
|
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
28
32
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
29
33
|
5. Create new Pull Request
|
|
34
|
+
|
|
35
|
+
## History
|
|
36
|
+
|
|
37
|
+
0.0.2:
|
|
38
|
+
|
|
39
|
+
- Fix "uninitialized constant Spock::FileUtils" error
|
|
40
|
+
|
|
41
|
+
0.0.1:
|
|
42
|
+
|
|
43
|
+
- Support for target prefix (useful for dotfile management)
|
|
44
|
+
- Support for multiple sources, first takes precedence
|
|
45
|
+
- Support for Windows using simple copies
|
|
46
|
+
|
data/lib/spock.rb
CHANGED
data/lib/spock/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Andres Riofrio
|
|
@@ -44,6 +44,7 @@ extra_rdoc_files: []
|
|
|
44
44
|
files:
|
|
45
45
|
- .gitignore
|
|
46
46
|
- Gemfile
|
|
47
|
+
- Gemfile.lock
|
|
47
48
|
- LICENSE
|
|
48
49
|
- README.md
|
|
49
50
|
- Rakefile
|