class Gb::GbConfig::ProjectConfig
Attributes
git[R]
name[R]
Public Class Methods
new(node)
click to toggle source
# File lib/config/gb_config.rb, line 45 def initialize(node) @name = node['name'] @git = node['git'] end
Public Instance Methods
to_dictionary()
click to toggle source
# File lib/config/gb_config.rb, line 50 def to_dictionary {"name"=>self.name, "git"=>self.git} end