Sha256: 7373f57f5c096a145f088f02e05eb2f934850454717156b279d8b13a37874b1d
Contents?: true
Size: 563 Bytes
Versions: 1
Compression:
Stored size: 563 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 spec/javascripts) @assets_paths = @tests_roots + %w(test/assets/javascripts test/assets/stylesheets spec/assets/javascripts spec/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.3 | lib/sandbox_assets/settings.rb |