Sha256: 497f52c2bf40a12bc4fc49c488d24c1fd28f18af1d87c1ca959be5fc00f7bb17

Contents?: true

Size: 555 Bytes

Versions: 6

Compression:

Stored size: 555 Bytes

Contents

require "pathname"

# Toplevel module for all things concerning RogerStyleGuide
module RogerStyleGuide
  # The path within project.html_path where the components reside
  def self.components_path=(path)
    @components_path = Pathname.new(path)
  end

  def self.components_path
    @components_path || "components"
  end
end

# Helpers
require File.dirname(__FILE__) + "/roger_style_guide/helpers"

# Generators
require File.dirname(__FILE__) + "/roger_style_guide/generators"

# Templates
require File.dirname(__FILE__) + "/roger_style_guide/templates"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
roger_style_guide-0.2.3 lib/roger_style_guide.rb
roger_style_guide-0.2.2 lib/roger_style_guide.rb
roger_style_guide-0.2.1 lib/roger_style_guide.rb
roger_style_guide-0.2.0 lib/roger_style_guide.rb
roger_style_guide-0.1.1 lib/roger_style_guide.rb
roger_style_guide-0.1.0 lib/roger_style_guide.rb