Class: Ufo::DSL::TaskDefinition
- Inherits:
-
Object
- Object
- Ufo::DSL::TaskDefinition
- Defined in:
- lib/ufo/dsl/task_definition.rb
Instance Attribute Summary collapse
-
#task_definition_name ⇒ Object
readonly
Returns the value of attribute task_definition_name.
Instance Method Summary collapse
- #build ⇒ Object
- #check_source_path(path) ⇒ Object
-
#helper ⇒ Object
delegate helper method back up to dsl.
-
#initialize(dsl, task_definition_name, options = {}, &block) ⇒ TaskDefinition
constructor
A new instance of TaskDefinition.
-
#source(name) ⇒ Object
at this point instance_eval has been called and source has possibly been called.
- #source_path ⇒ Object
- #variables(vars = {}) ⇒ Object
Constructor Details
#initialize(dsl, task_definition_name, options = {}, &block) ⇒ TaskDefinition
Returns a new instance of TaskDefinition.
8 9 10 11 12 13 14 |
# File 'lib/ufo/dsl/task_definition.rb', line 8 def initialize(dsl, task_definition_name, ={}, &block) @dsl = dsl @task_definition_name = task_definition_name @block = block @options = @project_root = @options[:project_root] || '.' end |
Instance Attribute Details
#task_definition_name ⇒ Object (readonly)
Returns the value of attribute task_definition_name.
7 8 9 |
# File 'lib/ufo/dsl/task_definition.rb', line 7 def task_definition_name @task_definition_name end |
Instance Method Details
#build ⇒ Object
21 22 23 24 25 |
# File 'lib/ufo/dsl/task_definition.rb', line 21 def build instance_eval(&@block) erb_template = IO.read(source_path) ERB.new(erb_template).result(binding) end |
#check_source_path(path) ⇒ Object
53 54 55 56 57 58 59 60 61 62 |
# File 'lib/ufo/dsl/task_definition.rb', line 53 def check_source_path(path) unless File.exist?(path) friendly_path = path.sub("#{@project_root}/", '') puts "ERROR: Could not find the #{friendly_path} template. Are sure it exists? Check where you called source in ufo/task_definitions.rb" exit 1 else puts "#{task_definition_name} template definition using project template: #{path}" unless @options[:mute] end path end |
#helper ⇒ Object
delegate helper method back up to dsl
17 18 19 |
# File 'lib/ufo/dsl/task_definition.rb', line 17 def helper @dsl.helper end |
#source(name) ⇒ Object
at this point instance_eval has been called and source has possibly been called
28 29 30 |
# File 'lib/ufo/dsl/task_definition.rb', line 28 def source(name) @source = name end |
#source_path ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/ufo/dsl/task_definition.rb', line 41 def source_path if @source # this means that source has been called path = "#{@project_root}/ufo/templates/#{@source}.json.erb" check_source_path(path) else # default source path path = File.("../../templates/default.json.erb", __FILE__) puts "#{task_definition_name} template definition using default template: #{path}" unless @options[:mute] end path end |
#variables(vars = {}) ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/ufo/dsl/task_definition.rb', line 32 def variables(vars={}) vars.each do |var,value| if instance_variable_defined?("@#{var}") puts "WARNING: The instance variable @#{var} is already used internally with ufo. Please name you variable another name!" end instance_variable_set("@#{var}", value) end end |