Sha256: 12f16325002fa39ce54bff6fe509dc1a5a0fc32453d0f7ef42689f544342876d
Contents?: true
Size: 339 Bytes
Versions: 34
Compression:
Stored size: 339 Bytes
Contents
puts __FILE__ if defined?(DEBUG) desc 'performs a git push' task :push do Tasks.execute_task :push;end class Push < Array def update if(File.exists?('.git') && `git config --list`.include?('user.name=')) self << 'git push' self << 'git push --tags'# if Git.branch != 'develop' && Internet.available? end end end
Version data entries
34 entries across 34 versions & 1 rubygems