vagrant-git-hooks 0.2.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.
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vagrant-git-hooks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Julien Poirou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-07-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: i18n
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.12'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.12'
55
+ description: |-
56
+ Adds a `vagrant hooks` subcommand and installs declarative git hooks into the
57
+ repository hooks directory on `vagrant up`. Ownership markers and per-hook
58
+ backups make install/uninstall safe. Only Vagrant is required — no Node/npm.
59
+ email:
60
+ - julienpoirou@protonmail.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - CHANGELOG.md
66
+ - LICENSE.md
67
+ - README.md
68
+ - lib/vagrant-git-hooks.rb
69
+ - lib/vagrant-git-hooks/VERSION
70
+ - lib/vagrant-git-hooks/command.rb
71
+ - lib/vagrant-git-hooks/config.rb
72
+ - lib/vagrant-git-hooks/helpers.rb
73
+ - lib/vagrant-git-hooks/hook_builder.rb
74
+ - lib/vagrant-git-hooks/plugin.rb
75
+ - lib/vagrant-git-hooks/service.rb
76
+ - lib/vagrant-git-hooks/util/git.rb
77
+ - lib/vagrant-git-hooks/util/installer.rb
78
+ - lib/vagrant-git-hooks/util/manifest.rb
79
+ - lib/vagrant-git-hooks/util/verbose.rb
80
+ - lib/vagrant-git-hooks/version.rb
81
+ - locales/en.yml
82
+ - locales/fr.yml
83
+ homepage: https://github.com/julienpoirou/vagrant-git-hooks
84
+ licenses:
85
+ - MIT
86
+ metadata:
87
+ rubygems_mfa_required: 'true'
88
+ bug_tracker_uri: https://github.com/julienpoirou/vagrant-git-hooks/issues
89
+ changelog_uri: https://github.com/julienpoirou/vagrant-git-hooks/blob/main/CHANGELOG.md
90
+ documentation_uri: https://www.rubydoc.info/gems/vagrant-git-hooks/
91
+ source_code_uri: https://github.com/julienpoirou/vagrant-git-hooks
92
+ homepage_uri: https://github.com/julienpoirou/vagrant-git-hooks
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '3.1'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubygems_version: 3.4.19
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: Manage git hooks from your Vagrantfile — a husky replacement with no Node/npm
112
+ dependency
113
+ test_files: []