Tagged Questions
2
votes
1answer
47 views
How can I cd outside my git hook directory
I'm writing my own git post-receive hook in ruby, and it resembles something like this:
if !File.exists?(rep_dir+repo)
puts "Cloning repository #{repo} into #{rep_dir}."
`cd #{rep_dir}; ...
3
votes
1answer
356 views
Using rake db:migrate in git hook - undefined class/module Encoding
I'm using https://github.com/thuss/standalone-migrations to perform db migrations in a cakephp environment. I am ultimately trying to perform db migrations automatically after checking out different ...
1
vote
1answer
504 views
git-commit-notifier with gmail
First of all you have to know I'm total Ruby noob :)
I installed git-commit-notifier (http://github.com/ilozka/git-commit-notifier) on my system (Ubuntu 10.04) and followed all the installation ...
0
votes
1answer
214 views
Telling rspec to not load files
I'm trying to add some commit hooks to my git repo. I want to leverage Rspec and create commit message specs that will run each time I commit. I have figured out how to run rspec outside of the 'spec' ...