module MatrixCreator

Main module for Matrix Creator

Constants

VERSION

Returns the version of the gem @return [String] matrix_creator gem version

Public Class Methods

settings() click to toggle source

Returns a hash of settings to be used by Matrix Creator

@return [Hash] the symbolized names object from config/matrix_creator.yml

# File lib/matrix_creator.rb, line 15
def self.settings
  @@_matrix_creator_config ||= JSON.parse(
    JSON.dump(YAML.load_file('config/matrix_creator.yml')),
    symbolize_names: true
  )[:matrix]
end