X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/e4000b47cf37576b44d21dc088601d619a6e5261..457001c90a8e16ee40b314e4281658238048648c:/bin/pre-commit-hook?ds=sidebyside

diff --git a/bin/pre-commit-hook b/bin/pre-commit-hook
index 7d3d0e8..2bd3c77 100755
--- a/bin/pre-commit-hook
+++ b/bin/pre-commit-hook
@@ -5,46 +5,6 @@ require 'rubygems'
 require 'bundler'
 Bundler.setup
 
-require 'safe_yaml'
-SafeYAML::OPTIONS[:default_mode] = :safe
-
-if system('git rev-parse --quiet --verify HEAD >/dev/null')
-  against = 'HEAD'
-else
-  # Initial commit: diff against an empty tree object
-  against = '4b825dc642cb6eb9a060e54bf8d69288fbee4904'
-end
-
-def is_valid_subscription?(content)
-  return false if content.length == 0
-  return false unless content.start_with?("---\n")
-  begin
-    YAML.load(content)
-    true
-  rescue ArgumentError
-    # Parse error
-    false
-  end
-end
-
-def is_valid_subscription_file?(file)
-  IO.popen(['git', 'show', ":#{file}"]) do |f|
-    is_valid_subscription?(f.read)
-  end
-end
-
-modified = []
-IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |f|
-  f.readlines.each do |line|
-    status, file = line.strip.split("\t", 2)
-    # Has file been added or modified?
-    if ['A', 'M'].include?(status)
-      modified << file
-      if !is_valid_subscription_file?(file)
-        $stderr.puts "Désolé : #{file} n'a pas le bon format !"
-        exit 1
-      end
-    end
-  end
-end
+require 'nos_oignons'
 
+NosOignons.pre_commit_hook!