simple_git 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 040b27ee12f2afa0136ffc8c7ce4aee21028dbe358fc889f05df5ddc4d02adb0
4
- data.tar.gz: 8510882d86800026c0f88cebf145a9b9d94518b950d9637180d4772087749f95
3
+ metadata.gz: 5d818a19f9a549ac7cbaa0f05fcab1b9c384b748ff592323d3551065d6188412
4
+ data.tar.gz: 56ad56056c8c19ff2887f1fb554ec7596b4d608d4e2feb59976a454242f41327
5
5
  SHA512:
6
- metadata.gz: fac2194a0218cd74eda5c8af59e3d8dfbe7955b5388cb8a9f5625301aedb7e1aa93ca8ef60f142fd770e19cdc46416c2794595c85b56607bcd3d305524003878
7
- data.tar.gz: e8b563d54120f50ca79fc5614c2749ec3fb755eed57e1a2c9ce0b02c7b54fdc4095a9c1a1d43a58e5b919d838d960241c4d99d3c8efe4d243084ad583822b59d
6
+ metadata.gz: 5de0de1babf03acd718239df629d9b88a4e893e3d3ddc0ead80c3a5063661084be8673064a3c80129e45f9fb1576e1396f877a0ead15dd9a0a6d80ca2a855ee7
7
+ data.tar.gz: 948ad21819cfe3d865fa07751c930e9d5b3a7eb8daa4d4ab704745164bb1246efb394dc96e489878128c69adc4c60ef1034f02ab54924e097bb019c7e335e01e
@@ -1,6 +1,6 @@
1
1
  module SimpleGit
2
2
  class Commit
3
- attr_accessor :ptr
3
+ attr_accessor :ptr, :repo, :oid
4
4
 
5
5
  def initialize(repo, oid)
6
6
  wrapper = CommitWrapper.new
@@ -26,6 +26,8 @@ module SimpleGit
26
26
  end
27
27
 
28
28
  c = Commit.allocate
29
+ c.repo = @repo
30
+ # fixme: oid
29
31
  c.ptr = wrapper[:commit]
30
32
  ObjectSpace.define_finalizer(c, c.class.finalize(c.ptr))
31
33
 
@@ -52,6 +54,10 @@ module SimpleGit
52
54
  @oid
53
55
  end
54
56
 
57
+ def time
58
+ Time.at(Git2.git_commit_time(@ptr))
59
+ end
60
+
55
61
  def diff(new_commit, options = nil)
56
62
  @diffs ||= {}
57
63
  @diffs[options] ||= Diff.new.from_trees(@repo, tree, new_commit.tree, options || DiffOptions.new)
@@ -1,3 +1,3 @@
1
1
  module SimpleGit
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liam P. White