homesick 0.9.6 → 0.9.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +0 -3
- data/Rakefile +1 -1
- data/homesick.gemspec +2 -2
- data/lib/homesick/actions.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -27,9 +27,6 @@ With the castle cloned, you can now link its contents into your home dir:
|
|
27
27
|
|
28
28
|
homesick symlink pickled-vim
|
29
29
|
|
30
|
-
If you use the shorthand syntax for GitHub repositories in your clone, please note you will instead need to run:
|
31
|
-
|
32
|
-
homesick symlink technicalpickles/pickled-vim
|
33
30
|
|
34
31
|
You can remove symlinks anytime when you don't need them anymore
|
35
32
|
|
data/Rakefile
CHANGED
@@ -22,7 +22,7 @@ Jeweler::Tasks.new do |gem|
|
|
22
22
|
gem.email = ["josh@technicalpickles.com", "info@muratayusuke.com"]
|
23
23
|
gem.homepage = "http://github.com/technicalpickles/homesick"
|
24
24
|
gem.authors = ["Joshua Nichols", "Yusuke Murata"]
|
25
|
-
gem.version = "0.9.
|
25
|
+
gem.version = "0.9.7"
|
26
26
|
gem.license = "MIT"
|
27
27
|
# Have dependencies? Add them to Gemfile
|
28
28
|
|
data/homesick.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "homesick"
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Joshua Nichols", "Yusuke Murata"]
|
12
|
-
s.date = "2013-
|
12
|
+
s.date = "2013-11-02"
|
13
13
|
s.description = "\n A man's home (directory) is his castle, so don't leave home with out it.\n\n Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing dotfiles, and saves them in ~/.homesick. It then allows you to symlink all the dotfiles into place with a single command. \n\n "
|
14
14
|
s.email = ["josh@technicalpickles.com", "info@muratayusuke.com"]
|
15
15
|
s.executables = ["homesick"]
|
data/lib/homesick/actions.rb
CHANGED
@@ -10,7 +10,7 @@ class Homesick
|
|
10
10
|
|
11
11
|
if ! destination.directory?
|
12
12
|
say_status 'git clone', "#{repo} to #{destination.expand_path}", :green unless options[:quiet]
|
13
|
-
system "git clone -q --recursive #{repo} #{destination}" unless options[:pretend]
|
13
|
+
system "git clone -q --config push.default=upstream --recursive #{repo} #{destination}" unless options[:pretend]
|
14
14
|
else
|
15
15
|
say_status :exist, destination.expand_path, :blue unless options[:quiet]
|
16
16
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: homesick
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-11-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
@@ -186,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
186
186
|
version: '0'
|
187
187
|
segments:
|
188
188
|
- 0
|
189
|
-
hash:
|
189
|
+
hash: 2793752192583116957
|
190
190
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
191
|
none: false
|
192
192
|
requirements:
|