eac_git 0.11.0 → 0.12.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
  SHA256:
3
- metadata.gz: 5583900c213a539c619f4d6e7fca1ee9ad8d0c2188549097e572e2c69160aa63
4
- data.tar.gz: 9de7fa274c112090871bcc160d54bf3cc3b9730f8bc603852044d1d20145c8da
3
+ metadata.gz: 0ae089affcb0d05e18f41ec4714b46f5ddc9df84d86cc51fffbae59fdec37bfc
4
+ data.tar.gz: 84ca61a9dcd87fe0a99e7e277706c0b0b45aa63355f7c6367334423adc8c150e
5
5
  SHA512:
6
- metadata.gz: abf9630280dce2fd8252797e7c15620d0d2ae017e0d856ddb21ff96158812a3d95fb20f4a068e6d338690a40510cd3dafd60c207a208f1d1dea1f0bf80812102
7
- data.tar.gz: 6839845a4a856bd6d01cc5642bc03bc44afa29a1f7623cb19e226b49ee1c763ddcacce19c2da56c41eb2d096fda61349edcd020e400e7b6255d4623a9dec768b
6
+ metadata.gz: 4660dc27975d833e3b57097f99e15253970c4b33bc5e3877034cd95d61c6f9e1d539562e144799b5f8b8b4355c555a3102c8f3d6cf4bf0a86cfd4a17ebc4fa39
7
+ data.tar.gz: 1d78cd7ed4d5cbeadecfef5b99783d02f1495b380834f17bd45eaa63f2cb85c69017da70bfb30e5d3a4f3de3fde156738ebbde52b5d9a7df6429d25fa0fe5438
@@ -13,6 +13,7 @@ module EacGit
13
13
  author_name: '%an', author_email: '%ae', author_date: '%ai',
14
14
  subject: '%s',
15
15
  author_all: '%an <%ae>, %ai',
16
+ commit_hash: '%H', abbreviated_commit_hash: '%h',
16
17
  commiter_name: '%cn', commiter_email: '%ce', commiter_date: '%ci',
17
18
  commiter_all: '%cn <%ce>, %ci',
18
19
  raw_body: '%B'
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+ require 'eac_git/local/remote'
5
+
6
+ module EacGit
7
+ class Local
8
+ module Remotes
9
+ def remote(name)
10
+ ::EacGit::Local::Remote.new(self, name)
11
+ end
12
+
13
+ def remotes
14
+ command('remote').execute!.each_line.map(&:strip).reject(&:blank?).map do |name|
15
+ remote(name)
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacGit
4
- VERSION = '0.11.0'
4
+ VERSION = '0.12.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Put here the authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-17 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eac_ruby_utils
@@ -101,6 +101,7 @@ files:
101
101
  - lib/eac_git/local/dirty_files.rb
102
102
  - lib/eac_git/local/log.rb
103
103
  - lib/eac_git/local/remote.rb
104
+ - lib/eac_git/local/remotes.rb
104
105
  - lib/eac_git/local/subrepo.rb
105
106
  - lib/eac_git/local/subrepo/config.rb
106
107
  - lib/eac_git/remote.rb