Class: ProjectBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/kody/builder/project_builder.rb

Instance Method Summary collapse

Constructor Details

#initialize(group, name) ⇒ ProjectBuilder

Returns a new instance of ProjectBuilder.



3
4
5
6
# File 'lib/kody/builder/project_builder.rb', line 3

def initialize(group, name)
	@name = name
	@group = group
end

Instance Method Details

#to_liquidObject



8
9
10
11
12
13
# File 'lib/kody/builder/project_builder.rb', line 8

def to_liquid
  {
  	'group' => @group,
  	'name'=> @name
  }
end