git2 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d54cfc4f3fae4a2072bf96f650670219fd191a8b
4
- data.tar.gz: 0e00a3caa866316d158a1b85b0d6925fc39c9362
3
+ metadata.gz: 605caf9457ceae279fee4fee6cfa0628b77a39d9
4
+ data.tar.gz: 642998d75df72246d2645876d4e3e2ee6c102f29
5
5
  SHA512:
6
- metadata.gz: f784efdea2c023f9ae6e99cc06e73c187eac2185a61ae188ade9e7641347f73e3bb13714d599147a4bb1b3a2de75936b7b01f82d93113725b890e06051421fba
7
- data.tar.gz: 6988028e4226763520ec4053afe4080769b3b615cde776ef2cf8aa88018c8deafc3f13e2abbeb5e3c3443b0434779a2cccd41b959c40100c126ed55c31d5353f
6
+ metadata.gz: c811105179154fc9dd1b53d1185040241c8b9baa6bb54c222299cb51e738858f26f2d1dd21c0e8a72f1201da8aff9be4b93a18b1a699930c2948e549bfecc303
7
+ data.tar.gz: b64faf3b9a317b94a9f87a06067bbb2fa1b459edf05b2d090701e19dfa8e9cfc3a973c937b67d0cfe4956c68520ba7961128b0b84109944e4e9382a2b9a6ba79
data/README.md CHANGED
@@ -2,20 +2,6 @@
2
2
 
3
3
  Git2 implement git commands in rugged and libgit2.
4
4
 
5
- Currently available commands are:
6
-
7
- git-upload-pack
8
- Send objects packed back to git-fetch-pack.
9
- git-pack-objects
10
- Create a packed archive of objects.
11
-
12
- git-receive-pack
13
- Receive what is pushed into the repository.
14
- git-unpack-objects
15
- Unpack objects from a packed archive.
16
- git-index-pack
17
- Build pack index file for an existing packed archive.
18
-
19
5
  [![Gem Version](https://badge.fury.io/rb/git2.svg)](https://badge.fury.io/rb/git2)
20
6
  [![Build Status](https://travis-ci.org/pmq20/git2.svg)](https://travis-ci.org/pmq20/git2)
21
7
  [![Code Climate](https://codeclimate.com/github/pmq20/git2/badges/gpa.svg)](https://codeclimate.com/github/pmq20/git2)
@@ -28,7 +14,21 @@ Currently available commands are:
28
14
 
29
15
  ## Usage
30
16
 
31
- git <command> [<args>]
17
+ git2 <command> [<args>]
18
+
19
+ Currently available commands are:
20
+
21
+ upload-pack
22
+ Send objects packed back to git-fetch-pack.
23
+ pack-objects
24
+ Create a packed archive of objects.
25
+
26
+ receive-pack
27
+ Receive what is pushed into the repository.
28
+ unpack-objects
29
+ Unpack objects from a packed archive.
30
+ index-pack
31
+ Build pack index file for an existing packed archive.
32
32
 
33
33
  ## Development
34
34
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module Git2
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - P.S.V.R
@@ -84,11 +84,7 @@ description:
84
84
  email:
85
85
  - pmq2001@gmail.com
86
86
  executables:
87
- - git
88
- - git-pack-objects
89
- - git-receive-pack
90
- - git-unpack-objects
91
- - git-upload-pack
87
+ - git2
92
88
  extensions: []
93
89
  extra_rdoc_files: []
94
90
  files:
@@ -101,11 +97,7 @@ files:
101
97
  - Rakefile
102
98
  - bin/console
103
99
  - bin/setup
104
- - exe/git
105
- - exe/git-pack-objects
106
- - exe/git-receive-pack
107
- - exe/git-unpack-objects
108
- - exe/git-upload-pack
100
+ - exe/git2
109
101
  - git2.gemspec
110
102
  - lib/git2.rb
111
103
  - lib/git2/version.rb
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'git2'
3
- puts "Todo: git pack-objects by git2"
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'git2'
3
- puts "Todo: git receive-pack by git2"
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'git2'
3
- puts "Todo: git unpack-objects by git2"
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'git2'
3
- puts "Todo: git upload-pack by git2"