sass-rails 3.1.0.rc.1 → 3.1.0.rc.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +3 -4
- data/README.markdown +52 -0
- data/lib/rails/generators/sass/assets/assets_generator.rb +1 -1
- data/lib/rails/generators/sass/assets/templates/stylesheet.css.sass +4 -1
- data/lib/rails/generators/sass_scaffold.rb +2 -1
- data/lib/rails/generators/scss/assets/assets_generator.rb +1 -1
- data/lib/rails/generators/scss/assets/templates/stylesheet.css.scss +5 -1
- data/lib/sass-rails.rb +1 -31
- data/lib/sass/rails.rb +11 -0
- data/lib/sass/rails/compressor.rb +15 -0
- data/lib/sass/rails/importer.rb +128 -0
- data/lib/sass/rails/monkey_patches.rb +20 -0
- data/lib/sass/rails/railtie.rb +43 -0
- data/lib/sass/rails/template_handlers.rb +61 -0
- data/lib/{sass-rails → sass/rails}/version.rb +1 -1
- data/sass-rails.gemspec +8 -7
- data/test/fixtures/sass_project/.gitignore +5 -0
- data/test/fixtures/sass_project/Gemfile +7 -0
- data/test/fixtures/sass_project/README +261 -0
- data/test/{dummy → fixtures/sass_project}/Rakefile +2 -2
- data/test/fixtures/sass_project/app/assets/images/rails.png +0 -0
- data/test/fixtures/sass_project/app/assets/javascripts/application.js +9 -0
- data/test/fixtures/sass_project/app/assets/stylesheets/application.css +7 -0
- data/test/{dummy → fixtures/sass_project}/app/controllers/application_controller.rb +0 -0
- data/test/{dummy → fixtures/sass_project}/app/helpers/application_helper.rb +0 -0
- data/test/{dummy/public/stylesheets → fixtures/sass_project/app/mailers}/.gitkeep +0 -0
- data/test/{dummy/log/development.log → fixtures/sass_project/app/models/.gitkeep} +0 -0
- data/test/fixtures/sass_project/app/views/layouts/application.html.erb +14 -0
- data/test/{dummy → fixtures/sass_project}/config.ru +1 -1
- data/test/fixtures/sass_project/config/application.rb +52 -0
- data/test/fixtures/sass_project/config/boot.rb +6 -0
- data/test/{dummy → fixtures/sass_project}/config/database.yml +3 -0
- data/test/{dummy → fixtures/sass_project}/config/environment.rb +1 -1
- data/test/{dummy → fixtures/sass_project}/config/environments/development.rb +5 -4
- data/test/{dummy → fixtures/sass_project}/config/environments/production.rb +18 -13
- data/test/{dummy → fixtures/sass_project}/config/environments/test.rb +6 -2
- data/test/{dummy → fixtures/sass_project}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/{dummy → fixtures/sass_project}/config/initializers/inflections.rb +0 -0
- data/test/{dummy → fixtures/sass_project}/config/initializers/mime_types.rb +0 -0
- data/test/{dummy → fixtures/sass_project}/config/initializers/secret_token.rb +1 -1
- data/test/{dummy → fixtures/sass_project}/config/initializers/session_store.rb +2 -2
- data/test/fixtures/sass_project/config/initializers/wrap_parameters.rb +12 -0
- data/test/{dummy → fixtures/sass_project}/config/locales/en.yml +1 -1
- data/test/{dummy → fixtures/sass_project}/config/routes.rb +2 -2
- data/test/fixtures/sass_project/db/seeds.rb +7 -0
- data/test/fixtures/sass_project/doc/README_FOR_APP +2 -0
- data/test/{dummy/log/production.log → fixtures/sass_project/lib/tasks/.gitkeep} +0 -0
- data/test/{dummy/log/server.log → fixtures/sass_project/log/.gitkeep} +0 -0
- data/test/{dummy → fixtures/sass_project}/public/404.html +0 -0
- data/test/{dummy → fixtures/sass_project}/public/422.html +0 -0
- data/test/{dummy → fixtures/sass_project}/public/500.html +0 -0
- data/test/{dummy → fixtures/sass_project}/public/favicon.ico +0 -0
- data/test/fixtures/sass_project/public/index.html +241 -0
- data/test/fixtures/sass_project/public/robots.txt +5 -0
- data/test/{dummy → fixtures/sass_project}/script/rails +0 -0
- data/test/fixtures/sass_project/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/fixtures/sass_project/vendor/plugins/.gitkeep +0 -0
- data/test/fixtures/scss_project/.gitignore +5 -0
- data/test/fixtures/scss_project/Gemfile +7 -0
- data/test/fixtures/scss_project/README +261 -0
- data/test/fixtures/scss_project/Rakefile +7 -0
- data/test/fixtures/scss_project/app/assets/images/rails.png +0 -0
- data/test/fixtures/scss_project/app/assets/javascripts/application.js +9 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.css.scss +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/application.css.scss +10 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.css.scss +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.css.sass +5 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.css.scss +9 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass +2 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css +3 -0
- data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.css.scss +1 -0
- data/test/fixtures/scss_project/app/controllers/application_controller.rb +3 -0
- data/test/fixtures/scss_project/app/helpers/application_helper.rb +2 -0
- data/test/fixtures/scss_project/app/mailers/.gitkeep +0 -0
- data/test/fixtures/scss_project/app/models/.gitkeep +0 -0
- data/test/fixtures/scss_project/app/views/layouts/application.html.erb +14 -0
- data/test/fixtures/scss_project/config.ru +4 -0
- data/test/{dummy → fixtures/scss_project}/config/application.rb +13 -9
- data/test/fixtures/scss_project/config/boot.rb +6 -0
- data/test/fixtures/scss_project/config/database.yml +25 -0
- data/test/fixtures/scss_project/config/environment.rb +5 -0
- data/test/fixtures/scss_project/config/environments/development.rb +27 -0
- data/test/fixtures/scss_project/config/environments/production.rb +54 -0
- data/test/fixtures/scss_project/config/environments/test.rb +39 -0
- data/test/fixtures/scss_project/config/initializers/backtrace_silencers.rb +7 -0
- data/test/fixtures/scss_project/config/initializers/inflections.rb +10 -0
- data/test/fixtures/scss_project/config/initializers/mime_types.rb +5 -0
- data/test/fixtures/scss_project/config/initializers/secret_token.rb +7 -0
- data/test/fixtures/scss_project/config/initializers/session_store.rb +8 -0
- data/test/fixtures/scss_project/config/initializers/wrap_parameters.rb +12 -0
- data/test/fixtures/scss_project/config/locales/en.yml +5 -0
- data/test/fixtures/scss_project/config/routes.rb +58 -0
- data/test/fixtures/scss_project/db/seeds.rb +7 -0
- data/test/fixtures/scss_project/doc/README_FOR_APP +2 -0
- data/test/fixtures/scss_project/lib/tasks/.gitkeep +0 -0
- data/test/fixtures/scss_project/log/.gitkeep +0 -0
- data/test/fixtures/scss_project/public/404.html +26 -0
- data/test/fixtures/scss_project/public/422.html +26 -0
- data/test/fixtures/scss_project/public/500.html +26 -0
- data/test/fixtures/scss_project/public/favicon.ico +0 -0
- data/test/fixtures/scss_project/public/index.html +241 -0
- data/test/fixtures/scss_project/public/robots.txt +5 -0
- data/test/fixtures/scss_project/script/rails +6 -0
- data/test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/fixtures/scss_project/vendor/plugins/.gitkeep +0 -0
- data/test/sass_rails_test.rb +46 -3
- data/test/support/sass_rails_test_case.rb +147 -0
- data/test/test_helper.rb +15 -11
- metadata +260 -85
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/config/boot.rb +0 -10
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -4
- data/test/dummy/public/javascripts/application.js +0 -2
- data/test/dummy/public/javascripts/controls.js +0 -965
- data/test/dummy/public/javascripts/dragdrop.js +0 -974
- data/test/dummy/public/javascripts/effects.js +0 -1123
- data/test/dummy/public/javascripts/prototype.js +0 -6001
- data/test/dummy/public/javascripts/rails.js +0 -191
- data/test/integration/navigation_test.rb +0 -7
- data/test/support/integration_case.rb +0 -5
data/test/test_helper.rb
CHANGED
@@ -1,22 +1,26 @@
|
|
1
1
|
# Configure Rails Envinronment
|
2
2
|
ENV["RAILS_ENV"] = "test"
|
3
3
|
|
4
|
-
require
|
4
|
+
require 'rails'
|
5
5
|
require "rails/test_help"
|
6
|
-
|
7
|
-
ActionMailer::Base.delivery_method = :test
|
8
|
-
ActionMailer::Base.perform_deliveries = true
|
9
|
-
ActionMailer::Base.default_url_options[:host] = "test.com"
|
6
|
+
require 'sass/rails'
|
10
7
|
|
11
8
|
Rails.backtrace_cleaner.remove_silencers!
|
12
9
|
|
13
|
-
#
|
14
|
-
|
15
|
-
|
16
|
-
|
10
|
+
# Set locations of local gems in this hash.
|
11
|
+
# They will be added/replaced in the generated Gemfiles
|
12
|
+
# You should also set them in the local Gemfile
|
13
|
+
$gem_locations = {
|
14
|
+
"sass-rails" => File.expand_path("../../", __FILE__)
|
15
|
+
}
|
16
|
+
|
17
|
+
# Uncomment this if you need to test against a local rails checkout
|
18
|
+
# $gem_locations["rails"] = "/Users/chris/Projects/rails"
|
19
|
+
# Uncomment this if you need to test against a local sass checkout
|
20
|
+
# $gem_locations["sass"] = "/Users/chris/Projects/sass"
|
21
|
+
# Uncomment this if you need to test against a local sprockets checkout
|
22
|
+
# $gem_locations["sprockets"] = "/Users/chris/Projects/sprockets"
|
17
23
|
|
18
|
-
# Run any available migration
|
19
|
-
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
|
20
24
|
|
21
25
|
# Load support files
|
22
26
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
metadata
CHANGED
@@ -1,16 +1,25 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 15424097
|
4
5
|
prerelease: 6
|
5
|
-
|
6
|
+
segments:
|
7
|
+
- 3
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
- rc
|
11
|
+
- 2
|
12
|
+
version: 3.1.0.rc.2
|
6
13
|
platform: ruby
|
7
14
|
authors:
|
8
15
|
- wycats
|
16
|
+
- chriseppstein
|
9
17
|
autorequire:
|
10
18
|
bindir: bin
|
11
19
|
cert_chain: []
|
12
20
|
|
13
|
-
date: 2011-
|
21
|
+
date: 2011-06-07 00:00:00 -07:00
|
22
|
+
default_executable:
|
14
23
|
dependencies:
|
15
24
|
- !ruby/object:Gem::Dependency
|
16
25
|
name: sass
|
@@ -18,9 +27,14 @@ dependencies:
|
|
18
27
|
requirement: &id001 !ruby/object:Gem::Requirement
|
19
28
|
none: false
|
20
29
|
requirements:
|
21
|
-
- -
|
30
|
+
- - ">="
|
22
31
|
- !ruby/object:Gem::Version
|
23
|
-
|
32
|
+
hash: 7
|
33
|
+
segments:
|
34
|
+
- 3
|
35
|
+
- 1
|
36
|
+
- 2
|
37
|
+
version: 3.1.2
|
24
38
|
type: :runtime
|
25
39
|
version_requirements: *id001
|
26
40
|
- !ruby/object:Gem::Dependency
|
@@ -31,6 +45,13 @@ dependencies:
|
|
31
45
|
requirements:
|
32
46
|
- - ~>
|
33
47
|
- !ruby/object:Gem::Version
|
48
|
+
hash: 15424103
|
49
|
+
segments:
|
50
|
+
- 3
|
51
|
+
- 1
|
52
|
+
- 0
|
53
|
+
- rc
|
54
|
+
- 1
|
34
55
|
version: 3.1.0.rc1
|
35
56
|
type: :runtime
|
36
57
|
version_requirements: *id002
|
@@ -42,12 +63,38 @@ dependencies:
|
|
42
63
|
requirements:
|
43
64
|
- - ~>
|
44
65
|
- !ruby/object:Gem::Version
|
66
|
+
hash: 15424103
|
67
|
+
segments:
|
68
|
+
- 3
|
69
|
+
- 1
|
70
|
+
- 0
|
71
|
+
- rc
|
72
|
+
- 1
|
45
73
|
version: 3.1.0.rc1
|
46
74
|
type: :runtime
|
47
75
|
version_requirements: *id003
|
48
|
-
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: sprockets
|
78
|
+
prerelease: false
|
79
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 62196465
|
85
|
+
segments:
|
86
|
+
- 2
|
87
|
+
- 0
|
88
|
+
- 0
|
89
|
+
- beta
|
90
|
+
- 9
|
91
|
+
version: 2.0.0.beta.9
|
92
|
+
type: :runtime
|
93
|
+
version_requirements: *id004
|
94
|
+
description: Sass adapter for the Rails asset pipeline.
|
49
95
|
email:
|
50
96
|
- wycats@gmail.com
|
97
|
+
- chris@eppsteins.net
|
51
98
|
executables: []
|
52
99
|
|
53
100
|
extensions: []
|
@@ -57,6 +104,7 @@ extra_rdoc_files: []
|
|
57
104
|
files:
|
58
105
|
- .gitignore
|
59
106
|
- Gemfile
|
107
|
+
- README.markdown
|
60
108
|
- Rakefile
|
61
109
|
- lib/rails/generators/sass/assets/assets_generator.rb
|
62
110
|
- lib/rails/generators/sass/assets/templates/stylesheet.css.sass
|
@@ -66,49 +114,112 @@ files:
|
|
66
114
|
- lib/rails/generators/scss/assets/templates/stylesheet.css.scss
|
67
115
|
- lib/rails/generators/scss/scaffold/scaffold_generator.rb
|
68
116
|
- lib/sass-rails.rb
|
69
|
-
- lib/sass
|
117
|
+
- lib/sass/rails.rb
|
118
|
+
- lib/sass/rails/compressor.rb
|
119
|
+
- lib/sass/rails/importer.rb
|
120
|
+
- lib/sass/rails/monkey_patches.rb
|
121
|
+
- lib/sass/rails/railtie.rb
|
122
|
+
- lib/sass/rails/template_handlers.rb
|
123
|
+
- lib/sass/rails/version.rb
|
70
124
|
- sass-rails.gemspec
|
71
|
-
- test/
|
72
|
-
- test/
|
73
|
-
- test/
|
74
|
-
- test/
|
75
|
-
- test/
|
76
|
-
- test/
|
77
|
-
- test/
|
78
|
-
- test/
|
79
|
-
- test/
|
80
|
-
- test/
|
81
|
-
- test/
|
82
|
-
- test/
|
83
|
-
- test/
|
84
|
-
- test/
|
85
|
-
- test/
|
86
|
-
- test/
|
87
|
-
- test/
|
88
|
-
- test/
|
89
|
-
- test/
|
90
|
-
- test/
|
91
|
-
- test/
|
92
|
-
- test/
|
93
|
-
- test/
|
94
|
-
- test/
|
95
|
-
- test/
|
96
|
-
- test/
|
97
|
-
- test/
|
98
|
-
- test/
|
99
|
-
- test/
|
100
|
-
- test/
|
101
|
-
- test/
|
102
|
-
- test/
|
103
|
-
- test/
|
104
|
-
- test/
|
105
|
-
- test/
|
106
|
-
- test/
|
107
|
-
- test/
|
125
|
+
- test/fixtures/sass_project/.gitignore
|
126
|
+
- test/fixtures/sass_project/Gemfile
|
127
|
+
- test/fixtures/sass_project/README
|
128
|
+
- test/fixtures/sass_project/Rakefile
|
129
|
+
- test/fixtures/sass_project/app/assets/images/rails.png
|
130
|
+
- test/fixtures/sass_project/app/assets/javascripts/application.js
|
131
|
+
- test/fixtures/sass_project/app/assets/stylesheets/application.css
|
132
|
+
- test/fixtures/sass_project/app/controllers/application_controller.rb
|
133
|
+
- test/fixtures/sass_project/app/helpers/application_helper.rb
|
134
|
+
- test/fixtures/sass_project/app/mailers/.gitkeep
|
135
|
+
- test/fixtures/sass_project/app/models/.gitkeep
|
136
|
+
- test/fixtures/sass_project/app/views/layouts/application.html.erb
|
137
|
+
- test/fixtures/sass_project/config.ru
|
138
|
+
- test/fixtures/sass_project/config/application.rb
|
139
|
+
- test/fixtures/sass_project/config/boot.rb
|
140
|
+
- test/fixtures/sass_project/config/database.yml
|
141
|
+
- test/fixtures/sass_project/config/environment.rb
|
142
|
+
- test/fixtures/sass_project/config/environments/development.rb
|
143
|
+
- test/fixtures/sass_project/config/environments/production.rb
|
144
|
+
- test/fixtures/sass_project/config/environments/test.rb
|
145
|
+
- test/fixtures/sass_project/config/initializers/backtrace_silencers.rb
|
146
|
+
- test/fixtures/sass_project/config/initializers/inflections.rb
|
147
|
+
- test/fixtures/sass_project/config/initializers/mime_types.rb
|
148
|
+
- test/fixtures/sass_project/config/initializers/secret_token.rb
|
149
|
+
- test/fixtures/sass_project/config/initializers/session_store.rb
|
150
|
+
- test/fixtures/sass_project/config/initializers/wrap_parameters.rb
|
151
|
+
- test/fixtures/sass_project/config/locales/en.yml
|
152
|
+
- test/fixtures/sass_project/config/routes.rb
|
153
|
+
- test/fixtures/sass_project/db/seeds.rb
|
154
|
+
- test/fixtures/sass_project/doc/README_FOR_APP
|
155
|
+
- test/fixtures/sass_project/lib/tasks/.gitkeep
|
156
|
+
- test/fixtures/sass_project/log/.gitkeep
|
157
|
+
- test/fixtures/sass_project/public/404.html
|
158
|
+
- test/fixtures/sass_project/public/422.html
|
159
|
+
- test/fixtures/sass_project/public/500.html
|
160
|
+
- test/fixtures/sass_project/public/favicon.ico
|
161
|
+
- test/fixtures/sass_project/public/index.html
|
162
|
+
- test/fixtures/sass_project/public/robots.txt
|
163
|
+
- test/fixtures/sass_project/script/rails
|
164
|
+
- test/fixtures/sass_project/vendor/assets/stylesheets/.gitkeep
|
165
|
+
- test/fixtures/sass_project/vendor/plugins/.gitkeep
|
166
|
+
- test/fixtures/scss_project/.gitignore
|
167
|
+
- test/fixtures/scss_project/Gemfile
|
168
|
+
- test/fixtures/scss_project/README
|
169
|
+
- test/fixtures/scss_project/Rakefile
|
170
|
+
- test/fixtures/scss_project/app/assets/images/rails.png
|
171
|
+
- test/fixtures/scss_project/app/assets/javascripts/application.js
|
172
|
+
- test/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.css.scss
|
173
|
+
- test/fixtures/scss_project/app/assets/stylesheets/application.css.scss
|
174
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.css.scss
|
175
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss
|
176
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.css.sass
|
177
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.css.scss
|
178
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass
|
179
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss
|
180
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss
|
181
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css
|
182
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css
|
183
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.css.scss
|
184
|
+
- test/fixtures/scss_project/app/controllers/application_controller.rb
|
185
|
+
- test/fixtures/scss_project/app/helpers/application_helper.rb
|
186
|
+
- test/fixtures/scss_project/app/mailers/.gitkeep
|
187
|
+
- test/fixtures/scss_project/app/models/.gitkeep
|
188
|
+
- test/fixtures/scss_project/app/views/layouts/application.html.erb
|
189
|
+
- test/fixtures/scss_project/config.ru
|
190
|
+
- test/fixtures/scss_project/config/application.rb
|
191
|
+
- test/fixtures/scss_project/config/boot.rb
|
192
|
+
- test/fixtures/scss_project/config/database.yml
|
193
|
+
- test/fixtures/scss_project/config/environment.rb
|
194
|
+
- test/fixtures/scss_project/config/environments/development.rb
|
195
|
+
- test/fixtures/scss_project/config/environments/production.rb
|
196
|
+
- test/fixtures/scss_project/config/environments/test.rb
|
197
|
+
- test/fixtures/scss_project/config/initializers/backtrace_silencers.rb
|
198
|
+
- test/fixtures/scss_project/config/initializers/inflections.rb
|
199
|
+
- test/fixtures/scss_project/config/initializers/mime_types.rb
|
200
|
+
- test/fixtures/scss_project/config/initializers/secret_token.rb
|
201
|
+
- test/fixtures/scss_project/config/initializers/session_store.rb
|
202
|
+
- test/fixtures/scss_project/config/initializers/wrap_parameters.rb
|
203
|
+
- test/fixtures/scss_project/config/locales/en.yml
|
204
|
+
- test/fixtures/scss_project/config/routes.rb
|
205
|
+
- test/fixtures/scss_project/db/seeds.rb
|
206
|
+
- test/fixtures/scss_project/doc/README_FOR_APP
|
207
|
+
- test/fixtures/scss_project/lib/tasks/.gitkeep
|
208
|
+
- test/fixtures/scss_project/log/.gitkeep
|
209
|
+
- test/fixtures/scss_project/public/404.html
|
210
|
+
- test/fixtures/scss_project/public/422.html
|
211
|
+
- test/fixtures/scss_project/public/500.html
|
212
|
+
- test/fixtures/scss_project/public/favicon.ico
|
213
|
+
- test/fixtures/scss_project/public/index.html
|
214
|
+
- test/fixtures/scss_project/public/robots.txt
|
215
|
+
- test/fixtures/scss_project/script/rails
|
216
|
+
- test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep
|
217
|
+
- test/fixtures/scss_project/vendor/plugins/.gitkeep
|
108
218
|
- test/sass_rails_test.rb
|
109
|
-
- test/support/
|
219
|
+
- test/support/sass_rails_test_case.rb
|
110
220
|
- test/test_helper.rb
|
111
|
-
|
221
|
+
has_rdoc: true
|
222
|
+
homepage: ""
|
112
223
|
licenses: []
|
113
224
|
|
114
225
|
post_install_message:
|
@@ -121,58 +232,122 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
232
|
requirements:
|
122
233
|
- - ">="
|
123
234
|
- !ruby/object:Gem::Version
|
235
|
+
hash: 3
|
236
|
+
segments:
|
237
|
+
- 0
|
124
238
|
version: "0"
|
125
239
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
240
|
none: false
|
127
241
|
requirements:
|
128
242
|
- - ">"
|
129
243
|
- !ruby/object:Gem::Version
|
244
|
+
hash: 25
|
245
|
+
segments:
|
246
|
+
- 1
|
247
|
+
- 3
|
248
|
+
- 1
|
130
249
|
version: 1.3.1
|
131
250
|
requirements: []
|
132
251
|
|
133
252
|
rubyforge_project: sass-rails
|
134
|
-
rubygems_version: 1.
|
253
|
+
rubygems_version: 1.6.2
|
135
254
|
signing_key:
|
136
255
|
specification_version: 3
|
137
|
-
summary:
|
256
|
+
summary: Sass adapter for the Rails asset pipeline.
|
138
257
|
test_files:
|
139
|
-
- test/
|
140
|
-
- test/
|
141
|
-
- test/
|
142
|
-
- test/
|
143
|
-
- test/
|
144
|
-
- test/
|
145
|
-
- test/
|
146
|
-
- test/
|
147
|
-
- test/
|
148
|
-
- test/
|
149
|
-
- test/
|
150
|
-
- test/
|
151
|
-
- test/
|
152
|
-
- test/
|
153
|
-
- test/
|
154
|
-
- test/
|
155
|
-
- test/
|
156
|
-
- test/
|
157
|
-
- test/
|
158
|
-
- test/
|
159
|
-
- test/
|
160
|
-
- test/
|
161
|
-
- test/
|
162
|
-
- test/
|
163
|
-
- test/
|
164
|
-
- test/
|
165
|
-
- test/
|
166
|
-
- test/
|
167
|
-
- test/
|
168
|
-
- test/
|
169
|
-
- test/
|
170
|
-
- test/
|
171
|
-
- test/
|
172
|
-
- test/
|
173
|
-
- test/
|
174
|
-
- test/
|
175
|
-
- test/
|
258
|
+
- test/fixtures/sass_project/.gitignore
|
259
|
+
- test/fixtures/sass_project/Gemfile
|
260
|
+
- test/fixtures/sass_project/README
|
261
|
+
- test/fixtures/sass_project/Rakefile
|
262
|
+
- test/fixtures/sass_project/app/assets/images/rails.png
|
263
|
+
- test/fixtures/sass_project/app/assets/javascripts/application.js
|
264
|
+
- test/fixtures/sass_project/app/assets/stylesheets/application.css
|
265
|
+
- test/fixtures/sass_project/app/controllers/application_controller.rb
|
266
|
+
- test/fixtures/sass_project/app/helpers/application_helper.rb
|
267
|
+
- test/fixtures/sass_project/app/mailers/.gitkeep
|
268
|
+
- test/fixtures/sass_project/app/models/.gitkeep
|
269
|
+
- test/fixtures/sass_project/app/views/layouts/application.html.erb
|
270
|
+
- test/fixtures/sass_project/config.ru
|
271
|
+
- test/fixtures/sass_project/config/application.rb
|
272
|
+
- test/fixtures/sass_project/config/boot.rb
|
273
|
+
- test/fixtures/sass_project/config/database.yml
|
274
|
+
- test/fixtures/sass_project/config/environment.rb
|
275
|
+
- test/fixtures/sass_project/config/environments/development.rb
|
276
|
+
- test/fixtures/sass_project/config/environments/production.rb
|
277
|
+
- test/fixtures/sass_project/config/environments/test.rb
|
278
|
+
- test/fixtures/sass_project/config/initializers/backtrace_silencers.rb
|
279
|
+
- test/fixtures/sass_project/config/initializers/inflections.rb
|
280
|
+
- test/fixtures/sass_project/config/initializers/mime_types.rb
|
281
|
+
- test/fixtures/sass_project/config/initializers/secret_token.rb
|
282
|
+
- test/fixtures/sass_project/config/initializers/session_store.rb
|
283
|
+
- test/fixtures/sass_project/config/initializers/wrap_parameters.rb
|
284
|
+
- test/fixtures/sass_project/config/locales/en.yml
|
285
|
+
- test/fixtures/sass_project/config/routes.rb
|
286
|
+
- test/fixtures/sass_project/db/seeds.rb
|
287
|
+
- test/fixtures/sass_project/doc/README_FOR_APP
|
288
|
+
- test/fixtures/sass_project/lib/tasks/.gitkeep
|
289
|
+
- test/fixtures/sass_project/log/.gitkeep
|
290
|
+
- test/fixtures/sass_project/public/404.html
|
291
|
+
- test/fixtures/sass_project/public/422.html
|
292
|
+
- test/fixtures/sass_project/public/500.html
|
293
|
+
- test/fixtures/sass_project/public/favicon.ico
|
294
|
+
- test/fixtures/sass_project/public/index.html
|
295
|
+
- test/fixtures/sass_project/public/robots.txt
|
296
|
+
- test/fixtures/sass_project/script/rails
|
297
|
+
- test/fixtures/sass_project/vendor/assets/stylesheets/.gitkeep
|
298
|
+
- test/fixtures/sass_project/vendor/plugins/.gitkeep
|
299
|
+
- test/fixtures/scss_project/.gitignore
|
300
|
+
- test/fixtures/scss_project/Gemfile
|
301
|
+
- test/fixtures/scss_project/README
|
302
|
+
- test/fixtures/scss_project/Rakefile
|
303
|
+
- test/fixtures/scss_project/app/assets/images/rails.png
|
304
|
+
- test/fixtures/scss_project/app/assets/javascripts/application.js
|
305
|
+
- test/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.css.scss
|
306
|
+
- test/fixtures/scss_project/app/assets/stylesheets/application.css.scss
|
307
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.css.scss
|
308
|
+
- test/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss
|
309
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.css.sass
|
310
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.css.scss
|
311
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass
|
312
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss
|
313
|
+
- test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss
|
314
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css
|
315
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css
|
316
|
+
- test/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.css.scss
|
317
|
+
- test/fixtures/scss_project/app/controllers/application_controller.rb
|
318
|
+
- test/fixtures/scss_project/app/helpers/application_helper.rb
|
319
|
+
- test/fixtures/scss_project/app/mailers/.gitkeep
|
320
|
+
- test/fixtures/scss_project/app/models/.gitkeep
|
321
|
+
- test/fixtures/scss_project/app/views/layouts/application.html.erb
|
322
|
+
- test/fixtures/scss_project/config.ru
|
323
|
+
- test/fixtures/scss_project/config/application.rb
|
324
|
+
- test/fixtures/scss_project/config/boot.rb
|
325
|
+
- test/fixtures/scss_project/config/database.yml
|
326
|
+
- test/fixtures/scss_project/config/environment.rb
|
327
|
+
- test/fixtures/scss_project/config/environments/development.rb
|
328
|
+
- test/fixtures/scss_project/config/environments/production.rb
|
329
|
+
- test/fixtures/scss_project/config/environments/test.rb
|
330
|
+
- test/fixtures/scss_project/config/initializers/backtrace_silencers.rb
|
331
|
+
- test/fixtures/scss_project/config/initializers/inflections.rb
|
332
|
+
- test/fixtures/scss_project/config/initializers/mime_types.rb
|
333
|
+
- test/fixtures/scss_project/config/initializers/secret_token.rb
|
334
|
+
- test/fixtures/scss_project/config/initializers/session_store.rb
|
335
|
+
- test/fixtures/scss_project/config/initializers/wrap_parameters.rb
|
336
|
+
- test/fixtures/scss_project/config/locales/en.yml
|
337
|
+
- test/fixtures/scss_project/config/routes.rb
|
338
|
+
- test/fixtures/scss_project/db/seeds.rb
|
339
|
+
- test/fixtures/scss_project/doc/README_FOR_APP
|
340
|
+
- test/fixtures/scss_project/lib/tasks/.gitkeep
|
341
|
+
- test/fixtures/scss_project/log/.gitkeep
|
342
|
+
- test/fixtures/scss_project/public/404.html
|
343
|
+
- test/fixtures/scss_project/public/422.html
|
344
|
+
- test/fixtures/scss_project/public/500.html
|
345
|
+
- test/fixtures/scss_project/public/favicon.ico
|
346
|
+
- test/fixtures/scss_project/public/index.html
|
347
|
+
- test/fixtures/scss_project/public/robots.txt
|
348
|
+
- test/fixtures/scss_project/script/rails
|
349
|
+
- test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep
|
350
|
+
- test/fixtures/scss_project/vendor/plugins/.gitkeep
|
176
351
|
- test/sass_rails_test.rb
|
177
|
-
- test/support/
|
352
|
+
- test/support/sass_rails_test_case.rb
|
178
353
|
- test/test_helper.rb
|