git.rb 0.10.1 → 0.10.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/Git/Log.rb +0 -1
  3. data/lib/Git/VERSION.rb +3 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 908407ea9ebf4972a435d8bbdfec53c677b5ac9497adf4575bc650413ef3a7a7
4
- data.tar.gz: b196e6a46285002e2a4adf2b0e8d1db128c8ce7fee417bb10438eaf7ba909737
3
+ metadata.gz: cc8d49240d07a8ee7da15d39b5375370254de4a840c2fcf3a7512d969cac9743
4
+ data.tar.gz: 466be1d612d9bb3eea6f6f4e420bc786b1e69ad9314a7610b757d06068bd846c
5
5
  SHA512:
6
- metadata.gz: c1ce1fd99b757a370dea97f0d8d006b555f9ba83e5bee4378d749afafb1e9584a20a6cb3a6a9d527feea3cc586000866c456b0289e7048764638fb262da6f26d
7
- data.tar.gz: cb8a814563968b969cd3a30b863d8d6a5b888699e539b677c0fc4bb883dd74c68385970cac62b1d63f0ff33fe587f38f58145f3c2c9edbddf6360b99be54bfd3
6
+ metadata.gz: 04f5a444d763bd7c3ffefc31557de69a2091f37289df0cf029cdaa4cffd9af911b300402103aa0ae5f993e92e9de2c09db99a0f0c018c95d2032b6a7f85820c3
7
+ data.tar.gz: c4d5759b06073d1480645b0724c00c2a0e429ff5f83d7f0fcdbf89edaa43b6560bdd7cc29a44f75b4fc3469f818d31e8a0192873d444f6764163ed29ff18ef34
@@ -60,7 +60,6 @@ module Git
60
60
  commit_log = Log.new
61
61
  commit_string = ''
62
62
  log_stream.each_line do |line|
63
- line.lstrip!
64
63
  if line =~ /^commit/ && !commit_string.empty?
65
64
  commit_log.prepend(Commit.parse(commit_string))
66
65
  commit_string = line
@@ -1,3 +1,5 @@
1
1
  module Git
2
- VERSION = '0.10.0'
2
+
3
+ VERSION = '0.10.3'
4
+
3
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-30 00:00:00.000000000 Z
11
+ date: 2020-04-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Do stuff with git-blame, git-branch, git-log, and git-remote from Ruby.
14
14
  email: code@thoran.com
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.1.2
52
+ rubygems_version: 3.0.3
53
53
  signing_key:
54
54
  specification_version: 4
55
55
  summary: Do git stuff from Ruby.