eac_git 0.4.1 → 0.7.0

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: 88f33243bc2e7b99f0401b45a82c09f2b83179b716258566c2a02bf22b8e783a
4
- data.tar.gz: d8364ba8382bc2a8cdbcf452a863d59ef0f40b4c94e093c5c487b6a9b26d8117
3
+ metadata.gz: b04ab8b8d59ecebc5047f682efcf0571f1cd4d4b25ab9224ea118abe5d4bb7ff
4
+ data.tar.gz: 491cd970a7d0f43fcf1d51016729cedd89077cdd9d93bda5dc9301dbb35f0af3
5
5
  SHA512:
6
- metadata.gz: a666558266a77e58f614a8bd512d2cc8b4b8f0593c6f5feb0f8d926e3fae99098b96ea6c38fc5890fb41ebfac317fda13815ff33f3c69482a3856fcf67008cfd
7
- data.tar.gz: e15684fb5458ba30546e13d89bc7186b3d542a8a32606a0749f543715a8c570781425ae80bb9deb1b6723abf101b1c2d8e10fd498880a6bfbc0f17ea26e03b74
6
+ metadata.gz: b97a8b03b1b7f5ba5d05dd6fb283a9d0a6c38f98e6597fe529aeb7e8c2a2da3b8c740b691dbcb72603f9508e229faf333ec18bd4ebed9e4851edca646246ac66
7
+ data.tar.gz: 1c75b14dd35cbfe07313e5509dca925f8cfe043542391b0b7b46bf4bf81b0a280527a67ceed1cab0d73fef0baa32559cf3610733a0b5c806916d1160fed22104
@@ -20,6 +20,10 @@ module EacGit
20
20
  r
21
21
  end
22
22
 
23
+ def tar_uncached
24
+ env.executable('tar', '--version')
25
+ end
26
+
23
27
  module GitCommandExtensions
24
28
  def command(*args)
25
29
  super(*args).envvar('PATH', path_with_git_subrepo)
data/lib/eac_git/local.rb CHANGED
@@ -39,13 +39,17 @@ module EacGit
39
39
  ::EacGit::Executables.git.command('-C', root_path.to_path, *args)
40
40
  end
41
41
 
42
+ def raise_error(message)
43
+ raise "#{root_path}: #{message}"
44
+ end
45
+
42
46
  def rev_parse(ref, required = false)
43
47
  r = command('rev-parse', ref).execute!(exit_outputs: { 128 => nil, 32_768 => nil })
44
48
  r.strip! if r.is_a?(String)
45
49
  return r if r.present?
46
50
  return nil unless required
47
51
 
48
- raise "Reference \"#{ref}\" not found"
52
+ raise_error "Reference \"#{ref}\" not found"
49
53
  end
50
54
 
51
55
  def subrepo(subpath)
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacGit
6
+ class Local
7
+ class Commit
8
+ module Archive
9
+ # @return [EacRubyUtils::Envs::Command]
10
+ def archive_to_dir(path)
11
+ path = path.to_pathname
12
+ repo.command('archive', '--format=tar', hash).pipe(
13
+ ::EacGit::Executables.tar.command('-xC', path)
14
+ )
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -12,7 +12,8 @@ module EacGit
12
12
 
13
13
  common_constructor :local, :subpath do
14
14
  self.subpath = subpath.to_pathname
15
- raise "Config file \"#{config_absolute_path}\" not found" unless config_absolute_path.file?
15
+ local.raise_error "Config file \"#{config_absolute_path}\" not found" unless
16
+ config_absolute_path.file?
16
17
  end
17
18
 
18
19
  def command(subrepo_subcommand, *subrepo_subcommand_args)
data/lib/eac_git/rspec.rb CHANGED
@@ -1,22 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/rspec/conditional'
4
- require 'eac_git/executables'
3
+ require 'eac_ruby_utils/core_ext'
5
4
 
6
5
  module EacGit
7
6
  module Rspec
8
7
  require_sub __FILE__
9
-
10
- class << self
11
- def configure
12
- ::EacRubyUtils::Rspec::Conditional.default.add(:git) do
13
- ::EacGit::Executables.git.validate
14
- end
15
- RSpec.configure do |config|
16
- ::EacRubyUtils::Rspec::Conditional.default.configure(config)
17
- config.include ::EacGit::Rspec::StubbedGitLocalRepo
18
- end
19
- end
20
- end
21
8
  end
22
9
  end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/rspec/conditional'
4
+ require 'eac_git/executables'
5
+ require 'eac_git/rspec/stubbed_git_local_repo'
6
+
7
+ module EacGit
8
+ module Rspec
9
+ module SetupInclude
10
+ class << self
11
+ def setup(setup_obj)
12
+ setup_conditional_git
13
+ setup_stubbed_git_local_repo(setup_obj)
14
+ end
15
+
16
+ def setup_conditional_git
17
+ ::EacRubyUtils::Rspec::Conditional.default.add(:git) do
18
+ ::EacGit::Executables.git.validate
19
+ end
20
+ end
21
+
22
+ def setup_stubbed_git_local_repo(setup_obj)
23
+ setup_obj.rspec_config.include ::EacGit::Rspec::StubbedGitLocalRepo
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacGit
4
- VERSION = '0.4.1'
4
+ VERSION = '0.7.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.4.1
4
+ version: 0.7.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: 2021-04-01 00:00:00.000000000 Z
11
+ date: 2021-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eac_ruby_utils
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.37'
19
+ version: '0.70'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.37'
26
+ version: '0.70'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: parseconfig
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -50,34 +50,28 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0.7'
53
+ version: '0.8'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0.7'
60
+ version: '0.8'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: eac_ruby_gem_support
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '0.1'
68
- - - ">="
69
- - !ruby/object:Gem::Version
70
- version: 0.1.2
67
+ version: '0.3'
71
68
  type: :development
72
69
  prerelease: false
73
70
  version_requirements: !ruby/object:Gem::Requirement
74
71
  requirements:
75
72
  - - "~>"
76
73
  - !ruby/object:Gem::Version
77
- version: '0.1'
78
- - - ">="
79
- - !ruby/object:Gem::Version
80
- version: 0.1.2
74
+ version: '0.3'
81
75
  description:
82
76
  email:
83
77
  executables: []
@@ -88,6 +82,7 @@ files:
88
82
  - lib/eac_git/executables.rb
89
83
  - lib/eac_git/local.rb
90
84
  - lib/eac_git/local/commit.rb
85
+ - lib/eac_git/local/commit/archive.rb
91
86
  - lib/eac_git/local/commit/changed_file.rb
92
87
  - lib/eac_git/local/commit/diff_tree_line.rb
93
88
  - lib/eac_git/local/dirty_files.rb
@@ -96,6 +91,7 @@ files:
96
91
  - lib/eac_git/remote.rb
97
92
  - lib/eac_git/remote/ls_result.rb
98
93
  - lib/eac_git/rspec.rb
94
+ - lib/eac_git/rspec/setup_include.rb
99
95
  - lib/eac_git/rspec/stubbed_git_local_repo.rb
100
96
  - lib/eac_git/version.rb
101
97
  - vendor/git-subrepo/Changes
@@ -301,7 +297,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
301
297
  - !ruby/object:Gem::Version
302
298
  version: '0'
303
299
  requirements: []
304
- rubygems_version: 3.0.9
300
+ rubygems_version: 3.1.6
305
301
  signing_key:
306
302
  specification_version: 4
307
303
  summary: Put here de description.