X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/f6e098c942a89d011c0875783bd0d0db54e4b67a..02ebfb9b4cb16eb20e2e66e7654bd63d65158b1d:/bin/pre-commit-hook

diff --git a/bin/pre-commit-hook b/bin/pre-commit-hook
index 921c39c..2bd3c77 100755
--- a/bin/pre-commit-hook
+++ b/bin/pre-commit-hook
@@ -5,25 +5,6 @@ require 'rubygems'
 require 'bundler'
 Bundler.setup
 
-require 'nos_oignons/git'
-require 'nos_oignons/subscriptions'
+require 'nos_oignons'
 
-if system('git rev-parse --quiet --verify HEAD >/dev/null')
-  against = 'HEAD'
-else
-  # Initial commit: diff against an empty tree object
-  against = '4b825dc642cb6eb9a060e54bf8d69288fbee4904'
-end
-
-IO.popen(['git', 'diff-index', '--cached', '--name-status', against]) do |io|
-  NosOignons::Git.handle_modified_files(io) do |file|
-    next unless file.start_with?("#{NosOignons::SUBSCRIPTIONS_ROOT}/")
-    begin
-      # Use empty ref to get the index
-      NosOignons::Subscription.read_from_git('', file)
-    rescue ArgumentError
-      $stderr.puts "Désolé : #{file} n'a pas le bon format !"
-      exit 1
-    end
-  end
-end
+NosOignons.pre_commit_hook!