Sha256: 8bb62e30bd24fd350605405c39f463fc7abd75315503cf452fadecc978d9b606

Contents?: true

Size: 1.24 KB

Versions: 9

Compression:

Stored size: 1.24 KB

Contents

puts __FILE__ if defined?(DEBUG)

desc 'performs publish commands'
task :publish do Tasks.execute_task :publish; end

class Publish < Array
	def update

		if(File.exists?('.git') && defined?(VERSION))
			add "<%Git.tag('#{Rake.application.original_dir}','#{VERSION}')%>"
		end

		if(Internet.available?)
			if(File.exists?('.git'))
				if(`git branch`.include?('* master'))
					Dir.glob('*.gemspec').each{|gemspec_file|
						add "gem push #{Gemspec.gemfile(gemspec_file)}" if !Gemspec.published? gemspec_file
					}
				end
			end
			if(File.exists?('.svn'))
				if(`svn info`.include?('/trunk'))
					Dir.glob('*.gemspec').each{|gemspec_file|
						add "gem push #{Gemspec.gemfile(gemspec_file)}" if !Gemspec.published? gemspec_file
					}
				end
			end
		end

		puts 'publish glob, checking...' if defined? DEBUG
		Dir.glob("#{Rake.application.original_dir}/**/*.{nupkg,msi,gem}").each{|publish_file|
			puts "checking #{publish_file}" if defined? DEBUG
			dest="#{Environment.dev_root}/publish/#{File.basename(publish_file)}"
			FileUtils.mkdir_p("#{Environment.dev_root}/publish") if !File.exists?("#{Environment.dev_root}/publish")
			add "<%FileUtils.cp('#{publish_file}','#{dest}')%>" if(!File.exists?(dest))
		}
	end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
dev-2.0.228 lib/tasks/publish.rb
dev-2.0.227 lib/tasks/publish.rb
dev-2.0.226 lib/tasks/publish.rb
dev-2.0.225 lib/tasks/publish.rb
dev-2.0.224 lib/tasks/publish.rb
dev-2.0.223 lib/tasks/publish.rb
dev-2.0.222 lib/tasks/publish.rb
dev-2.0.221 lib/tasks/publish.rb
dev-2.0.220 lib/tasks/publish.rb