Class: Build

Inherits:
Array show all
Defined in:
lib/tasks/build.rb

Instance Attribute Summary

Attributes inherited from Array

#env

Instance Method Summary collapse

Methods inherited from Array

#add, #add_passive, #add_quiet, #execute, #has_command?, #intialize, #to_html

Instance Method Details

#updateObject



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/tasks/build.rb', line 14

def update

	#changed = true
       #if(changed)
       	puts "Build scanning for gemspec files" if Environment.default.debug?
		Dir.glob('*.gemspec'){|gemspec|
    		add_quiet("gem build #{gemspec}") if !File.exist?(Gemspec.gemfile gemspec)
    	}
    	
    	puts "Build scanning for sln files" if Environment.default.debug?
    	SLN_FILES.each{|sln_file|
    		puts "  #{sln_file}" if Environment.default.debug?
    		build_commands = MSBuild.get_build_commands sln_file
    		if(!build_commands.nil?)
    			build_commands.each{|c|
    				puts "  build command #{c} discovered." if Environment.default.debug?
    				#self.add c
    				add_quiet(c)
    			}
    		else
    			puts "  no build command discovered." if Environment.default.debug?
    		end
    	}

           puts "Build scanning for nuget files" if Environment.default.debug?
    	NUGET_FILES.each{|nuget_file|
    		build_commands = Nuget.get_build_commands nuget_file
    		if(!build_commands.nil?)
    			build_commands.each{|c|
    				add_quiet(c)
    				#self.add c
    			}
    		end
    	}

           puts "Build scanning for wxs <Product> files" if Environment.default.debug?
    	WXS_FILES.each{|wxs_file|
    		if(IO.read(wxs_file).include?('<Product'))
    		  build_commands = Wix.get_build_commands wxs_file
    		  if(!build_commands.nil?)
    			build_commands.each{|c|
    				#self.add c
    				add_quiet(c)
    			}
    		  end
    	    end
    	}

    	puts "Build scanning for wxs <Bundle> files" if Environment.default.debug?
    	WXS_FILES.each{|wxs_file|
    		if(IO.read(wxs_file).include?('<Bundle'))
    		  build_commands = Wix.get_build_commands wxs_file
    		  if(!build_commands.nil?)
    			build_commands.each{|c|
    				#self.add c
    				add_quiet(c)
    			}
    		  end
    	    end
    	}
    #end
end