class ReadmeSpec::Configure

Public Instance Methods

file_path() click to toggle source
# File lib/readme_spec.rb, line 38
def file_path
  RSpec.configuration.readme_file_path
end
load_path() click to toggle source
# File lib/readme_spec.rb, line 27
def load_path
  validate
  file_path
end
validate() click to toggle source
# File lib/readme_spec.rb, line 32
def validate
  unless RSpec.configuration.readme_file_path?
    raise ReadmeSpecMissingFilePathError
  end
end