Sha256: 71d48a5d6db11fa4c65908f2566c47eb2c9678d4516d67191f105dcd24bbf975
Contents?: true
Size: 426 Bytes
Versions: 1
Compression:
Stored size: 426 Bytes
Contents
module SandboxAssets class Settings attr_reader :options attr_accessor :tests_roots, :assets_paths, :tests_patterns, :port def initialize @tests_roots = %w(test/javascripts specs/javascripts) @assets_paths = @tests_roots + %w(test/assets/javascripts test/assets/stylesheets) @tests_patterns = %w(**/*_{test,spec}.{js,coffee}*) @port = 5000 @options = {} end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails-sandbox-assets-0.0.1 | lib/sandbox_assets/settings.rb |