Eric West
b1c6c8f835
Handling edge cases
...
Covers only edge cases related to tracking, not yet
handling linking or updating. Getting a bit hairy,
must be refactored.
2013-11-23 19:36:35 +01:00
muratayusuke
7620f40cb2
symlink subdirs with .homesick_subdir
2013-11-23 19:36:34 +01:00
Eric West
cf9058be04
Track makes entries in .manifest
...
When a user tracks a file or directory that is in
a nested folder, Homesick creates a .manifest in the
user's castle (if there isn't one already) and adds
an entry listing the file or directory's parent
directory (if it isn't already listed).
2013-11-23 19:36:34 +01:00
Eric West
234532ebef
Specs for track
2013-11-23 19:36:34 +01:00
Eric West
ccddbb1316
Track now properly traverses folder structure
2013-11-23 19:36:34 +01:00
muratayusuke
4ef315d4e2
Regenerate gemspec for version 0.8.1
2013-11-23 19:36:34 +01:00
muratayusuke
9b7fe331f6
update changelog
2013-11-23 19:36:34 +01:00
muratayusuke
eeff0b40fb
update rake version
...
"rake spec" showed following warning
/home/muratayusuke/.rvm/gems/ruby-1.9.3-p392/gems/rake-0.8.7/lib/rake/alt_system.rb:32: Use RbConfig instead of obsolete and deprecated Config.
(in /mnt/projects/homesick)
/home/muratayusuke/.rvm/rubies/ruby-1.9.3-p392/bin/ruby -S rspec spec/homesick_spec.rb
so update rake version to fix it.
2013-11-23 19:36:34 +01:00
Eric West
0c933c0085
Fixes glob to work with 2.0.0
...
homesick list fails on ruby 2.0.0-rc2, I think because they fixed this
bug: https://bugs.ruby-lang.org/issues/6977 , changing the way recursive
globs work. Test case:
```ruby
require "homesick"
require "pathname"
repos = Homesick.new.send :repos_dir
Dir.glob("#{repos}/**/*/.git") # => []
Dir.glob("#{repos}/**/*/.git", File::FNM_DOTMATCH) # => ["/home/eric/.homesick/repos/dotfiles/.git"]
```
This change, however, then broke 1.9.3, but removing the extra "/*"
works on both 1.9 and 2.0.
2013-11-23 19:36:34 +01:00
muratayusuke
a3d94fcca6
add build status to README
2013-11-23 19:36:33 +01:00
muratayusuke
9fe1d190da
prepare for release 0.8.0
2013-11-23 19:36:33 +01:00
Jacob Buys
73981c2e75
Build with Travis CI
2013-11-23 19:36:33 +01:00
Josh Nichols
107dec388e
Fix git_clone to work with github URLs like https://github.com/technicalpickles/dotpickles
2013-11-23 19:36:33 +01:00
muratayusuke
1df44aea40
enable recursive submodule
2013-11-23 19:36:33 +01:00
Jason Buckner
3bc623be7c
perform a git add when doing a homesick track
2013-11-23 19:36:33 +01:00
Jason Buckner
123e6cf82d
splits up castle commit from castle push for more fine-grained control
2013-11-23 19:34:08 +01:00
Jason Buckner
5e9d134021
update documentation for naming consistency
2013-11-23 19:34:08 +01:00
Jason Buckner
0a022fddcc
fix homesick pull documentation
2013-11-23 19:34:08 +01:00
Jason Buckner
f18a4dc16f
add homesick push to readme, a placeholder test, and removed the all option from git push
2013-11-23 19:34:07 +01:00
Jason Buckner
9ac754fd40
start adding git push functionality
2013-11-23 19:34:07 +01:00
Jorge
2667053fde
Making git repos uri non greedy so it works with uris with /
2013-11-23 19:34:07 +01:00
Trae Robrock
8874994feb
Regenerate gemspec for version 0.9.7
v0.9.7
2013-11-02 16:03:57 -07:00
Trae Robrock
5a8b92f556
Bump version
2013-11-02 16:03:51 -07:00
Trae Robrock
a65c2e6a1f
Merge pull request #57 from boyvanduuren/issue_54
...
Git clone now uses config push.default upstream
2013-11-02 16:02:20 -07:00
bcd
2d0304feb1
Git clone now uses config push.default upstream
2013-11-02 21:15:51 +01:00
Trae Robrock
34fec63234
Merge pull request #56 from cball/update-readme
...
Remove symlink shorthand note in README
2013-10-30 15:20:33 -07:00
Chris Ball
1d5f27f567
Remove symlink shorthand note in README
...
Seems that using `homesick symlink <username>/<reponame>` after a clone does not locate the directory properly. `homesick symlink <reponame>` works in both cases regardless if the shorthand or full git url was used to clone.
2013-10-30 14:01:40 -04:00
Trae Robrock
093db8bdac
Regenerate gemspec for version 0.9.6
v0.9.6
2013-10-18 07:18:15 -07:00
Trae Robrock
04602efd6e
Bump version
2013-10-18 07:18:07 -07:00
Trae Robrock
3265de0c1d
Regenerate gemspec for version 0.9.5
2013-10-18 07:17:39 -07:00
Trae Robrock
e4a428e0c5
Merge pull request #55 from mingkai0812/master
...
Change github-repo pattern to allow numbers for usernames/repos
2013-10-18 07:15:05 -07:00
mingkai
6cc28450a4
Change github-repo pattern to allow numbers for usernames/repos
2013-10-18 14:35:56 +02:00
Yusuke Murata
a0c7fbacb7
Merge pull request #53 from boyvanduuren/issue52
...
Change the destination for the github clone shortcut
2013-10-07 09:39:40 -07:00
bcd87
b750094934
Rake now passes on Ruby 1.8.7 on my machine
2013-09-24 08:15:56 +02:00
bcd87
d953a964cd
Changed the spec, bundle exec rake works
2013-09-23 20:58:16 +02:00
bcd87
aa95ffac82
Using the homesick clone github shortcut now clones to ~/.homesick/repos/repo/, in stead of ~/.homesick/repos/username/repo/
2013-09-23 20:30:10 +02:00
Trae Robrock
9c345828b0
Regenerate gemspec for version 0.9.5
v0.9.5
2013-09-18 09:48:33 -07:00
Trae Robrock
59c137c653
Bump version the right way
2013-09-18 09:48:26 -07:00
Trae Robrock
3d405542af
Regenerate gemspec for version 0.9.4
2013-09-18 09:47:46 -07:00
Trae Robrock
88ff4b85ce
Bump version
2013-09-18 09:47:36 -07:00
Trae Robrock
461ac5f226
Merge pull request #51 from trobrock/fix-quoting
...
Files with parentheses in filename fail to symlink/track
2013-09-18 09:46:40 -07:00
Trae Robrock
a7d2d0a3f3
Add test for parens in filenames, and fixed
2013-09-18 09:25:09 -07:00
muratayusuke
191ce11d8e
Regenerate gemspec for version 0.9.4
v0.9.4
2013-07-31 23:41:49 +09:00
muratayusuke
0d28a3ef9b
bump up version
2013-07-31 23:41:36 +09:00
muratayusuke
ac34249afe
Regenerate gemspec for version 0.9.3
2013-07-31 23:40:22 +09:00
muratayusuke
d1f87be435
bump up version
2013-07-31 23:38:37 +09:00
muratayusuke
cbb6117d69
remove unused variables
2013-07-31 23:21:46 +09:00
muratayusuke
334a1db262
fix deprecated method: stub! -> stub
2013-07-31 23:14:51 +09:00
Yusuke Murata
e3bee69b27
Merge pull request #48 from trobrock/fix-homesickrc
...
Fix #19 homesickrc pathname needs a to_s to eval
2013-07-30 09:54:48 -07:00
Yusuke Murata
0ff5325e3e
Merge pull request #43 from johnbellone/master
...
Default GitHub to use HTTPS protocol.
2013-07-21 10:47:31 -07:00