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.
Files changed (125) hide show
  1. data/Gemfile +3 -4
  2. data/README.markdown +52 -0
  3. data/lib/rails/generators/sass/assets/assets_generator.rb +1 -1
  4. data/lib/rails/generators/sass/assets/templates/stylesheet.css.sass +4 -1
  5. data/lib/rails/generators/sass_scaffold.rb +2 -1
  6. data/lib/rails/generators/scss/assets/assets_generator.rb +1 -1
  7. data/lib/rails/generators/scss/assets/templates/stylesheet.css.scss +5 -1
  8. data/lib/sass-rails.rb +1 -31
  9. data/lib/sass/rails.rb +11 -0
  10. data/lib/sass/rails/compressor.rb +15 -0
  11. data/lib/sass/rails/importer.rb +128 -0
  12. data/lib/sass/rails/monkey_patches.rb +20 -0
  13. data/lib/sass/rails/railtie.rb +43 -0
  14. data/lib/sass/rails/template_handlers.rb +61 -0
  15. data/lib/{sass-rails → sass/rails}/version.rb +1 -1
  16. data/sass-rails.gemspec +8 -7
  17. data/test/fixtures/sass_project/.gitignore +5 -0
  18. data/test/fixtures/sass_project/Gemfile +7 -0
  19. data/test/fixtures/sass_project/README +261 -0
  20. data/test/{dummy → fixtures/sass_project}/Rakefile +2 -2
  21. data/test/fixtures/sass_project/app/assets/images/rails.png +0 -0
  22. data/test/fixtures/sass_project/app/assets/javascripts/application.js +9 -0
  23. data/test/fixtures/sass_project/app/assets/stylesheets/application.css +7 -0
  24. data/test/{dummy → fixtures/sass_project}/app/controllers/application_controller.rb +0 -0
  25. data/test/{dummy → fixtures/sass_project}/app/helpers/application_helper.rb +0 -0
  26. data/test/{dummy/public/stylesheets → fixtures/sass_project/app/mailers}/.gitkeep +0 -0
  27. data/test/{dummy/log/development.log → fixtures/sass_project/app/models/.gitkeep} +0 -0
  28. data/test/fixtures/sass_project/app/views/layouts/application.html.erb +14 -0
  29. data/test/{dummy → fixtures/sass_project}/config.ru +1 -1
  30. data/test/fixtures/sass_project/config/application.rb +52 -0
  31. data/test/fixtures/sass_project/config/boot.rb +6 -0
  32. data/test/{dummy → fixtures/sass_project}/config/database.yml +3 -0
  33. data/test/{dummy → fixtures/sass_project}/config/environment.rb +1 -1
  34. data/test/{dummy → fixtures/sass_project}/config/environments/development.rb +5 -4
  35. data/test/{dummy → fixtures/sass_project}/config/environments/production.rb +18 -13
  36. data/test/{dummy → fixtures/sass_project}/config/environments/test.rb +6 -2
  37. data/test/{dummy → fixtures/sass_project}/config/initializers/backtrace_silencers.rb +0 -0
  38. data/test/{dummy → fixtures/sass_project}/config/initializers/inflections.rb +0 -0
  39. data/test/{dummy → fixtures/sass_project}/config/initializers/mime_types.rb +0 -0
  40. data/test/{dummy → fixtures/sass_project}/config/initializers/secret_token.rb +1 -1
  41. data/test/{dummy → fixtures/sass_project}/config/initializers/session_store.rb +2 -2
  42. data/test/fixtures/sass_project/config/initializers/wrap_parameters.rb +12 -0
  43. data/test/{dummy → fixtures/sass_project}/config/locales/en.yml +1 -1
  44. data/test/{dummy → fixtures/sass_project}/config/routes.rb +2 -2
  45. data/test/fixtures/sass_project/db/seeds.rb +7 -0
  46. data/test/fixtures/sass_project/doc/README_FOR_APP +2 -0
  47. data/test/{dummy/log/production.log → fixtures/sass_project/lib/tasks/.gitkeep} +0 -0
  48. data/test/{dummy/log/server.log → fixtures/sass_project/log/.gitkeep} +0 -0
  49. data/test/{dummy → fixtures/sass_project}/public/404.html +0 -0
  50. data/test/{dummy → fixtures/sass_project}/public/422.html +0 -0
  51. data/test/{dummy → fixtures/sass_project}/public/500.html +0 -0
  52. data/test/{dummy → fixtures/sass_project}/public/favicon.ico +0 -0
  53. data/test/fixtures/sass_project/public/index.html +241 -0
  54. data/test/fixtures/sass_project/public/robots.txt +5 -0
  55. data/test/{dummy → fixtures/sass_project}/script/rails +0 -0
  56. data/test/fixtures/sass_project/vendor/assets/stylesheets/.gitkeep +0 -0
  57. data/test/fixtures/sass_project/vendor/plugins/.gitkeep +0 -0
  58. data/test/fixtures/scss_project/.gitignore +5 -0
  59. data/test/fixtures/scss_project/Gemfile +7 -0
  60. data/test/fixtures/scss_project/README +261 -0
  61. data/test/fixtures/scss_project/Rakefile +7 -0
  62. data/test/fixtures/scss_project/app/assets/images/rails.png +0 -0
  63. data/test/fixtures/scss_project/app/assets/javascripts/application.js +9 -0
  64. data/test/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.css.scss +3 -0
  65. data/test/fixtures/scss_project/app/assets/stylesheets/application.css.scss +10 -0
  66. data/test/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.css.scss +3 -0
  67. data/test/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.css.scss +3 -0
  68. data/test/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.css.sass +5 -0
  69. data/test/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.css.scss +9 -0
  70. data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.css.sass +2 -0
  71. data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.css.scss +3 -0
  72. data/test/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.css.scss +3 -0
  73. data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css +3 -0
  74. data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css +3 -0
  75. data/test/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.css.scss +1 -0
  76. data/test/fixtures/scss_project/app/controllers/application_controller.rb +3 -0
  77. data/test/fixtures/scss_project/app/helpers/application_helper.rb +2 -0
  78. data/test/fixtures/scss_project/app/mailers/.gitkeep +0 -0
  79. data/test/fixtures/scss_project/app/models/.gitkeep +0 -0
  80. data/test/fixtures/scss_project/app/views/layouts/application.html.erb +14 -0
  81. data/test/fixtures/scss_project/config.ru +4 -0
  82. data/test/{dummy → fixtures/scss_project}/config/application.rb +13 -9
  83. data/test/fixtures/scss_project/config/boot.rb +6 -0
  84. data/test/fixtures/scss_project/config/database.yml +25 -0
  85. data/test/fixtures/scss_project/config/environment.rb +5 -0
  86. data/test/fixtures/scss_project/config/environments/development.rb +27 -0
  87. data/test/fixtures/scss_project/config/environments/production.rb +54 -0
  88. data/test/fixtures/scss_project/config/environments/test.rb +39 -0
  89. data/test/fixtures/scss_project/config/initializers/backtrace_silencers.rb +7 -0
  90. data/test/fixtures/scss_project/config/initializers/inflections.rb +10 -0
  91. data/test/fixtures/scss_project/config/initializers/mime_types.rb +5 -0
  92. data/test/fixtures/scss_project/config/initializers/secret_token.rb +7 -0
  93. data/test/fixtures/scss_project/config/initializers/session_store.rb +8 -0
  94. data/test/fixtures/scss_project/config/initializers/wrap_parameters.rb +12 -0
  95. data/test/fixtures/scss_project/config/locales/en.yml +5 -0
  96. data/test/fixtures/scss_project/config/routes.rb +58 -0
  97. data/test/fixtures/scss_project/db/seeds.rb +7 -0
  98. data/test/fixtures/scss_project/doc/README_FOR_APP +2 -0
  99. data/test/fixtures/scss_project/lib/tasks/.gitkeep +0 -0
  100. data/test/fixtures/scss_project/log/.gitkeep +0 -0
  101. data/test/fixtures/scss_project/public/404.html +26 -0
  102. data/test/fixtures/scss_project/public/422.html +26 -0
  103. data/test/fixtures/scss_project/public/500.html +26 -0
  104. data/test/fixtures/scss_project/public/favicon.ico +0 -0
  105. data/test/fixtures/scss_project/public/index.html +241 -0
  106. data/test/fixtures/scss_project/public/robots.txt +5 -0
  107. data/test/fixtures/scss_project/script/rails +6 -0
  108. data/test/fixtures/scss_project/vendor/assets/stylesheets/.gitkeep +0 -0
  109. data/test/fixtures/scss_project/vendor/plugins/.gitkeep +0 -0
  110. data/test/sass_rails_test.rb +46 -3
  111. data/test/support/sass_rails_test_case.rb +147 -0
  112. data/test/test_helper.rb +15 -11
  113. metadata +260 -85
  114. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  115. data/test/dummy/config/boot.rb +0 -10
  116. data/test/dummy/db/test.sqlite3 +0 -0
  117. data/test/dummy/log/test.log +0 -4
  118. data/test/dummy/public/javascripts/application.js +0 -2
  119. data/test/dummy/public/javascripts/controls.js +0 -965
  120. data/test/dummy/public/javascripts/dragdrop.js +0 -974
  121. data/test/dummy/public/javascripts/effects.js +0 -1123
  122. data/test/dummy/public/javascripts/prototype.js +0 -6001
  123. data/test/dummy/public/javascripts/rails.js +0 -191
  124. data/test/integration/navigation_test.rb +0 -7
  125. data/test/support/integration_case.rb +0 -5
@@ -1,22 +1,26 @@
1
1
  # Configure Rails Envinronment
2
2
  ENV["RAILS_ENV"] = "test"
3
3
 
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
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
- # Configure capybara for integration testing
14
- require "capybara/rails"
15
- Capybara.default_driver = :rack_test
16
- Capybara.default_selector = :css
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
- version: 3.1.0.rc.1
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-05-24 00:00:00 Z
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
- version: 3.1.1
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
- description: Provides Ruby on Rails generators and asset support for Sass and SCSS
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-rails/version.rb
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/dummy/Rakefile
72
- - test/dummy/app/controllers/application_controller.rb
73
- - test/dummy/app/helpers/application_helper.rb
74
- - test/dummy/app/views/layouts/application.html.erb
75
- - test/dummy/config.ru
76
- - test/dummy/config/application.rb
77
- - test/dummy/config/boot.rb
78
- - test/dummy/config/database.yml
79
- - test/dummy/config/environment.rb
80
- - test/dummy/config/environments/development.rb
81
- - test/dummy/config/environments/production.rb
82
- - test/dummy/config/environments/test.rb
83
- - test/dummy/config/initializers/backtrace_silencers.rb
84
- - test/dummy/config/initializers/inflections.rb
85
- - test/dummy/config/initializers/mime_types.rb
86
- - test/dummy/config/initializers/secret_token.rb
87
- - test/dummy/config/initializers/session_store.rb
88
- - test/dummy/config/locales/en.yml
89
- - test/dummy/config/routes.rb
90
- - test/dummy/db/test.sqlite3
91
- - test/dummy/log/development.log
92
- - test/dummy/log/production.log
93
- - test/dummy/log/server.log
94
- - test/dummy/log/test.log
95
- - test/dummy/public/404.html
96
- - test/dummy/public/422.html
97
- - test/dummy/public/500.html
98
- - test/dummy/public/favicon.ico
99
- - test/dummy/public/javascripts/application.js
100
- - test/dummy/public/javascripts/controls.js
101
- - test/dummy/public/javascripts/dragdrop.js
102
- - test/dummy/public/javascripts/effects.js
103
- - test/dummy/public/javascripts/prototype.js
104
- - test/dummy/public/javascripts/rails.js
105
- - test/dummy/public/stylesheets/.gitkeep
106
- - test/dummy/script/rails
107
- - test/integration/navigation_test.rb
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/integration_case.rb
219
+ - test/support/sass_rails_test_case.rb
110
220
  - test/test_helper.rb
111
- homepage: http://www.rubyonrails.org
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.8.3
253
+ rubygems_version: 1.6.2
135
254
  signing_key:
136
255
  specification_version: 3
137
- summary: Ruby on Rails stylesheet engine for Sass
256
+ summary: Sass adapter for the Rails asset pipeline.
138
257
  test_files:
139
- - test/dummy/Rakefile
140
- - test/dummy/app/controllers/application_controller.rb
141
- - test/dummy/app/helpers/application_helper.rb
142
- - test/dummy/app/views/layouts/application.html.erb
143
- - test/dummy/config.ru
144
- - test/dummy/config/application.rb
145
- - test/dummy/config/boot.rb
146
- - test/dummy/config/database.yml
147
- - test/dummy/config/environment.rb
148
- - test/dummy/config/environments/development.rb
149
- - test/dummy/config/environments/production.rb
150
- - test/dummy/config/environments/test.rb
151
- - test/dummy/config/initializers/backtrace_silencers.rb
152
- - test/dummy/config/initializers/inflections.rb
153
- - test/dummy/config/initializers/mime_types.rb
154
- - test/dummy/config/initializers/secret_token.rb
155
- - test/dummy/config/initializers/session_store.rb
156
- - test/dummy/config/locales/en.yml
157
- - test/dummy/config/routes.rb
158
- - test/dummy/db/test.sqlite3
159
- - test/dummy/log/development.log
160
- - test/dummy/log/production.log
161
- - test/dummy/log/server.log
162
- - test/dummy/log/test.log
163
- - test/dummy/public/404.html
164
- - test/dummy/public/422.html
165
- - test/dummy/public/500.html
166
- - test/dummy/public/favicon.ico
167
- - test/dummy/public/javascripts/application.js
168
- - test/dummy/public/javascripts/controls.js
169
- - test/dummy/public/javascripts/dragdrop.js
170
- - test/dummy/public/javascripts/effects.js
171
- - test/dummy/public/javascripts/prototype.js
172
- - test/dummy/public/javascripts/rails.js
173
- - test/dummy/public/stylesheets/.gitkeep
174
- - test/dummy/script/rails
175
- - test/integration/navigation_test.rb
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/integration_case.rb
352
+ - test/support/sass_rails_test_case.rb
178
353
  - test/test_helper.rb