Sha256: eb02e725e44003f38d9a104ed5e0f48c41c04ac027f59e0beb268243265f985b

Contents?: true

Size: 1.95 KB

Versions: 11

Compression:

Stored size: 1.95 KB

Contents

# Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'pathname'
require 'build/dependency'
require_relative 'definition'

require 'build/environment'
require 'build/rulebook'

module Teapot
	class BuildError < StandardError
	end
	
	class Target < Definition
		include Build::Dependency
		
		def initialize(*)
			super
			
			@build = nil
		end
		
		def freeze
			return self if frozen?
			
			@build.freeze
			
			super
		end
		
		def build(&block)
			if block_given?
				@build = block
			end
			
			return @build
		end
		
		def update_environments!
			return unless @build
			
			self.provisions.each do |key, provision|
				build = @build
				original = provision.value
				
				wrapper = proc do |*arguments|
					self.instance_exec(*arguments, &original) if original
					self.instance_exec(*arguments, &build) if build
				end
				
				provision.value = wrapper
			end
			
			@build = nil
		end
	end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
teapot-3.5.4 lib/teapot/target.rb
teapot-3.5.3 lib/teapot/target.rb
teapot-3.5.2 lib/teapot/target.rb
teapot-3.5.1 lib/teapot/target.rb
teapot-3.5.0 lib/teapot/target.rb
teapot-3.4.1 lib/teapot/target.rb
teapot-3.4.0 lib/teapot/target.rb
teapot-3.2.1 lib/teapot/target.rb
teapot-3.2.0 lib/teapot/target.rb
teapot-3.1.0 lib/teapot/target.rb
teapot-3.0.0 lib/teapot/target.rb