git-up 0.0.0 → 0.1.0

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.
Files changed (5) hide show
  1. data/README.md +5 -0
  2. data/VERSION +1 -1
  3. data/git-up.gemspec +2 -2
  4. data/lib/git-up.rb +2 -2
  5. metadata +2 -2
data/README.md CHANGED
@@ -7,3 +7,8 @@ Solve it once and for all:
7
7
 
8
8
  ![gem install git-up](http://dl.dropbox.com/u/166030/nonsense/git-up.png)
9
9
 
10
+ although
11
+ --------
12
+
13
+ `git-up` might mess up your branches, or set your chest hair on fire, or be racist to your cat, I don't know. It works for me.
14
+
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.1.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{git-up}
8
- s.version = "0.0.0"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Aanand Prasad"]
12
- s.date = %q{2009-12-22}
12
+ s.date = %q{2010-01-15}
13
13
  s.default_executable = %q{git-up}
14
14
  s.email = %q{aanand.prasad@gmail.com}
15
15
  s.executables = ["git-up"]
@@ -3,12 +3,12 @@ require 'grit'
3
3
 
4
4
  class GitUp
5
5
  def initialize(args)
6
- @repo = Grit::Repo.new(args.first || File.expand_path("."))
6
+ @repo = Grit::Repo.new(File.expand_path("."))
7
7
  @head = @repo.head
8
8
  end
9
9
 
10
10
  def run
11
- @repo.git.fetch
11
+ system "git fetch"
12
12
 
13
13
  with_stash do
14
14
  returning_to_current_branch do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-up
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aanand Prasad
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-22 00:00:00 -05:00
12
+ date: 2010-01-15 00:00:00 -05:00
13
13
  default_executable: git-up
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency