sass-rails 4.0.5 → 5.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +4 -5
- data/CHANGELOG.md +2 -7
- data/Gemfile +4 -0
- data/README.md +11 -8
- data/Rakefile +1 -0
- data/lib/sass/rails/importer.rb +73 -87
- data/lib/sass/rails/railtie.rb +8 -1
- data/lib/sass/rails/template.rb +34 -20
- data/lib/sass/rails/version.rb +1 -1
- data/sass-rails.gemspec +5 -7
- data/sass-rails.gemspec.erb +4 -6
- data/test/fixtures/sass_project/config/environments/development.rb +3 -0
- data/test/fixtures/sass_project/config/environments/production.rb +3 -0
- data/test/fixtures/sass_project/config/environments/test.rb +3 -0
- data/test/gemfiles/Gemfile-4-0-stable +9 -0
- data/test/gemfiles/Gemfile-4-1-stable +9 -0
- data/test/gemfiles/Gemfile-master +9 -0
- data/test/sass_rails_logger_test.rb +4 -1
- data/test/sass_rails_test.rb +37 -13
- data/test/support/sass_rails_test_case.rb +22 -7
- metadata +255 -63
- data/test/gemfiles/Gemfile-rails-4-0 +0 -6
- data/test/gemfiles/Gemfile-rails-4-1 +0 -6
- data/test/gemfiles/Gemfile-sprockets-2-11 +0 -6
- data/test/gemfiles/Gemfile-sprockets-2-12 +0 -6
- data/test/gemfiles/Gemfile-sprockets-2-8 +0 -6
@@ -7,6 +7,9 @@ ScssProject::Application.configure do
|
|
7
7
|
# and recreated between test runs. Don't rely on the data there!
|
8
8
|
config.cache_classes = true
|
9
9
|
|
10
|
+
# Do not eager load code on boot.
|
11
|
+
config.eager_load = false
|
12
|
+
|
10
13
|
# Configure static asset server for tests with Cache-Control for performance
|
11
14
|
config.serve_static_assets = true
|
12
15
|
config.static_cache_control = "public, max-age=3600"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in sass-rails.gemspec
|
4
|
+
gemspec path: '../..'
|
5
|
+
|
6
|
+
gem "rails", github: 'rails/rails', branch: '4-0-stable'
|
7
|
+
gem "sprockets-rails", github: 'rails/sprockets-rails', branch: '2-1-stable'
|
8
|
+
|
9
|
+
gem "sqlite3"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in sass-rails.gemspec
|
4
|
+
gemspec path: '../..'
|
5
|
+
|
6
|
+
gem "rails", github: 'rails/rails', branch: '4-1-stable'
|
7
|
+
gem "sprockets-rails", github: 'rails/sprockets-rails', branch: '2-1-stable'
|
8
|
+
|
9
|
+
gem "sqlite3"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in sass-rails.gemspec
|
4
|
+
gemspec path: '../..'
|
5
|
+
|
6
|
+
gem "rails", github: 'rails/rails', branch: 'master'
|
7
|
+
gem "sprockets-rails", github: 'rails/sprockets-rails', branch: '2-1-stable'
|
8
|
+
|
9
|
+
gem "sqlite3"
|
@@ -12,7 +12,10 @@ class SassRailsLoggerTest < Sass::Rails::TestCase
|
|
12
12
|
within_rails_app "scss_project" do |app_root|
|
13
13
|
[:debug, :warn, :info, :error, :trace].each do |level|
|
14
14
|
message = "[#{level}]: sass message"
|
15
|
-
|
15
|
+
|
16
|
+
runner 'development' do
|
17
|
+
"Sass::logger.log_level = :#{level}; Sass::logger.log(:#{level}, %Q|#{message}|)"
|
18
|
+
end
|
16
19
|
|
17
20
|
assert File.exists?("#{app_root}/log/development.log"), "log file was not created"
|
18
21
|
|
data/test/sass_rails_test.rb
CHANGED
@@ -8,57 +8,81 @@ class SassRailsTest < Sass::Rails::TestCase
|
|
8
8
|
|
9
9
|
test 'style config item is honored in development mode' do
|
10
10
|
within_rails_app 'alternate_config_project' do
|
11
|
-
|
11
|
+
runner 'development' do
|
12
|
+
"puts Rails.application.config.sass.style"
|
13
|
+
end
|
14
|
+
|
12
15
|
assert_output /compact/
|
13
16
|
end
|
14
17
|
end
|
15
18
|
|
16
19
|
test 'style config item is not honored if environment is not development' do
|
17
20
|
within_rails_app 'alternate_config_project' do
|
18
|
-
|
19
|
-
|
21
|
+
runner 'production' do
|
22
|
+
"p Rails.application.config.sass.style"
|
23
|
+
end
|
24
|
+
|
25
|
+
assert_equal 'nil', $last_output.chomp
|
20
26
|
end
|
21
27
|
end
|
22
28
|
|
23
29
|
test 'css_compressor config item is not honored in development mode' do
|
24
30
|
within_rails_app 'alternate_config_project' do
|
25
|
-
|
26
|
-
|
31
|
+
runner 'development' do
|
32
|
+
"p Rails.application.config.assets.css_compressor"
|
33
|
+
end
|
34
|
+
|
35
|
+
assert_equal 'nil', $last_output.chomp
|
27
36
|
end
|
28
37
|
end
|
29
38
|
|
30
39
|
test 'css_compressor config item is honored if environment is not development' do
|
31
40
|
within_rails_app 'alternate_config_project' do
|
32
|
-
|
41
|
+
runner 'production' do
|
42
|
+
"puts Rails.application.config.assets.css_compressor"
|
43
|
+
end
|
44
|
+
|
33
45
|
assert_output /yui/
|
34
46
|
end
|
35
47
|
end
|
36
48
|
|
37
49
|
test 'sass uses expanded style by default in development mode' do
|
38
50
|
within_rails_app 'scss_project' do
|
39
|
-
|
51
|
+
runner 'development' do
|
52
|
+
"puts Rails.application.config.sass.style"
|
53
|
+
end
|
54
|
+
|
40
55
|
assert_output /expanded/
|
41
56
|
end
|
42
57
|
end
|
43
58
|
|
44
59
|
test 'sass not defines compressor in development mode' do
|
45
60
|
within_rails_app 'scss_project' do
|
46
|
-
|
47
|
-
|
61
|
+
runner 'development' do
|
62
|
+
"p Rails.application.config.assets.css_compressor"
|
63
|
+
end
|
64
|
+
|
65
|
+
assert_equal 'nil', $last_output.chomp
|
48
66
|
end
|
49
67
|
end
|
50
68
|
|
51
69
|
test 'sass defines compressor by default in test mode' do
|
52
70
|
within_rails_app 'scss_project' do
|
53
|
-
|
54
|
-
|
71
|
+
runner 'test' do
|
72
|
+
"puts Rails.application.config.assets.css_compressor"
|
73
|
+
end
|
74
|
+
|
75
|
+
assert_equal 'sass', $last_output.chomp
|
55
76
|
end
|
56
77
|
end
|
57
78
|
|
58
79
|
test 'sass defines compressor by default in production mode' do
|
59
80
|
within_rails_app 'scss_project' do
|
60
|
-
|
61
|
-
|
81
|
+
runner 'production' do
|
82
|
+
"puts Rails.application.config.assets.css_compressor"
|
83
|
+
end
|
84
|
+
|
85
|
+
assert_equal 'sass', $last_output.chomp
|
62
86
|
end
|
63
87
|
end
|
64
88
|
|
@@ -9,10 +9,12 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
9
9
|
|
10
10
|
class ExecutionError < StandardError
|
11
11
|
attr_accessor :output
|
12
|
+
|
12
13
|
def initialize(message, output = nil)
|
13
14
|
super(message)
|
14
15
|
self.output = output
|
15
16
|
end
|
17
|
+
|
16
18
|
def message
|
17
19
|
"#{super}\nOutput was:\n#{output}"
|
18
20
|
end
|
@@ -20,6 +22,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
20
22
|
|
21
23
|
module SilentError
|
22
24
|
attr_accessor :output
|
25
|
+
|
23
26
|
def message
|
24
27
|
"#{super}\nOutput was:\n#{output}"
|
25
28
|
end
|
@@ -50,15 +53,15 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
50
53
|
end
|
51
54
|
|
52
55
|
def assert_not_output(match)
|
53
|
-
assert_no_match match, $
|
56
|
+
assert_no_match match, $last_output
|
54
57
|
end
|
55
58
|
|
56
59
|
def assert_output(match)
|
57
|
-
assert $
|
60
|
+
assert $last_output.to_s =~ match, "#{match} was not found in #{$last_output.inspect}"
|
58
61
|
end
|
59
62
|
|
60
63
|
def assert_line_count(count)
|
61
|
-
last_count = $
|
64
|
+
last_count = $last_output.lines.count
|
62
65
|
assert last_count == count, "Wrong line count, expected: #{count} but got: #{last_count}"
|
63
66
|
end
|
64
67
|
# Copies a rails app fixture to a temp directory
|
@@ -68,14 +71,14 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
68
71
|
# and removes the temp directory when done.
|
69
72
|
def within_rails_app(name, without_gems = [], gem_options = $gem_options)
|
70
73
|
sourcedir = File.expand_path("../../fixtures/#{name}", __FILE__)
|
74
|
+
|
71
75
|
Dir.mktmpdir do |tmpdir|
|
72
76
|
FileUtils.cp_r "#{sourcedir}/.", tmpdir
|
77
|
+
|
73
78
|
Dir.chdir(tmpdir) do
|
74
79
|
gem_options.each { |gem_name, options| modify_gem_entry gem_name, options }
|
75
80
|
without_gems.each { |gem_name| remove_gem name }
|
76
|
-
|
77
|
-
runcmd "bundle install --verbose"
|
78
|
-
runcmd "bundle exec rake db:create --trace"
|
81
|
+
|
79
82
|
yield tmpdir
|
80
83
|
end
|
81
84
|
end
|
@@ -85,6 +88,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
85
88
|
gem_contents = File.readlines(gemfile)
|
86
89
|
gem_contents.map!(&blk)
|
87
90
|
gem_contents.compact!
|
91
|
+
|
88
92
|
File.open(gemfile, "w") do |f|
|
89
93
|
f.print(gem_contents.join(""))
|
90
94
|
end
|
@@ -92,6 +96,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
92
96
|
|
93
97
|
def modify_gem_entry(gemname, options, gemfile = "Gemfile")
|
94
98
|
found = false
|
99
|
+
|
95
100
|
process_gemfile(gemfile) do |line|
|
96
101
|
if line =~ /gem *(["'])#{Regexp.escape(gemname)}\1/
|
97
102
|
found = true
|
@@ -100,6 +105,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
100
105
|
line
|
101
106
|
end
|
102
107
|
end
|
108
|
+
|
103
109
|
unless found
|
104
110
|
File.open(gemfile, "a") do |f|
|
105
111
|
f.print("\n#{gem_entry(gemname, options)}\n")
|
@@ -123,6 +129,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
123
129
|
output = StringIO.new
|
124
130
|
$stderr, old_stderr = output, $stderr
|
125
131
|
$stdout, old_stdout = output, $stdout
|
132
|
+
|
126
133
|
begin
|
127
134
|
yield
|
128
135
|
rescue ExecutionError => e
|
@@ -144,6 +151,7 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
144
151
|
# There's a bug in bundler where with_clean_env doesn't clear out the BUNDLE_GEMFILE environment setting
|
145
152
|
# https://github.com/carlhuda/bundler/issues/1133
|
146
153
|
env["BUNDLE_GEMFILE"] = "#{working_directory}/#{gemfile}" if clean_env
|
154
|
+
|
147
155
|
todo = Proc.new do
|
148
156
|
r, w = IO.pipe
|
149
157
|
Kernel.spawn(env, cmd, :out => w , :err => w, :chdir => working_directory)
|
@@ -151,11 +159,14 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
151
159
|
Process.wait
|
152
160
|
output = r.read
|
153
161
|
r.close
|
162
|
+
|
154
163
|
unless $?.exitstatus == 0
|
155
164
|
raise ExecutionError, "Command failed with exit status #{$?.exitstatus}: #{cmd}", output
|
156
165
|
end
|
157
|
-
|
166
|
+
|
167
|
+
$last_output = output
|
158
168
|
end
|
169
|
+
|
159
170
|
if clean_env
|
160
171
|
Bundler.with_clean_env(&todo)
|
161
172
|
else
|
@@ -163,4 +174,8 @@ class Sass::Rails::TestCase < ActiveSupport::TestCase
|
|
163
174
|
end
|
164
175
|
end
|
165
176
|
|
177
|
+
# A thin wrapper around runcmd to be DRY in tests
|
178
|
+
def runner(environment)
|
179
|
+
runcmd "ruby script/rails runner '#{yield}'", Dir.pwd, true, 'Gemfile', {'RAILS_ENV' => environment}
|
180
|
+
end
|
166
181
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wycats
|
@@ -9,8 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-08-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sass
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '3.2'
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '3.2'
|
14
28
|
- !ruby/object:Gem::Dependency
|
15
29
|
name: railties
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -31,82 +45,40 @@ dependencies:
|
|
31
45
|
- - "<"
|
32
46
|
- !ruby/object:Gem::Version
|
33
47
|
version: '5.0'
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: sass
|
36
|
-
requirement: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 3.2.2
|
41
|
-
type: :runtime
|
42
|
-
prerelease: false
|
43
|
-
version_requirements: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 3.2.2
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: sprockets-rails
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '2.0'
|
55
|
+
- - "<"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '4.0'
|
55
58
|
type: :runtime
|
56
59
|
prerelease: false
|
57
60
|
version_requirements: !ruby/object:Gem::Requirement
|
58
61
|
requirements:
|
59
|
-
- - "
|
62
|
+
- - ">="
|
60
63
|
- !ruby/object:Gem::Version
|
61
64
|
version: '2.0'
|
65
|
+
- - "<"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '4.0'
|
62
68
|
- !ruby/object:Gem::Dependency
|
63
69
|
name: sprockets
|
64
70
|
requirement: !ruby/object:Gem::Requirement
|
65
71
|
requirements:
|
66
72
|
- - "~>"
|
67
73
|
- !ruby/object:Gem::Version
|
68
|
-
version: '2.
|
69
|
-
- - "<"
|
70
|
-
- !ruby/object:Gem::Version
|
71
|
-
version: '3.0'
|
74
|
+
version: '2.12'
|
72
75
|
type: :runtime
|
73
76
|
prerelease: false
|
74
77
|
version_requirements: !ruby/object:Gem::Requirement
|
75
78
|
requirements:
|
76
79
|
- - "~>"
|
77
80
|
- !ruby/object:Gem::Version
|
78
|
-
version: '2.
|
79
|
-
- - "<"
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '3.0'
|
82
|
-
- !ruby/object:Gem::Dependency
|
83
|
-
name: rails
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - ">="
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: '0'
|
89
|
-
type: :development
|
90
|
-
prerelease: false
|
91
|
-
version_requirements: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - ">="
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '0'
|
96
|
-
- !ruby/object:Gem::Dependency
|
97
|
-
name: sqlite3
|
98
|
-
requirement: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - ">="
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '0'
|
103
|
-
type: :development
|
104
|
-
prerelease: false
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - ">="
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '0'
|
81
|
+
version: '2.12'
|
110
82
|
description: Sass adapter for the Rails asset pipeline.
|
111
83
|
email:
|
112
84
|
- wycats@gmail.com
|
@@ -352,11 +324,9 @@ files:
|
|
352
324
|
- test/fixtures/scss_project/script/rails
|
353
325
|
- test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep
|
354
326
|
- test/fixtures/scss_project/vendor/plugins/.gitkeep
|
355
|
-
- test/gemfiles/Gemfile-
|
356
|
-
- test/gemfiles/Gemfile-
|
357
|
-
- test/gemfiles/Gemfile-
|
358
|
-
- test/gemfiles/Gemfile-sprockets-2-12
|
359
|
-
- test/gemfiles/Gemfile-sprockets-2-8
|
327
|
+
- test/gemfiles/Gemfile-4-0-stable
|
328
|
+
- test/gemfiles/Gemfile-4-1-stable
|
329
|
+
- test/gemfiles/Gemfile-master
|
360
330
|
- test/sass_rails_generators_test.rb
|
361
331
|
- test/sass_rails_logger_test.rb
|
362
332
|
- test/sass_rails_test.rb
|
@@ -377,13 +347,235 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
377
347
|
version: '0'
|
378
348
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
379
349
|
requirements:
|
380
|
-
- - "
|
350
|
+
- - ">"
|
381
351
|
- !ruby/object:Gem::Version
|
382
|
-
version:
|
352
|
+
version: 1.3.1
|
383
353
|
requirements: []
|
384
354
|
rubyforge_project: sass-rails
|
385
|
-
rubygems_version: 2.
|
355
|
+
rubygems_version: 2.3.0
|
386
356
|
signing_key:
|
387
357
|
specification_version: 4
|
388
358
|
summary: Sass adapter for the Rails asset pipeline.
|
389
|
-
test_files:
|
359
|
+
test_files:
|
360
|
+
- test/fixtures/alternate_config_project/.gitignore
|
361
|
+
- test/fixtures/alternate_config_project/Gemfile
|
362
|
+
- test/fixtures/alternate_config_project/README
|
363
|
+
- test/fixtures/alternate_config_project/Rakefile
|
364
|
+
- test/fixtures/alternate_config_project/app/assets/images/1x1.png
|
365
|
+
- test/fixtures/alternate_config_project/app/assets/images/rails.png
|
366
|
+
- test/fixtures/alternate_config_project/app/assets/javascripts/application.js
|
367
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/_top_level_partial.css.scss
|
368
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/application.css.scss
|
369
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/css_application.css
|
370
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/globbed/globbed.css.scss
|
371
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss
|
372
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/_sass_import.css.sass
|
373
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/_scss_import.css.scss
|
374
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/_without_css_ext.scss
|
375
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass
|
376
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss
|
377
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss
|
378
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/another_plain.css
|
379
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/plain.css
|
380
|
+
- test/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/second_level.css.scss
|
381
|
+
- test/fixtures/alternate_config_project/app/controllers/application_controller.rb
|
382
|
+
- test/fixtures/alternate_config_project/app/helpers/application_helper.rb
|
383
|
+
- test/fixtures/alternate_config_project/app/mailers/.gitkeep
|
384
|
+
- test/fixtures/alternate_config_project/app/models/.gitkeep
|
385
|
+
- test/fixtures/alternate_config_project/app/views/layouts/application.html.erb
|
386
|
+
- test/fixtures/alternate_config_project/config.ru
|
387
|
+
- test/fixtures/alternate_config_project/config/application.rb
|
388
|
+
- test/fixtures/alternate_config_project/config/boot.rb
|
389
|
+
- test/fixtures/alternate_config_project/config/database.yml
|
390
|
+
- test/fixtures/alternate_config_project/config/environment.rb
|
391
|
+
- test/fixtures/alternate_config_project/config/environments/development.rb
|
392
|
+
- test/fixtures/alternate_config_project/config/environments/production.rb
|
393
|
+
- test/fixtures/alternate_config_project/config/environments/test.rb
|
394
|
+
- test/fixtures/alternate_config_project/config/initializers/backtrace_silencers.rb
|
395
|
+
- test/fixtures/alternate_config_project/config/initializers/inflections.rb
|
396
|
+
- test/fixtures/alternate_config_project/config/initializers/mime_types.rb
|
397
|
+
- test/fixtures/alternate_config_project/config/initializers/secret_token.rb
|
398
|
+
- test/fixtures/alternate_config_project/config/initializers/session_store.rb
|
399
|
+
- test/fixtures/alternate_config_project/config/initializers/wrap_parameters.rb
|
400
|
+
- test/fixtures/alternate_config_project/config/locales/en.yml
|
401
|
+
- test/fixtures/alternate_config_project/config/routes.rb
|
402
|
+
- test/fixtures/alternate_config_project/db/seeds.rb
|
403
|
+
- test/fixtures/alternate_config_project/doc/README_FOR_APP
|
404
|
+
- test/fixtures/alternate_config_project/lib/tasks/.gitkeep
|
405
|
+
- test/fixtures/alternate_config_project/log/.gitkeep
|
406
|
+
- test/fixtures/alternate_config_project/public/404.html
|
407
|
+
- test/fixtures/alternate_config_project/public/422.html
|
408
|
+
- test/fixtures/alternate_config_project/public/500.html
|
409
|
+
- test/fixtures/alternate_config_project/public/favicon.ico
|
410
|
+
- test/fixtures/alternate_config_project/public/index.html
|
411
|
+
- test/fixtures/alternate_config_project/public/robots.txt
|
412
|
+
- test/fixtures/alternate_config_project/script/rails
|
413
|
+
- test/fixtures/alternate_config_project/vendor/assets/stylesheets/.gitkeep
|
414
|
+
- test/fixtures/alternate_config_project/vendor/plugins/.gitkeep
|
415
|
+
- test/fixtures/engine_project/.gitignore
|
416
|
+
- test/fixtures/engine_project/Gemfile
|
417
|
+
- test/fixtures/engine_project/MIT-LICENSE
|
418
|
+
- test/fixtures/engine_project/README.rdoc
|
419
|
+
- test/fixtures/engine_project/Rakefile
|
420
|
+
- test/fixtures/engine_project/app/assets/images/engine_project/.keep
|
421
|
+
- test/fixtures/engine_project/app/assets/javascripts/engine_project/application.js
|
422
|
+
- test/fixtures/engine_project/app/assets/stylesheets/engine_project/application.css
|
423
|
+
- test/fixtures/engine_project/app/controllers/engine_project/application_controller.rb
|
424
|
+
- test/fixtures/engine_project/app/helpers/engine_project/application_helper.rb
|
425
|
+
- test/fixtures/engine_project/app/views/layouts/engine_project/application.html.erb
|
426
|
+
- test/fixtures/engine_project/config/routes.rb
|
427
|
+
- test/fixtures/engine_project/engine_project.gemspec
|
428
|
+
- test/fixtures/engine_project/lib/engine_project.rb
|
429
|
+
- test/fixtures/engine_project/lib/engine_project/engine.rb
|
430
|
+
- test/fixtures/engine_project/lib/engine_project/version.rb
|
431
|
+
- test/fixtures/engine_project/lib/tasks/engine_project_tasks.rake
|
432
|
+
- test/fixtures/engine_project/script/rails
|
433
|
+
- test/fixtures/engine_project/test/dummy/README.rdoc
|
434
|
+
- test/fixtures/engine_project/test/dummy/Rakefile
|
435
|
+
- test/fixtures/engine_project/test/dummy/app/assets/javascripts/application.js
|
436
|
+
- test/fixtures/engine_project/test/dummy/app/assets/stylesheets/application.css
|
437
|
+
- test/fixtures/engine_project/test/dummy/app/controllers/application_controller.rb
|
438
|
+
- test/fixtures/engine_project/test/dummy/app/controllers/concerns/.keep
|
439
|
+
- test/fixtures/engine_project/test/dummy/app/helpers/application_helper.rb
|
440
|
+
- test/fixtures/engine_project/test/dummy/app/mailers/.keep
|
441
|
+
- test/fixtures/engine_project/test/dummy/app/models/.keep
|
442
|
+
- test/fixtures/engine_project/test/dummy/app/models/concerns/.keep
|
443
|
+
- test/fixtures/engine_project/test/dummy/app/views/layouts/application.html.erb
|
444
|
+
- test/fixtures/engine_project/test/dummy/bin/bundle
|
445
|
+
- test/fixtures/engine_project/test/dummy/bin/rails
|
446
|
+
- test/fixtures/engine_project/test/dummy/bin/rake
|
447
|
+
- test/fixtures/engine_project/test/dummy/config.ru
|
448
|
+
- test/fixtures/engine_project/test/dummy/config/application.rb
|
449
|
+
- test/fixtures/engine_project/test/dummy/config/boot.rb
|
450
|
+
- test/fixtures/engine_project/test/dummy/config/database.yml
|
451
|
+
- test/fixtures/engine_project/test/dummy/config/environment.rb
|
452
|
+
- test/fixtures/engine_project/test/dummy/config/environments/development.rb
|
453
|
+
- test/fixtures/engine_project/test/dummy/config/environments/production.rb
|
454
|
+
- test/fixtures/engine_project/test/dummy/config/environments/test.rb
|
455
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/backtrace_silencers.rb
|
456
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/filter_parameter_logging.rb
|
457
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/inflections.rb
|
458
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/mime_types.rb
|
459
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/secret_token.rb
|
460
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/session_store.rb
|
461
|
+
- test/fixtures/engine_project/test/dummy/config/initializers/wrap_parameters.rb
|
462
|
+
- test/fixtures/engine_project/test/dummy/config/locales/en.yml
|
463
|
+
- test/fixtures/engine_project/test/dummy/config/routes.rb
|
464
|
+
- test/fixtures/engine_project/test/dummy/lib/assets/.keep
|
465
|
+
- test/fixtures/engine_project/test/dummy/log/.keep
|
466
|
+
- test/fixtures/engine_project/test/dummy/public/404.html
|
467
|
+
- test/fixtures/engine_project/test/dummy/public/422.html
|
468
|
+
- test/fixtures/engine_project/test/dummy/public/500.html
|
469
|
+
- test/fixtures/engine_project/test/dummy/public/favicon.ico
|
470
|
+
- test/fixtures/sass_project/.gitignore
|
471
|
+
- test/fixtures/sass_project/Gemfile
|
472
|
+
- test/fixtures/sass_project/README
|
473
|
+
- test/fixtures/sass_project/Rakefile
|
474
|
+
- test/fixtures/sass_project/app/assets/images/rails.png
|
475
|
+
- test/fixtures/sass_project/app/assets/javascripts/application.js
|
476
|
+
- test/fixtures/sass_project/app/assets/stylesheets/application.css
|
477
|
+
- test/fixtures/sass_project/app/controllers/application_controller.rb
|
478
|
+
- test/fixtures/sass_project/app/helpers/application_helper.rb
|
479
|
+
- test/fixtures/sass_project/app/mailers/.gitkeep
|
480
|
+
- test/fixtures/sass_project/app/models/.gitkeep
|
481
|
+
- test/fixtures/sass_project/app/views/layouts/application.html.erb
|
482
|
+
- test/fixtures/sass_project/config.ru
|
483
|
+
- test/fixtures/sass_project/config/application.rb
|
484
|
+
- test/fixtures/sass_project/config/boot.rb
|
485
|
+
- test/fixtures/sass_project/config/database.yml
|
486
|
+
- test/fixtures/sass_project/config/environment.rb
|
487
|
+
- test/fixtures/sass_project/config/environments/development.rb
|
488
|
+
- test/fixtures/sass_project/config/environments/production.rb
|
489
|
+
- test/fixtures/sass_project/config/environments/test.rb
|
490
|
+
- test/fixtures/sass_project/config/initializers/backtrace_silencers.rb
|
491
|
+
- test/fixtures/sass_project/config/initializers/inflections.rb
|
492
|
+
- test/fixtures/sass_project/config/initializers/mime_types.rb
|
493
|
+
- test/fixtures/sass_project/config/initializers/secret_token.rb
|
494
|
+
- test/fixtures/sass_project/config/initializers/session_store.rb
|
495
|
+
- test/fixtures/sass_project/config/initializers/wrap_parameters.rb
|
496
|
+
- test/fixtures/sass_project/config/locales/en.yml
|
497
|
+
- test/fixtures/sass_project/config/routes.rb
|
498
|
+
- test/fixtures/sass_project/db/seeds.rb
|
499
|
+
- test/fixtures/sass_project/doc/README_FOR_APP
|
500
|
+
- test/fixtures/sass_project/lib/tasks/.gitkeep
|
501
|
+
- test/fixtures/sass_project/log/.gitkeep
|
502
|
+
- test/fixtures/sass_project/public/404.html
|
503
|
+
- test/fixtures/sass_project/public/422.html
|
504
|
+
- test/fixtures/sass_project/public/500.html
|
505
|
+
- test/fixtures/sass_project/public/favicon.ico
|
506
|
+
- test/fixtures/sass_project/public/index.html
|
507
|
+
- test/fixtures/sass_project/public/robots.txt
|
508
|
+
- test/fixtures/sass_project/script/rails
|
509
|
+
- test/fixtures/sass_project/vendor/assets/stylesheets/.gitkeep
|
510
|
+
- test/fixtures/sass_project/vendor/plugins/.gitkeep
|
511
|
+
- test/fixtures/scss_project/.gitignore
|
512
|
+
- test/fixtures/scss_project/Gemfile
|
513
|
+
- test/fixtures/scss_project/README
|
514
|
+
- test/fixtures/scss_project/Rakefile
|
515
|
+
- test/fixtures/scss_project/app/assets/images/1x1.png
|
516
|
+
- test/fixtures/scss_project/app/assets/images/rails.png
|
517
|
+
- test/fixtures/scss_project/app/assets/javascripts/application.js
|
518
|
+
- test/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.css.scss
|
519
|
+
- test/fixtures/scss_project/app/assets/stylesheets/application.css.scss
|
520
|
+
- test/fixtures/scss_project/app/assets/stylesheets/css_application.css
|
521
|
+
- test/fixtures/scss_project/app/assets/stylesheets/css_erb_handler.css.erb
|
522
|
+
- test/fixtures/scss_project/app/assets/stylesheets/css_sass_erb_handler.css.sass.erb
|
523
|
+
- test/fixtures/scss_project/app/assets/stylesheets/css_scss_erb_handler.css.scss.erb
|
524
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.css.scss
|
525
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss
|
526
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.css.sass
|
527
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.css.scss
|
528
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_without_css_ext.scss
|
529
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass
|
530
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss
|
531
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss
|
532
|
+
- test/fixtures/scss_project/app/assets/stylesheets/sass_erb_handler.sass.erb
|
533
|
+
- test/fixtures/scss_project/app/assets/stylesheets/scss_erb_handler.scss.erb
|
534
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/_defaults.css.scss
|
535
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css
|
536
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css
|
537
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.css.scss
|
538
|
+
- test/fixtures/scss_project/app/controllers/application_controller.rb
|
539
|
+
- test/fixtures/scss_project/app/helpers/application_helper.rb
|
540
|
+
- test/fixtures/scss_project/app/mailers/.gitkeep
|
541
|
+
- test/fixtures/scss_project/app/models/.gitkeep
|
542
|
+
- test/fixtures/scss_project/app/views/layouts/application.html.erb
|
543
|
+
- test/fixtures/scss_project/config.ru
|
544
|
+
- test/fixtures/scss_project/config/application.rb
|
545
|
+
- test/fixtures/scss_project/config/boot.rb
|
546
|
+
- test/fixtures/scss_project/config/database.yml
|
547
|
+
- test/fixtures/scss_project/config/environment.rb
|
548
|
+
- test/fixtures/scss_project/config/environments/development.rb
|
549
|
+
- test/fixtures/scss_project/config/environments/production.rb
|
550
|
+
- test/fixtures/scss_project/config/environments/test.rb
|
551
|
+
- test/fixtures/scss_project/config/initializers/backtrace_silencers.rb
|
552
|
+
- test/fixtures/scss_project/config/initializers/inflections.rb
|
553
|
+
- test/fixtures/scss_project/config/initializers/mime_types.rb
|
554
|
+
- test/fixtures/scss_project/config/initializers/postprocessor.rb
|
555
|
+
- test/fixtures/scss_project/config/initializers/secret_token.rb
|
556
|
+
- test/fixtures/scss_project/config/initializers/session_store.rb
|
557
|
+
- test/fixtures/scss_project/config/initializers/wrap_parameters.rb
|
558
|
+
- test/fixtures/scss_project/config/locales/en.yml
|
559
|
+
- test/fixtures/scss_project/config/routes.rb
|
560
|
+
- test/fixtures/scss_project/db/seeds.rb
|
561
|
+
- test/fixtures/scss_project/doc/README_FOR_APP
|
562
|
+
- test/fixtures/scss_project/lib/tasks/.gitkeep
|
563
|
+
- test/fixtures/scss_project/log/.gitkeep
|
564
|
+
- test/fixtures/scss_project/public/404.html
|
565
|
+
- test/fixtures/scss_project/public/422.html
|
566
|
+
- test/fixtures/scss_project/public/500.html
|
567
|
+
- test/fixtures/scss_project/public/favicon.ico
|
568
|
+
- test/fixtures/scss_project/public/index.html
|
569
|
+
- test/fixtures/scss_project/public/robots.txt
|
570
|
+
- test/fixtures/scss_project/script/rails
|
571
|
+
- test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep
|
572
|
+
- test/fixtures/scss_project/vendor/plugins/.gitkeep
|
573
|
+
- test/gemfiles/Gemfile-4-0-stable
|
574
|
+
- test/gemfiles/Gemfile-4-1-stable
|
575
|
+
- test/gemfiles/Gemfile-master
|
576
|
+
- test/sass_rails_generators_test.rb
|
577
|
+
- test/sass_rails_logger_test.rb
|
578
|
+
- test/sass_rails_test.rb
|
579
|
+
- test/support/sass_rails_test_case.rb
|
580
|
+
- test/test_helper.rb
|
581
|
+
has_rdoc:
|