Sha256: 60bba6b267122383cd45d461fb24e1c93c0bf835cd8f1492bbd9c742fa0ad02b

Contents?: true

Size: 820 Bytes

Versions: 2

Compression:

Stored size: 820 Bytes

Contents

module Compass
  module AppIntegration
    module Staticmatic
      module ConfigurationDefaults
        def project_type_without_default
          :staticmatic
        end
        
        def http_path
          "/"
        end
        
        def sass_dir_without_default
          "src"
        end

        def javascripts_dir_without_default
          "build"
        end

        def css_dir_without_default
          "build"
        end

        def images_dir_without_default
          "build"
        end
        
        def default_http_images_path
          "images"
        end

        def default_http_javascripts_path
          "javascripts"
        end
        
        def default_cache_dir
          ".sass-cache"
        end
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
staticmatic3-2.1.10 lib/staticmatic/compass/configuration_defaults.rb
staticmatic3-2.1.9 lib/staticmatic/compass/configuration_defaults.rb