class Cavendish::Config

Attributes

project_name[R]
testing_library[W]

Public Instance Methods

human_project_name() click to toggle source
# File lib/cavendish/config.rb, line 14
def human_project_name
  project_name.humanize
end
project_name=(value) click to toggle source
# File lib/cavendish/config.rb, line 6
def project_name=(value)
  @project_name = value.to_s.underscore.dasherize
end
use_enzyme?() click to toggle source
# File lib/cavendish/config.rb, line 10
def use_enzyme?
  @testing_library === 'Enzyme'
end