module RogerStyleGuide

Toplevel module for all things concerning RogerStyleGuide

RogerStyleGuide Version

Constants

VERSION

Public Class Methods

components_paths() click to toggle source
# File lib/roger_style_guide.rb, line 10
def self.components_paths
  @components_paths || ["components"]
end
components_paths=(path) click to toggle source

The path within project.html_path where the components reside

# File lib/roger_style_guide.rb, line 6
def self.components_paths=(path)
  @components_paths = [path].flatten.map{|p| Pathname.new(p)}
end