Sha256: c713aa86d2a859279b81517a65d539b5902814ffec24740d4cd029b9ed5c955c

Contents?: true

Size: 290 Bytes

Versions: 113

Compression:

Stored size: 290 Bytes

Contents

desc 'performs a git pull'
task :pull do Tasks.execute_task :pull; end

class Pull < Array
	def update
		if(!defined?(NO_PULL))
		  if(File.exists?('.git') && `git config --list`.include?('user.name=') )
			add_passive('git pull') if Git.branch == 'master'
		  end
		end
	end
end

Version data entries

113 entries across 113 versions & 1 rubygems

Version Path
dev-2.1.92 lib/tasks/pull.rb
dev-2.1.91 lib/tasks/pull.rb
dev-2.1.90 lib/tasks/pull.rb
dev-2.1.89 lib/tasks/pull.rb
dev-2.1.88 lib/tasks/pull.rb
dev-2.1.87 lib/tasks/pull.rb
dev-2.1.86 lib/tasks/pull.rb
dev-2.1.85 lib/tasks/pull.rb
dev-2.1.84 lib/tasks/pull.rb
dev-2.1.83 lib/tasks/pull.rb
dev-2.1.82 lib/tasks/pull.rb
dev-2.1.81 lib/tasks/pull.rb
dev-2.1.80 lib/tasks/pull.rb
dev-2.1.79 lib/tasks/pull.rb
dev-2.1.78 lib/tasks/pull.rb
dev-2.1.77 lib/tasks/pull.rb
dev-2.1.76 lib/tasks/pull.rb
dev-2.1.70 lib/tasks/pull.rb
dev-2.1.69 lib/tasks/pull.rb
dev-2.1.68 lib/tasks/pull.rb