Sha256: b5de81101c8bafb8290688b954e7125cc3cfeefdfb6f387c1493e02737e3b228
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
require 'rake' SLN_FILES=FileList.new('*.sln','*/*.sln','*/*/*.sln') class Build < Array def update changed = true #changed = Git.has_changes? if(File.exists?('.git') && defined?(Git)) #changed = Svn.has_changes? if(File.exists?('.svn') && defined?(Svn)) if(changed) Dir.glob('*.gemspec'){|gemspec| add "gem build #{gemspec}" if !File.exist?(Gemspec.gemfile gemspec) } SLN_FILES.each{|sln_file| vs_version=MSBuild.get_vs_version(sln_file) if(MSBuild.has_version?(vs_version)) MSBuild.get_configurations(sln_file).each{ |configuration| MSBuild.get_platforms(sln_file).each{|platform| #Console.debug "configuration='#{configuration}', platform='#{platform}'" self.add "\"#{MSBuild.get_version(vs_version)}\" \"#{sln_file}\" /nologo /p:Configuration=#{configuration} /p:Platform=\"#{platform}\"" } } else puts "version #{vs_version} not found for MsBuild" puts "MSBUILD[#{vs_version}]='PATH_TO_MSBUILD' may be used to specify msbuild path." end } end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dev-2.0.121 | lib/commands/build.rb |
dev-2.0.119 | lib/commands/build.rb |
dev-2.0.118 | lib/commands/build.rb |