spock 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
@@ -0,0 +1,16 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ spock (0.0.1)
5
+ trollop (~> 2.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ trollop (2.0)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ spock!
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Spock
1
+ # Spock [![Code Climate](https://codeclimate.com/badge.png)](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
+
@@ -1,4 +1,5 @@
1
1
  require "spock/version"
2
+ require "fileutils"
2
3
 
3
4
  class Spock
4
5
 
@@ -1,3 +1,3 @@
1
1
  class Spock
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
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