class PaintingGem::Configuration

Attributes

file_path[RW]

Public Class Methods

new() click to toggle source
# File lib/painting_gem/configuration.rb, line 21
def initialize
  @file_path = gem_file_path
end

Private Instance Methods

gem_file_path() click to toggle source
# File lib/painting_gem/configuration.rb, line 27
def gem_file_path
  gem_root = File.expand_path '../..', __FILE__
  gem_root + "/file.txt"
end