simple_git 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ec33662c6ec067a7ff1acfd4474faa39c266514095ea15d4e07a3dcc460a29d0
4
+ data.tar.gz: 7868fef5e6f901c66c69719e981aa4ff3e02183fc0f4fca5a5c42a6d1b6409a1
5
+ SHA512:
6
+ metadata.gz: 40483dd8f8d26fe3b9bec4a19974261598405edacd0ae661bb2b1f030b6595ea4f7500b7011ddad31bf38c239ba92f3c273aa7b2a0766933253a6c5ea01789e0
7
+ data.tar.gz: 6eb55b0c2721adf84c3a2191a3c7f08fd4b983bc33a41ef2d79502801bffd9333d126fca8cf03f1bf55d8e6b27b0e2d7abf6dec55fdd7a93d1136769de750bee
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
data/COPYING ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2019 Liam P. White
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # simple_git
2
+
3
+ High-level git wrapper for rb-libgit2
@@ -0,0 +1,62 @@
1
+ module SimpleGit
2
+ class Commit
3
+ attr_accessor :ptr
4
+
5
+ def initialize(repo, oid)
6
+ wrapper = CommitWrapper.new
7
+ Git2.git_commit_lookup(wrapper, repo.ptr, oid.ptr)
8
+
9
+ @repo = repo
10
+ @oid = oid.to_s
11
+ @ptr = wrapper[:commit]
12
+
13
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
14
+ end
15
+
16
+ def parent(n)
17
+ wrapper = CommitWrapper.new
18
+ Git2.git_commit_parent(wrapper, @ptr, n)
19
+
20
+ c = Commit.allocate
21
+ c.ptr = wrapper[:commit]
22
+ ObjectSpace.define_finalizer(c, c.class.finalize(c.ptr))
23
+
24
+ c
25
+ end
26
+
27
+ def parent_count
28
+ Git2.git_commit_parentcount(@ptr)
29
+ end
30
+
31
+ def tree
32
+ @tree ||= Tree.new.from_commit(self)
33
+ end
34
+
35
+ def author
36
+ @author ||= Signature.new(self)
37
+ end
38
+
39
+ def message
40
+ @message ||= Git2.git_commit_message(@ptr).read_string
41
+ end
42
+
43
+ def oid
44
+ @oid
45
+ end
46
+
47
+ def diff(new_commit, options = nil)
48
+ @diffs ||= {}
49
+ @diffs[options] ||= Diff.new.from_trees(@repo, tree, new_commit.tree, options || DiffOptions.new)
50
+ end
51
+
52
+ private
53
+
54
+ def self.finalize(ptr)
55
+ proc { Git2.git_commit_free(ptr) }
56
+ end
57
+
58
+ class CommitWrapper < FFI::Struct
59
+ layout :commit, Git2::GitCommit.by_ref
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,29 @@
1
+ module SimpleGit
2
+ class Diff
3
+ attr_accessor :ptr
4
+
5
+ def from_trees(repo, old_tree, new_tree, options)
6
+ wrapper = DiffWrapper.new
7
+ Git2.git_diff_tree_to_tree(wrapper, repo.ptr, old_tree.ptr, new_tree.ptr, options.ptr)
8
+
9
+ @ptr = wrapper[:diff]
10
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
11
+
12
+ self
13
+ end
14
+
15
+ def stats
16
+ @stats ||= DiffStat.new(self)
17
+ end
18
+
19
+ private
20
+
21
+ def self.finalize(ptr)
22
+ proc { Git2.git_diff_free(ptr) }
23
+ end
24
+
25
+ class DiffWrapper < FFI::Struct
26
+ layout :diff, Git2::GitDiff.by_ref
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,18 @@
1
+ module SimpleGit
2
+ class DiffOptions
3
+ attr_reader :ptr
4
+
5
+ def initialize
6
+ @ptr = Git2::GitDiffOption.new
7
+ @ptr[:version] = 1
8
+ end
9
+
10
+ def [](key)
11
+ @ptr[key]
12
+ end
13
+
14
+ def []=(key, value)
15
+ @ptr[key] = value
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,31 @@
1
+ module SimpleGit
2
+ class DiffStat
3
+ attr_accessor :ptr
4
+
5
+ def initialize(diff)
6
+ wrapper = DiffStatWrapper.new
7
+ Git2.git_diff_get_stats(wrapper, diff.ptr)
8
+
9
+ @ptr = wrapper[:stat]
10
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
11
+ end
12
+
13
+ def insertions
14
+ Git2.git_diff_stats_insertions(@ptr)
15
+ end
16
+
17
+ def deletions
18
+ Git2.git_diff_stats_deletions(@ptr)
19
+ end
20
+
21
+ private
22
+
23
+ def self.finalize(ptr)
24
+ proc { Git2.git_diff_stats_free(ptr) }
25
+ end
26
+
27
+ class DiffStatWrapper < FFI::Struct
28
+ layout :stat, Git2::GitDiffStat.by_ref
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,29 @@
1
+ module SimpleGit
2
+ class Object
3
+ attr_accessor :ptr
4
+
5
+ def from_wrapper(wrapper)
6
+ @ptr = wrapper[:object]
7
+
8
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
9
+
10
+ self
11
+ end
12
+
13
+ def to_s
14
+ oid = Oid.allocate
15
+ oid.ptr = Git2::GitOid.new(Git2.git_object_id(@ptr))
16
+ oid.to_s
17
+ end
18
+
19
+ private
20
+
21
+ def self.finalize(ptr)
22
+ proc { Git2.git_object_free(ptr) }
23
+ end
24
+
25
+ class ObjectWrapper < FFI::Struct
26
+ layout :object, Git2::GitObject.by_ref
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,19 @@
1
+ module SimpleGit
2
+ class Oid
3
+ attr_accessor :ptr
4
+
5
+ def initialize
6
+ @ptr = Git2::GitOid.new
7
+ end
8
+
9
+ def to_s
10
+ string = FFI::MemoryPointer.new(:char, 41)
11
+ Git2.git_oid_tostr(string, 41, @ptr)
12
+ string.read_string
13
+ end
14
+
15
+ def [](*args)
16
+ to_s.[](*args)
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,31 @@
1
+ module SimpleGit
2
+ class Repository
3
+ attr_accessor :ptr
4
+
5
+ def initialize(path)
6
+ wrapper = RepositoryWrapper.new
7
+ Git2.git_repository_open(wrapper, path)
8
+
9
+ @ptr = wrapper[:repo]
10
+
11
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
12
+ end
13
+
14
+ def revparse(refspec)
15
+ wrapper = SimpleGit::Object::ObjectWrapper.new
16
+ Git2.git_revparse_single(wrapper, @ptr, refspec)
17
+
18
+ Object.new.from_wrapper(wrapper)
19
+ end
20
+
21
+ private
22
+
23
+ def self.finalize(ptr)
24
+ proc { Git2.git_repository_free(ptr) }
25
+ end
26
+
27
+ class RepositoryWrapper < FFI::Struct
28
+ layout :repo, Git2::GitRepository.by_ref
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,44 @@
1
+ module SimpleGit
2
+ class Revwalk
3
+ include Enumerable
4
+
5
+ attr_accessor :ptr
6
+
7
+ def initialize(repo)
8
+ wrapper = RevwalkWrapper.new
9
+ Git2.git_revwalk_new(wrapper, repo.ptr)
10
+
11
+ @repo = repo
12
+ @ptr = wrapper[:revwalk]
13
+
14
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
15
+ end
16
+
17
+ def sort(sort_type)
18
+ Git2.git_revwalk_sorting(@ptr, sort_type)
19
+ end
20
+
21
+ def push_head
22
+ Git2.git_revwalk_push_head(@ptr)
23
+ end
24
+
25
+ def each
26
+ oid = Oid.new
27
+
28
+ while Git2.git_revwalk_next(oid.ptr, @ptr) == 0
29
+ yield Commit.new(@repo, oid)
30
+ end
31
+ end
32
+
33
+ private
34
+
35
+ def self.finalize(ptr)
36
+ proc { Git2.git_revwalk_free(ptr) }
37
+ end
38
+
39
+ class RevwalkWrapper < FFI::Struct
40
+ layout :revwalk, Git2::GitRevwalk.by_ref
41
+ end
42
+
43
+ end
44
+ end
@@ -0,0 +1,17 @@
1
+ module SimpleGit
2
+ class Signature
3
+ attr_accessor :ptr
4
+
5
+ def initialize(commit)
6
+ @ptr = Git2::GitSignature.new(Git2.git_commit_author(commit.ptr))
7
+ end
8
+
9
+ def name
10
+ @name ||= @ptr[:name].read_string
11
+ end
12
+
13
+ def email
14
+ @email ||= @ptr[:email].read_string
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,25 @@
1
+ module SimpleGit
2
+ class Tree
3
+ attr_accessor :ptr
4
+
5
+ def from_commit(commit)
6
+ wrapper = TreeWrapper.new
7
+ Git2.git_commit_tree(wrapper, commit.ptr)
8
+
9
+ @ptr = wrapper[:tree]
10
+ ObjectSpace.define_finalizer(self, self.class.finalize(@ptr))
11
+
12
+ self
13
+ end
14
+
15
+ private
16
+
17
+ def self.finalize(ptr)
18
+ proc { Git2.git_tree_free(ptr) }
19
+ end
20
+
21
+ class TreeWrapper < FFI::Struct
22
+ layout :tree, Git2::GitTree.by_ref
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ module SimpleGit
2
+ VERSION = '0.1.1'
3
+ end
data/lib/simple_git.rb ADDED
@@ -0,0 +1,14 @@
1
+ require 'git2'
2
+
3
+ Git2.git_libgit2_init
4
+
5
+ require 'simple_git/commit'
6
+ require 'simple_git/diff'
7
+ require 'simple_git/diff_options'
8
+ require 'simple_git/diff_stat'
9
+ require 'simple_git/object'
10
+ require 'simple_git/oid'
11
+ require 'simple_git/repository'
12
+ require 'simple_git/revwalk'
13
+ require 'simple_git/signature'
14
+ require 'simple_git/tree'
@@ -0,0 +1,18 @@
1
+ $:.unshift File.dirname(__FILE__)
2
+
3
+ require 'lib/simple_git/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'simple_git'
7
+ s.version = SimpleGit::VERSION
8
+ s.date = '2019-02-27'
9
+ s.summary = "High-level git wrapper over rb-libgit2"
10
+ s.description = "JRuby-compatible high level git library"
11
+ s.authors = ["Liam P. White"]
12
+ s.email = 'liamwhite@users.noreply.github.com'
13
+ s.files = `git ls-files`.split("\n")
14
+ s.homepage = 'https://github.com/liamwhite/simple_git'
15
+ s.license = 'MIT'
16
+
17
+ s.add_runtime_dependency 'rb-libgit2', '~> 0.27'
18
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simple_git
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Liam P. White
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rb-libgit2
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.27'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.27'
27
+ description: JRuby-compatible high level git library
28
+ email: liamwhite@users.noreply.github.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - ".gitignore"
34
+ - COPYING
35
+ - README.md
36
+ - lib/simple_git.rb
37
+ - lib/simple_git/commit.rb
38
+ - lib/simple_git/diff.rb
39
+ - lib/simple_git/diff_options.rb
40
+ - lib/simple_git/diff_stat.rb
41
+ - lib/simple_git/object.rb
42
+ - lib/simple_git/oid.rb
43
+ - lib/simple_git/repository.rb
44
+ - lib/simple_git/revwalk.rb
45
+ - lib/simple_git/signature.rb
46
+ - lib/simple_git/tree.rb
47
+ - lib/simple_git/version.rb
48
+ - simple_git.gemspec
49
+ homepage: https://github.com/liamwhite/simple_git
50
+ licenses:
51
+ - MIT
52
+ metadata: {}
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubyforge_project:
69
+ rubygems_version: 2.7.6
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: High-level git wrapper over rb-libgit2
73
+ test_files: []