git 1.2.2 → 1.2.3

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 (3) hide show
  1. data/README +2 -6
  2. data/lib/git/lib.rb +2 -1
  3. metadata +2 -2
data/README CHANGED
@@ -4,19 +4,15 @@ Library for using Git in Ruby. Test.
4
4
 
5
5
  = Homepage
6
6
 
7
- The Ruby/Git homepage is currently at :
8
-
9
- http://jointheconversation.org/rubygit
10
-
11
7
  Git public hosting of the project source code is at:
12
8
 
13
- http://github/schacon/ruby-git
9
+ http://github.com/schacon/ruby-git
14
10
 
15
11
  = Install
16
12
 
17
13
  You can install Ruby/Git like this:
18
14
 
19
- $ sudo gem install schacon-git --source=http://gems.github.com
15
+ $ sudo gem install git
20
16
 
21
17
  = Major Objects
22
18
 
@@ -711,7 +711,8 @@ module Git
711
711
  end
712
712
 
713
713
  def escape(s)
714
- "'" + s.to_s.gsub('\'', '\'\\\'\'') + "'"
714
+ escaped = s.to_s.gsub('\'', '\'\\\'\'')
715
+ %Q{"#{escaped}"}
715
716
  end
716
717
 
717
718
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-02 00:00:00 -04:00
12
+ date: 2009-09-30 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15