Sha256: 51141884d9f002221c3ea5ab5dc417007aacb7e055577d128242b318b63e7aa3
Contents?: true
Size: 391 Bytes
Versions: 25
Compression:
Stored size: 391 Bytes
Contents
desc 'performs a git push' task :push do Tasks.execute_task :push;end class Push < Array def update if(!defined?(NO_PUSH)) if(File.exists?('.git') && `git config --list`.include?('user.name=')) #if(`git branch`.include?('* master') || `git branch`.include?('* develop')) add_passive 'git push' add_passive 'git push --tags' #end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems