simple_git 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- data/README.md +25 -0
- data/lib/simple_git/repository.rb +5 -1
- data/lib/simple_git/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdb1902dec8bb172009fcc2248ef4bd603fdd179ef9068c0d6811e813363a132
|
4
|
+
data.tar.gz: 5bb013a78bc27ed4a7969eb438597016f3e525347383f814caada7ba80c9b206
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66407df6d074172e70dae66d6cb5a20693ff1386997e5e28440296ce7743530a0ffa82360c5c950d58446a459ce5a7dbb7ecc90f2468e3f5b60d3e57a971c055
|
7
|
+
data.tar.gz: 3383ffa03fd3273bba8eb6e0a37dee14224b7af77c806f61c8dea121fdae19e4143b4e3d11f84ae4e1919f7bb42710acbbfde9e03a5a38fe00c858da84009101
|
data/README.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1
1
|
# simple_git
|
2
2
|
|
3
3
|
High-level git wrapper for rb-libgit2
|
4
|
+
|
5
|
+
## Example
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
require 'simple_git'
|
9
|
+
|
10
|
+
repo = SimpleGit::Repository.new('/path/to/git/repo')
|
11
|
+
walk = SimpleGit::Revwalk.new(repo)
|
12
|
+
|
13
|
+
puts "Current HEAD: #{repo.revparse('HEAD')}\n"
|
14
|
+
|
15
|
+
walk.sort(:GIT_SORT_TOPOLOGICAL)
|
16
|
+
walk.push_head
|
17
|
+
|
18
|
+
puts 'Last 25 commits:\n'
|
19
|
+
|
20
|
+
walk.take(25).each do |c|
|
21
|
+
next if c.parent_count != 1
|
22
|
+
|
23
|
+
stat = c.diff(c.parent(0)).stats
|
24
|
+
|
25
|
+
puts "Commit #{c.oid[0..7]} by #{c.author.name} #{c.author.email} (+#{stat.insertions}/-#{stat.deletions}):"
|
26
|
+
puts " #{c.message}"
|
27
|
+
end
|
28
|
+
```
|
@@ -4,7 +4,11 @@ module SimpleGit
|
|
4
4
|
|
5
5
|
def initialize(path)
|
6
6
|
wrapper = RepositoryWrapper.new
|
7
|
-
Git2.git_repository_open(wrapper, path)
|
7
|
+
ret = Git2.git_repository_open(wrapper, path)
|
8
|
+
if ret != 0
|
9
|
+
error = Git2::GitError.new(Git2.giterr_last)
|
10
|
+
raise ArgumentError, error[:message].read_string
|
11
|
+
end
|
8
12
|
|
9
13
|
@ptr = wrapper[:repo]
|
10
14
|
|
data/lib/simple_git/version.rb
CHANGED