Method: Marv::Project::Project#project_config

Defined in:
lib/marv/project/project.rb

#project_configObject

Project config file



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/marv/project/project.rb', line 86

def project_config
  config = {}

  # Merge global config
  config.merge!(@global.config)

  if @options.nil?
    config.merge!(project_config_file)
  else
    optional_config_file
    config.merge!(@options)
  end

  return config
end