Sha256: ac62fa675619286901e7ff097ad384a82feb63341b6ce3f8be9b7e6954c7bf1d

Contents?: true

Size: 566 Bytes

Versions: 1

Compression:

Stored size: 566 Bytes

Contents

module SandboxAssets
  class Settings
    attr_reader :options
    attr_accessor :tests_roots, :assets_paths, :tests_patterns, :port,
      :template, :disable_template_param

    def initialize
      @tests_roots = %w(test/javascripts specs/javascripts)
      @assets_paths = @tests_roots +
        %w(test/assets/javascripts  test/assets/stylesheets
          specs/assets/javascripts specs/assets/stylesheets)
      @tests_patterns = %w(**/*_{test,spec}.{js,coffee}*)
      @port = 5000
      @disable_template_param = false
      @options = {}
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-sandbox-assets-0.0.2 lib/sandbox_assets/settings.rb