Sha256: 3bede95fa8998e55c3e5fe94b504233649808541c1af32d0fed46b7829976e2a

Contents?: true

Size: 376 Bytes

Versions: 10

Compression:

Stored size: 376 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=') && `git branch`.include?('* master'))
			self <<  'git push'
			self <<  'git push --tags'# if Git.branch != 'develop' && Internet.available?
		end
	end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dev-2.0.194 lib/tasks/push.rb
dev-2.0.193 lib/tasks/push.rb
dev-2.0.192 lib/tasks/push.rb
dev-2.0.191 lib/tasks/push.rb
dev-2.0.190 lib/tasks/push.rb
dev-2.0.189 lib/tasks/push.rb
dev-2.0.188 lib/tasks/push.rb
dev-2.0.187 lib/tasks/push.rb
dev-2.0.186 lib/tasks/push.rb
dev-2.0.185 lib/tasks/push.rb