set_git_hooks_dir 0.0.6 → 1.0.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 +4 -4
- data/LICENSE +20 -0
- data/lib/rubygems_plugin.rb +5 -2
- data/lib/set_git_hooks_dir.rb +18 -18
- data/plugins.rb +7 -5
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17a2b4e038ed614e3fbf2e6e1c1c0d3dcf52823681ec56dfe57d4b39cdf2507c
|
4
|
+
data.tar.gz: 8420850fccb365c3c1c71951b408b3f818b3231bbd845ccff99eabebcfd94a83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7feb2af3d584f3ecff09b7cd11b90d51e84bd79ad171d80bc937c534df3ee15f2ec11c0f7f0e0e42f9823f52e94ff03b90d8e85403a85c0b144378fce02bc27
|
7
|
+
data.tar.gz: b9c60c54d89746c2405fb9caaca511a1c2a2cb63ece41e829a6fb36bfbf40ffd3b69e1670f98ca8711c3e401636c44f4d6e10586200fc0cc5aee01d41962532f
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 rhysd
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
16
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
17
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
19
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
20
|
+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/rubygems_plugin.rb
CHANGED
@@ -4,6 +4,9 @@ require 'rubygems/installer'
|
|
4
4
|
require_relative 'set_git_hooks_dir'
|
5
5
|
|
6
6
|
Gem.post_install do |installer|
|
7
|
-
|
8
|
-
|
7
|
+
begin
|
8
|
+
SetGitHooksDir.setup '.git-hooks' if installer.spec.name == 'set_git_hooks_dir'
|
9
|
+
rescue StandardError => err
|
10
|
+
STDERR.puts "set_git_hooks_dir: #{err}"
|
11
|
+
end
|
9
12
|
end
|
data/lib/set_git_hooks_dir.rb
CHANGED
@@ -3,16 +3,23 @@
|
|
3
3
|
require 'pathname'
|
4
4
|
|
5
5
|
class SetGitHooksDir
|
6
|
-
class
|
7
|
-
|
6
|
+
class GitHooksDirNotFound < StandardError
|
7
|
+
def initialize(dir, cwd)
|
8
|
+
super "Git hooks directory #{dir} was not found at any root of GitHub repository in #{cwd}"
|
9
|
+
end
|
10
|
+
end
|
8
11
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
12
|
+
class GitConfigHooksFailed < StandardError
|
13
|
+
def initialize(git, dir, status, output)
|
14
|
+
super "`#{git} config core.hooksPath #{dir}` failed with status #{status}: #{output}"
|
15
|
+
end
|
16
|
+
end
|
14
17
|
|
15
|
-
|
18
|
+
SKIP_ENV_VARS = %w[SET_GIT_HOOKS_DIR_SKIP GITHUB_ACTION CI JENKINS_URL].freeze
|
19
|
+
|
20
|
+
class << self
|
21
|
+
def setup(hooks_dir)
|
22
|
+
return if SKIP_ENV_VARS.lazy.filter_map { |n| ENV[n] }.any? { |v| !v.empty? }
|
16
23
|
|
17
24
|
hooks_dir = Pathname.new hooks_dir
|
18
25
|
cwd = Pathname.pwd
|
@@ -20,20 +27,13 @@ class SetGitHooksDir
|
|
20
27
|
.filter_map { |dir| dir + '.git' if (dir + hooks_dir).directory? }
|
21
28
|
.find { |dotgit| dotgit.exist? }
|
22
29
|
|
23
|
-
|
24
|
-
|
25
|
-
raise StandardError.new("Git hooks directory #{hooks_dir} was not found at any root of GitHub repository in #{cwd}") unless dotgit
|
26
|
-
if dotgit.directory? && File.read(dotgit + 'config').include?("\n\thooksPath = ")
|
27
|
-
puts 'core.hooksPath is already set. Skip setting Git hooks'
|
28
|
-
return
|
29
|
-
end
|
30
|
+
raise GitHooksDirNotFound.new(hooks_dir, cwd) unless dotgit
|
31
|
+
return if dotgit.directory? && File.foreach(dotgit + 'config').any? { |i| i.start_with? "\thooksPath = " }
|
30
32
|
|
31
33
|
git = ENV['SET_GIT_HOOKS_DIR_GIT']
|
32
34
|
git = 'git' if git.nil? || git.empty?
|
33
|
-
puts "Running `#{git} config core.hooksPath #{hooks_dir}`"
|
34
35
|
out = `#{git} config core.hooksPath #{hooks_dir}`
|
35
|
-
raise
|
36
|
-
puts 'Done!'
|
36
|
+
raise GitConfigHooksFailed.new(git, hooks_dir, $?.exitstatus, out) unless $?.success?
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
data/plugins.rb
CHANGED
@@ -9,9 +9,11 @@ require 'set_git_hooks_dir'
|
|
9
9
|
#
|
10
10
|
# https://github.com/rubygems/bundler/issues/5429
|
11
11
|
#
|
12
|
-
# To enable automatic hooks configuration
|
13
|
-
# `
|
14
|
-
# plugin.
|
12
|
+
# To enable automatic hooks configuration via `bundle install`, this package needs to be installed as a bundler plugin.
|
13
|
+
# For the case of `gem install`, `lib/rubygems_plugin.rb` remains (though I don't know the use case).
|
15
14
|
|
16
|
-
|
17
|
-
SetGitHooksDir.setup '.git-hooks'
|
15
|
+
begin
|
16
|
+
SetGitHooksDir.setup '.git-hooks'
|
17
|
+
rescue StandardError => err
|
18
|
+
STDERR.puts "set_git_hooks_dir: #{err}"
|
19
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: set_git_hooks_dir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- rhysd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: set_git_hooks_dir is a deadly simple gem to configure your Git hooks
|
14
14
|
on package installation
|
15
|
-
email:
|
15
|
+
email:
|
16
|
+
- lin90162@yahoo.co.jp
|
16
17
|
executables: []
|
17
18
|
extensions: []
|
18
19
|
extra_rdoc_files: []
|
19
20
|
files:
|
21
|
+
- LICENSE
|
20
22
|
- lib/rubygems_plugin.rb
|
21
23
|
- lib/set_git_hooks_dir.rb
|
22
24
|
- plugins.rb
|
23
|
-
homepage: https://
|
25
|
+
homepage: https://github.com/rhysd/set-git-hooks-dir
|
24
26
|
licenses:
|
25
27
|
- MIT
|
26
|
-
metadata:
|
28
|
+
metadata:
|
29
|
+
homepage_uri: https://github.com/rhysd/set-git-hooks-dir
|
30
|
+
source_code_uri: https://github.com/rhysd/set-git-hooks-dir/tree/main/ruby
|
27
31
|
post_install_message:
|
28
32
|
rdoc_options: []
|
29
33
|
require_paths:
|