class Gitl::GitlConfig::ProjectConfig

Attributes

git[R]
name[R]

Public Class Methods

new(node) click to toggle source
# File lib/config/gitl_config.rb, line 43
def initialize(node)
  @name = node['name']
  @git = node['git']
end

Public Instance Methods

to_dictionary() click to toggle source
# File lib/config/gitl_config.rb, line 48
def to_dictionary
  {"name"=>self.name, "git"=>self.git}
end