sassc-rails 1.0.0 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +17 -6
  3. data/CODE_OF_CONDUCT.md +10 -0
  4. data/README.md +36 -12
  5. data/Rakefile +5 -4
  6. data/gemfiles/{rails_4_0.gemfile → rails_5_2.gemfile} +1 -1
  7. data/gemfiles/{sprockets_2_12.gemfile → sprockets-rails_2_3.gemfile} +1 -1
  8. data/gemfiles/{with_sass_rails.gemfile → sprockets-rails_3_0.gemfile} +1 -1
  9. data/gemfiles/sprockets_3_0.gemfile +1 -1
  10. data/gemfiles/{rails_4_1.gemfile → sprockets_4_0.gemfile} +1 -1
  11. data/lib/rails/generators/sass/assets/assets_generator.rb +13 -0
  12. data/lib/rails/generators/sass/assets/templates/stylesheet.sass +3 -0
  13. data/lib/rails/generators/sass/scaffold/scaffold_generator.rb +9 -0
  14. data/lib/rails/generators/sass_scaffold.rb +15 -0
  15. data/lib/rails/generators/scss/assets/assets_generator.rb +13 -0
  16. data/lib/rails/generators/scss/assets/templates/stylesheet.scss +3 -0
  17. data/lib/rails/generators/scss/scaffold/scaffold_generator.rb +10 -0
  18. data/lib/sassc/rails/compressor.rb +13 -0
  19. data/lib/sassc/rails/functions.rb +3 -1
  20. data/lib/sassc/rails/importer.rb +11 -6
  21. data/lib/sassc/rails/railtie.rb +23 -8
  22. data/lib/sassc/rails/template.rb +76 -60
  23. data/lib/sassc/rails/version.rb +3 -1
  24. data/lib/sassc/rails.rb +2 -0
  25. data/lib/sassc-rails.rb +1 -5
  26. data/sassc-rails.gemspec +7 -10
  27. data/test/dummy/app/assets/config/manifest.js +3 -0
  28. data/test/dummy/app/assets/stylesheets/glob_multiple_extensions_test.scss +1 -0
  29. data/{test_old/fixtures/scss_project/app/assets/stylesheets/css_erb_handler.css.erb → test/dummy/app/assets/stylesheets/globbed_multiple_extensions/glob.scss.erb} +1 -1
  30. data/test/dummy/app/assets/stylesheets/imports_test.scss +1 -0
  31. data/test/dummy/app/assets/stylesheets/in_load_paths/partial_in_load_paths.scss +3 -0
  32. data/test/sassc_rails_test.rb +65 -39
  33. data/test/test_helper.rb +3 -1
  34. metadata +49 -245
  35. data/test_old/fixtures/alternate_config_project/.gitignore +0 -5
  36. data/test_old/fixtures/alternate_config_project/Gemfile +0 -7
  37. data/test_old/fixtures/alternate_config_project/README +0 -261
  38. data/test_old/fixtures/alternate_config_project/Rakefile +0 -7
  39. data/test_old/fixtures/alternate_config_project/app/assets/images/1x1.png +0 -0
  40. data/test_old/fixtures/alternate_config_project/app/assets/images/rails.png +0 -0
  41. data/test_old/fixtures/alternate_config_project/app/assets/javascripts/application.js +0 -9
  42. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/_top_level_partial.scss +0 -3
  43. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/application.scss +0 -32
  44. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/css_application.css +0 -11
  45. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/globbed/globbed.scss +0 -3
  46. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/globbed/nested/nested_glob.scss +0 -3
  47. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_sass_import.sass +0 -5
  48. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_scss_import.scss +0 -9
  49. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_without_css_ext.scss +0 -3
  50. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_sass.sass +0 -2
  51. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_scss.scss +0 -3
  52. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.scss +0 -3
  53. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/another_plain.css +0 -3
  54. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/plain.css +0 -3
  55. data/test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/second_level.scss +0 -1
  56. data/test_old/fixtures/alternate_config_project/app/controllers/application_controller.rb +0 -3
  57. data/test_old/fixtures/alternate_config_project/app/helpers/application_helper.rb +0 -2
  58. data/test_old/fixtures/alternate_config_project/app/mailers/.gitkeep +0 -0
  59. data/test_old/fixtures/alternate_config_project/app/models/.gitkeep +0 -0
  60. data/test_old/fixtures/alternate_config_project/app/views/layouts/application.html.erb +0 -14
  61. data/test_old/fixtures/alternate_config_project/config/application.rb +0 -49
  62. data/test_old/fixtures/alternate_config_project/config/boot.rb +0 -6
  63. data/test_old/fixtures/alternate_config_project/config/database.yml +0 -25
  64. data/test_old/fixtures/alternate_config_project/config/environment.rb +0 -5
  65. data/test_old/fixtures/alternate_config_project/config/environments/development.rb +0 -27
  66. data/test_old/fixtures/alternate_config_project/config/environments/production.rb +0 -60
  67. data/test_old/fixtures/alternate_config_project/config/environments/test.rb +0 -42
  68. data/test_old/fixtures/alternate_config_project/config/initializers/backtrace_silencers.rb +0 -7
  69. data/test_old/fixtures/alternate_config_project/config/initializers/inflections.rb +0 -10
  70. data/test_old/fixtures/alternate_config_project/config/initializers/mime_types.rb +0 -5
  71. data/test_old/fixtures/alternate_config_project/config/initializers/secret_token.rb +0 -7
  72. data/test_old/fixtures/alternate_config_project/config/initializers/session_store.rb +0 -8
  73. data/test_old/fixtures/alternate_config_project/config/initializers/wrap_parameters.rb +0 -12
  74. data/test_old/fixtures/alternate_config_project/config/locales/en.yml +0 -5
  75. data/test_old/fixtures/alternate_config_project/config/routes.rb +0 -58
  76. data/test_old/fixtures/alternate_config_project/config.ru +0 -4
  77. data/test_old/fixtures/alternate_config_project/db/seeds.rb +0 -7
  78. data/test_old/fixtures/alternate_config_project/doc/README_FOR_APP +0 -2
  79. data/test_old/fixtures/alternate_config_project/lib/tasks/.gitkeep +0 -0
  80. data/test_old/fixtures/alternate_config_project/log/.gitkeep +0 -0
  81. data/test_old/fixtures/alternate_config_project/public/404.html +0 -26
  82. data/test_old/fixtures/alternate_config_project/public/422.html +0 -26
  83. data/test_old/fixtures/alternate_config_project/public/500.html +0 -26
  84. data/test_old/fixtures/alternate_config_project/public/favicon.ico +0 -0
  85. data/test_old/fixtures/alternate_config_project/public/index.html +0 -241
  86. data/test_old/fixtures/alternate_config_project/public/robots.txt +0 -5
  87. data/test_old/fixtures/alternate_config_project/script/rails +0 -6
  88. data/test_old/fixtures/engine_project/.gitignore +0 -8
  89. data/test_old/fixtures/engine_project/Gemfile +0 -14
  90. data/test_old/fixtures/engine_project/MIT-LICENSE +0 -20
  91. data/test_old/fixtures/engine_project/README.rdoc +0 -3
  92. data/test_old/fixtures/engine_project/Rakefile +0 -34
  93. data/test_old/fixtures/engine_project/app/assets/images/engine_project/.keep +0 -0
  94. data/test_old/fixtures/engine_project/app/assets/javascripts/engine_project/application.js +0 -16
  95. data/test_old/fixtures/engine_project/app/assets/stylesheets/engine_project/application.css +0 -13
  96. data/test_old/fixtures/engine_project/app/controllers/engine_project/application_controller.rb +0 -4
  97. data/test_old/fixtures/engine_project/app/helpers/engine_project/application_helper.rb +0 -4
  98. data/test_old/fixtures/engine_project/app/views/layouts/engine_project/application.html.erb +0 -14
  99. data/test_old/fixtures/engine_project/config/routes.rb +0 -2
  100. data/test_old/fixtures/engine_project/engine_project.gemspec +0 -23
  101. data/test_old/fixtures/engine_project/lib/engine_project/engine.rb +0 -5
  102. data/test_old/fixtures/engine_project/lib/engine_project/version.rb +0 -3
  103. data/test_old/fixtures/engine_project/lib/engine_project.rb +0 -4
  104. data/test_old/fixtures/engine_project/lib/tasks/engine_project_tasks.rake +0 -4
  105. data/test_old/fixtures/engine_project/script/rails +0 -8
  106. data/test_old/fixtures/engine_project/test/dummy/README.rdoc +0 -28
  107. data/test_old/fixtures/engine_project/test/dummy/Rakefile +0 -6
  108. data/test_old/fixtures/engine_project/test/dummy/app/assets/javascripts/application.js +0 -16
  109. data/test_old/fixtures/engine_project/test/dummy/app/assets/stylesheets/application.css +0 -13
  110. data/test_old/fixtures/engine_project/test/dummy/app/controllers/application_controller.rb +0 -5
  111. data/test_old/fixtures/engine_project/test/dummy/app/controllers/concerns/.keep +0 -0
  112. data/test_old/fixtures/engine_project/test/dummy/app/helpers/application_helper.rb +0 -2
  113. data/test_old/fixtures/engine_project/test/dummy/app/mailers/.keep +0 -0
  114. data/test_old/fixtures/engine_project/test/dummy/app/models/.keep +0 -0
  115. data/test_old/fixtures/engine_project/test/dummy/app/models/concerns/.keep +0 -0
  116. data/test_old/fixtures/engine_project/test/dummy/app/views/layouts/application.html.erb +0 -14
  117. data/test_old/fixtures/engine_project/test/dummy/bin/bundle +0 -3
  118. data/test_old/fixtures/engine_project/test/dummy/bin/rails +0 -4
  119. data/test_old/fixtures/engine_project/test/dummy/bin/rake +0 -4
  120. data/test_old/fixtures/engine_project/test/dummy/config/application.rb +0 -23
  121. data/test_old/fixtures/engine_project/test/dummy/config/boot.rb +0 -9
  122. data/test_old/fixtures/engine_project/test/dummy/config/database.yml +0 -25
  123. data/test_old/fixtures/engine_project/test/dummy/config/environment.rb +0 -5
  124. data/test_old/fixtures/engine_project/test/dummy/config/environments/development.rb +0 -27
  125. data/test_old/fixtures/engine_project/test/dummy/config/environments/production.rb +0 -84
  126. data/test_old/fixtures/engine_project/test/dummy/config/environments/test.rb +0 -40
  127. data/test_old/fixtures/engine_project/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  128. data/test_old/fixtures/engine_project/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  129. data/test_old/fixtures/engine_project/test/dummy/config/initializers/inflections.rb +0 -16
  130. data/test_old/fixtures/engine_project/test/dummy/config/initializers/mime_types.rb +0 -5
  131. data/test_old/fixtures/engine_project/test/dummy/config/initializers/secret_token.rb +0 -12
  132. data/test_old/fixtures/engine_project/test/dummy/config/initializers/session_store.rb +0 -3
  133. data/test_old/fixtures/engine_project/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  134. data/test_old/fixtures/engine_project/test/dummy/config/locales/en.yml +0 -23
  135. data/test_old/fixtures/engine_project/test/dummy/config/routes.rb +0 -4
  136. data/test_old/fixtures/engine_project/test/dummy/config.ru +0 -4
  137. data/test_old/fixtures/engine_project/test/dummy/lib/assets/.keep +0 -0
  138. data/test_old/fixtures/engine_project/test/dummy/log/.keep +0 -0
  139. data/test_old/fixtures/engine_project/test/dummy/public/404.html +0 -27
  140. data/test_old/fixtures/engine_project/test/dummy/public/422.html +0 -26
  141. data/test_old/fixtures/engine_project/test/dummy/public/500.html +0 -26
  142. data/test_old/fixtures/engine_project/test/dummy/public/favicon.ico +0 -0
  143. data/test_old/fixtures/sass_project/.gitignore +0 -5
  144. data/test_old/fixtures/sass_project/Gemfile +0 -7
  145. data/test_old/fixtures/sass_project/README +0 -261
  146. data/test_old/fixtures/sass_project/Rakefile +0 -7
  147. data/test_old/fixtures/sass_project/app/assets/images/rails.png +0 -0
  148. data/test_old/fixtures/sass_project/app/assets/javascripts/application.js +0 -9
  149. data/test_old/fixtures/sass_project/app/assets/stylesheets/application.css +0 -7
  150. data/test_old/fixtures/sass_project/app/controllers/application_controller.rb +0 -3
  151. data/test_old/fixtures/sass_project/app/helpers/application_helper.rb +0 -2
  152. data/test_old/fixtures/sass_project/app/mailers/.gitkeep +0 -0
  153. data/test_old/fixtures/sass_project/app/models/.gitkeep +0 -0
  154. data/test_old/fixtures/sass_project/app/views/layouts/application.html.erb +0 -14
  155. data/test_old/fixtures/sass_project/config/application.rb +0 -52
  156. data/test_old/fixtures/sass_project/config/boot.rb +0 -6
  157. data/test_old/fixtures/sass_project/config/database.yml +0 -25
  158. data/test_old/fixtures/sass_project/config/environment.rb +0 -5
  159. data/test_old/fixtures/sass_project/config/environments/development.rb +0 -24
  160. data/test_old/fixtures/sass_project/config/environments/production.rb +0 -58
  161. data/test_old/fixtures/sass_project/config/environments/test.rb +0 -43
  162. data/test_old/fixtures/sass_project/config/initializers/backtrace_silencers.rb +0 -7
  163. data/test_old/fixtures/sass_project/config/initializers/inflections.rb +0 -10
  164. data/test_old/fixtures/sass_project/config/initializers/mime_types.rb +0 -5
  165. data/test_old/fixtures/sass_project/config/initializers/secret_token.rb +0 -7
  166. data/test_old/fixtures/sass_project/config/initializers/session_store.rb +0 -8
  167. data/test_old/fixtures/sass_project/config/initializers/wrap_parameters.rb +0 -12
  168. data/test_old/fixtures/sass_project/config/locales/en.yml +0 -5
  169. data/test_old/fixtures/sass_project/config/routes.rb +0 -58
  170. data/test_old/fixtures/sass_project/config.ru +0 -4
  171. data/test_old/fixtures/sass_project/db/seeds.rb +0 -7
  172. data/test_old/fixtures/sass_project/doc/README_FOR_APP +0 -2
  173. data/test_old/fixtures/sass_project/lib/tasks/.gitkeep +0 -0
  174. data/test_old/fixtures/sass_project/log/.gitkeep +0 -0
  175. data/test_old/fixtures/sass_project/public/404.html +0 -26
  176. data/test_old/fixtures/sass_project/public/422.html +0 -26
  177. data/test_old/fixtures/sass_project/public/500.html +0 -26
  178. data/test_old/fixtures/sass_project/public/favicon.ico +0 -0
  179. data/test_old/fixtures/sass_project/public/index.html +0 -241
  180. data/test_old/fixtures/sass_project/public/robots.txt +0 -5
  181. data/test_old/fixtures/sass_project/script/rails +0 -6
  182. data/test_old/fixtures/scss_project/.gitignore +0 -5
  183. data/test_old/fixtures/scss_project/Gemfile +0 -7
  184. data/test_old/fixtures/scss_project/README +0 -261
  185. data/test_old/fixtures/scss_project/Rakefile +0 -7
  186. data/test_old/fixtures/scss_project/app/assets/images/1x1.png +0 -0
  187. data/test_old/fixtures/scss_project/app/assets/images/rails.png +0 -0
  188. data/test_old/fixtures/scss_project/app/assets/javascripts/application.js +0 -9
  189. data/test_old/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.scss +0 -3
  190. data/test_old/fixtures/scss_project/app/assets/stylesheets/application.scss +0 -38
  191. data/test_old/fixtures/scss_project/app/assets/stylesheets/css_application.css +0 -11
  192. data/test_old/fixtures/scss_project/app/assets/stylesheets/css_sass_erb_handler.sass.erb +0 -2
  193. data/test_old/fixtures/scss_project/app/assets/stylesheets/css_scss_erb_handler.scss.erb +0 -3
  194. data/test_old/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.scss +0 -3
  195. data/test_old/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.scss +0 -3
  196. data/test_old/fixtures/scss_project/app/assets/stylesheets/import_css_application.scss +0 -5
  197. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/_css_sass_import.sass +0 -5
  198. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.sass +0 -2
  199. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.scss +0 -9
  200. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/_without_css_ext.scss +0 -3
  201. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.sass +0 -2
  202. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.scss +0 -3
  203. data/test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.scss +0 -3
  204. data/test_old/fixtures/scss_project/app/assets/stylesheets/sass_erb_handler.sass.erb +0 -2
  205. data/test_old/fixtures/scss_project/app/assets/stylesheets/scss_erb_handler.scss.erb +0 -3
  206. data/test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/_defaults.scss +0 -3
  207. data/test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css +0 -3
  208. data/test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css +0 -3
  209. data/test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.scss +0 -2
  210. data/test_old/fixtures/scss_project/app/controllers/application_controller.rb +0 -3
  211. data/test_old/fixtures/scss_project/app/helpers/application_helper.rb +0 -2
  212. data/test_old/fixtures/scss_project/app/mailers/.gitkeep +0 -0
  213. data/test_old/fixtures/scss_project/app/models/.gitkeep +0 -0
  214. data/test_old/fixtures/scss_project/app/views/layouts/application.html.erb +0 -14
  215. data/test_old/fixtures/scss_project/config/application.rb +0 -49
  216. data/test_old/fixtures/scss_project/config/boot.rb +0 -6
  217. data/test_old/fixtures/scss_project/config/database.yml +0 -25
  218. data/test_old/fixtures/scss_project/config/environment.rb +0 -5
  219. data/test_old/fixtures/scss_project/config/environments/development.rb +0 -23
  220. data/test_old/fixtures/scss_project/config/environments/production.rb +0 -57
  221. data/test_old/fixtures/scss_project/config/environments/test.rb +0 -42
  222. data/test_old/fixtures/scss_project/config/initializers/backtrace_silencers.rb +0 -7
  223. data/test_old/fixtures/scss_project/config/initializers/inflections.rb +0 -10
  224. data/test_old/fixtures/scss_project/config/initializers/mime_types.rb +0 -5
  225. data/test_old/fixtures/scss_project/config/initializers/postprocessor.rb +0 -3
  226. data/test_old/fixtures/scss_project/config/initializers/secret_token.rb +0 -7
  227. data/test_old/fixtures/scss_project/config/initializers/session_store.rb +0 -8
  228. data/test_old/fixtures/scss_project/config/initializers/wrap_parameters.rb +0 -12
  229. data/test_old/fixtures/scss_project/config/locales/en.yml +0 -5
  230. data/test_old/fixtures/scss_project/config/routes.rb +0 -58
  231. data/test_old/fixtures/scss_project/config.ru +0 -4
  232. data/test_old/fixtures/scss_project/db/seeds.rb +0 -7
  233. data/test_old/fixtures/scss_project/doc/README_FOR_APP +0 -2
  234. data/test_old/fixtures/scss_project/lib/tasks/.gitkeep +0 -0
  235. data/test_old/fixtures/scss_project/log/.gitkeep +0 -0
  236. data/test_old/fixtures/scss_project/public/404.html +0 -26
  237. data/test_old/fixtures/scss_project/public/422.html +0 -26
  238. data/test_old/fixtures/scss_project/public/500.html +0 -26
  239. data/test_old/fixtures/scss_project/public/favicon.ico +0 -0
  240. data/test_old/fixtures/scss_project/public/index.html +0 -241
  241. data/test_old/fixtures/scss_project/public/robots.txt +0 -5
  242. data/test_old/fixtures/scss_project/script/rails +0 -6
  243. data/test_old/sass_rails_test.rb +0 -203
  244. data/test_old/support/sass_rails_test_case.rb +0 -181
  245. data/test_old/test_helper.rb +0 -27
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sassc-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Boland
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-12 00:00:00.000000000 Z
11
+ date: 2019-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '1.7'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '1.7'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -67,33 +67,19 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: sass
70
+ name: sassc
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '2.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: sassc
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '1.5'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '1.5'
82
+ version: '2.0'
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: tilt
99
85
  requirement: !ruby/object:Gem::Requirement
@@ -109,7 +95,7 @@ dependencies:
109
95
  - !ruby/object:Gem::Version
110
96
  version: '0'
111
97
  - !ruby/object:Gem::Dependency
112
- name: rails
98
+ name: railties
113
99
  requirement: !ruby/object:Gem::Requirement
114
100
  requirements:
115
101
  - - ">="
@@ -128,33 +114,55 @@ dependencies:
128
114
  requirements:
129
115
  - - ">"
130
116
  - !ruby/object:Gem::Version
131
- version: '2.11'
117
+ version: '3.0'
132
118
  type: :runtime
133
119
  prerelease: false
134
120
  version_requirements: !ruby/object:Gem::Requirement
135
121
  requirements:
136
122
  - - ">"
137
123
  - !ruby/object:Gem::Version
138
- version: '2.11'
124
+ version: '3.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sprockets-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
139
  description: Integrate SassC-Ruby into Rails.
140
140
  email:
141
- - bolandryanm@gmail.com
141
+ - ryan@tanookilabs.com
142
142
  executables: []
143
143
  extensions: []
144
144
  extra_rdoc_files: []
145
145
  files:
146
146
  - ".gitignore"
147
147
  - ".travis.yml"
148
+ - CODE_OF_CONDUCT.md
148
149
  - Gemfile
149
150
  - LICENSE.txt
150
151
  - README.md
151
152
  - Rakefile
152
- - gemfiles/rails_4_0.gemfile
153
- - gemfiles/rails_4_1.gemfile
154
153
  - gemfiles/rails_4_2.gemfile
155
- - gemfiles/sprockets_2_12.gemfile
154
+ - gemfiles/rails_5_2.gemfile
155
+ - gemfiles/sprockets-rails_2_3.gemfile
156
+ - gemfiles/sprockets-rails_3_0.gemfile
156
157
  - gemfiles/sprockets_3_0.gemfile
157
- - gemfiles/with_sass_rails.gemfile
158
+ - gemfiles/sprockets_4_0.gemfile
159
+ - lib/rails/generators/sass/assets/assets_generator.rb
160
+ - lib/rails/generators/sass/assets/templates/stylesheet.sass
161
+ - lib/rails/generators/sass/scaffold/scaffold_generator.rb
162
+ - lib/rails/generators/sass_scaffold.rb
163
+ - lib/rails/generators/scss/assets/assets_generator.rb
164
+ - lib/rails/generators/scss/assets/templates/stylesheet.scss
165
+ - lib/rails/generators/scss/scaffold/scaffold_generator.rb
158
166
  - lib/sassc-rails.rb
159
167
  - lib/sassc/rails.rb
160
168
  - lib/sassc/rails/compressor.rb
@@ -164,6 +172,7 @@ files:
164
172
  - lib/sassc/rails/template.rb
165
173
  - lib/sassc/rails/version.rb
166
174
  - sassc-rails.gemspec
175
+ - test/dummy/app/assets/config/manifest.js
167
176
  - test/dummy/app/assets/fonts/fake-font.ttf
168
177
  - test/dummy/app/assets/images/.keep
169
178
  - test/dummy/app/assets/images/1x1.png
@@ -177,11 +186,14 @@ files:
177
186
  - test/dummy/app/assets/stylesheets/css_scss_erb_handler.scss.erb
178
187
  - test/dummy/app/assets/stylesheets/css_scss_handler.css.scss
179
188
  - test/dummy/app/assets/stylesheets/erb_render_with_context.css.erb
189
+ - test/dummy/app/assets/stylesheets/glob_multiple_extensions_test.scss
180
190
  - test/dummy/app/assets/stylesheets/glob_test.scss
181
191
  - test/dummy/app/assets/stylesheets/globbed/globbed.scss
182
192
  - test/dummy/app/assets/stylesheets/globbed/nested/nested_glob.scss
193
+ - test/dummy/app/assets/stylesheets/globbed_multiple_extensions/glob.scss.erb
183
194
  - test/dummy/app/assets/stylesheets/helpers_test.scss
184
195
  - test/dummy/app/assets/stylesheets/imports_test.scss
196
+ - test/dummy/app/assets/stylesheets/in_load_paths/partial_in_load_paths.scss
185
197
  - test/dummy/app/assets/stylesheets/partials/_css_sass_import.sass
186
198
  - test/dummy/app/assets/stylesheets/partials/_explicit_extension_import.foo
187
199
  - test/dummy/app/assets/stylesheets/partials/_sass_import.sass
@@ -200,219 +212,7 @@ files:
200
212
  - test/dummy/app/assets/stylesheets/syntax_error.scss
201
213
  - test/sassc_rails_test.rb
202
214
  - test/test_helper.rb
203
- - test_old/fixtures/alternate_config_project/.gitignore
204
- - test_old/fixtures/alternate_config_project/Gemfile
205
- - test_old/fixtures/alternate_config_project/README
206
- - test_old/fixtures/alternate_config_project/Rakefile
207
- - test_old/fixtures/alternate_config_project/app/assets/images/1x1.png
208
- - test_old/fixtures/alternate_config_project/app/assets/images/rails.png
209
- - test_old/fixtures/alternate_config_project/app/assets/javascripts/application.js
210
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/_top_level_partial.scss
211
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/application.scss
212
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/css_application.css
213
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/globbed/globbed.scss
214
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/globbed/nested/nested_glob.scss
215
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_sass_import.sass
216
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_scss_import.scss
217
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/_without_css_ext.scss
218
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_sass.sass
219
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/_relative_scss.scss
220
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.scss
221
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/another_plain.css
222
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/plain.css
223
- - test_old/fixtures/alternate_config_project/app/assets/stylesheets/subfolder/second_level.scss
224
- - test_old/fixtures/alternate_config_project/app/controllers/application_controller.rb
225
- - test_old/fixtures/alternate_config_project/app/helpers/application_helper.rb
226
- - test_old/fixtures/alternate_config_project/app/mailers/.gitkeep
227
- - test_old/fixtures/alternate_config_project/app/models/.gitkeep
228
- - test_old/fixtures/alternate_config_project/app/views/layouts/application.html.erb
229
- - test_old/fixtures/alternate_config_project/config.ru
230
- - test_old/fixtures/alternate_config_project/config/application.rb
231
- - test_old/fixtures/alternate_config_project/config/boot.rb
232
- - test_old/fixtures/alternate_config_project/config/database.yml
233
- - test_old/fixtures/alternate_config_project/config/environment.rb
234
- - test_old/fixtures/alternate_config_project/config/environments/development.rb
235
- - test_old/fixtures/alternate_config_project/config/environments/production.rb
236
- - test_old/fixtures/alternate_config_project/config/environments/test.rb
237
- - test_old/fixtures/alternate_config_project/config/initializers/backtrace_silencers.rb
238
- - test_old/fixtures/alternate_config_project/config/initializers/inflections.rb
239
- - test_old/fixtures/alternate_config_project/config/initializers/mime_types.rb
240
- - test_old/fixtures/alternate_config_project/config/initializers/secret_token.rb
241
- - test_old/fixtures/alternate_config_project/config/initializers/session_store.rb
242
- - test_old/fixtures/alternate_config_project/config/initializers/wrap_parameters.rb
243
- - test_old/fixtures/alternate_config_project/config/locales/en.yml
244
- - test_old/fixtures/alternate_config_project/config/routes.rb
245
- - test_old/fixtures/alternate_config_project/db/seeds.rb
246
- - test_old/fixtures/alternate_config_project/doc/README_FOR_APP
247
- - test_old/fixtures/alternate_config_project/lib/tasks/.gitkeep
248
- - test_old/fixtures/alternate_config_project/log/.gitkeep
249
- - test_old/fixtures/alternate_config_project/public/404.html
250
- - test_old/fixtures/alternate_config_project/public/422.html
251
- - test_old/fixtures/alternate_config_project/public/500.html
252
- - test_old/fixtures/alternate_config_project/public/favicon.ico
253
- - test_old/fixtures/alternate_config_project/public/index.html
254
- - test_old/fixtures/alternate_config_project/public/robots.txt
255
- - test_old/fixtures/alternate_config_project/script/rails
256
- - test_old/fixtures/engine_project/.gitignore
257
- - test_old/fixtures/engine_project/Gemfile
258
- - test_old/fixtures/engine_project/MIT-LICENSE
259
- - test_old/fixtures/engine_project/README.rdoc
260
- - test_old/fixtures/engine_project/Rakefile
261
- - test_old/fixtures/engine_project/app/assets/images/engine_project/.keep
262
- - test_old/fixtures/engine_project/app/assets/javascripts/engine_project/application.js
263
- - test_old/fixtures/engine_project/app/assets/stylesheets/engine_project/application.css
264
- - test_old/fixtures/engine_project/app/controllers/engine_project/application_controller.rb
265
- - test_old/fixtures/engine_project/app/helpers/engine_project/application_helper.rb
266
- - test_old/fixtures/engine_project/app/views/layouts/engine_project/application.html.erb
267
- - test_old/fixtures/engine_project/config/routes.rb
268
- - test_old/fixtures/engine_project/engine_project.gemspec
269
- - test_old/fixtures/engine_project/lib/engine_project.rb
270
- - test_old/fixtures/engine_project/lib/engine_project/engine.rb
271
- - test_old/fixtures/engine_project/lib/engine_project/version.rb
272
- - test_old/fixtures/engine_project/lib/tasks/engine_project_tasks.rake
273
- - test_old/fixtures/engine_project/script/rails
274
- - test_old/fixtures/engine_project/test/dummy/README.rdoc
275
- - test_old/fixtures/engine_project/test/dummy/Rakefile
276
- - test_old/fixtures/engine_project/test/dummy/app/assets/javascripts/application.js
277
- - test_old/fixtures/engine_project/test/dummy/app/assets/stylesheets/application.css
278
- - test_old/fixtures/engine_project/test/dummy/app/controllers/application_controller.rb
279
- - test_old/fixtures/engine_project/test/dummy/app/controllers/concerns/.keep
280
- - test_old/fixtures/engine_project/test/dummy/app/helpers/application_helper.rb
281
- - test_old/fixtures/engine_project/test/dummy/app/mailers/.keep
282
- - test_old/fixtures/engine_project/test/dummy/app/models/.keep
283
- - test_old/fixtures/engine_project/test/dummy/app/models/concerns/.keep
284
- - test_old/fixtures/engine_project/test/dummy/app/views/layouts/application.html.erb
285
- - test_old/fixtures/engine_project/test/dummy/bin/bundle
286
- - test_old/fixtures/engine_project/test/dummy/bin/rails
287
- - test_old/fixtures/engine_project/test/dummy/bin/rake
288
- - test_old/fixtures/engine_project/test/dummy/config.ru
289
- - test_old/fixtures/engine_project/test/dummy/config/application.rb
290
- - test_old/fixtures/engine_project/test/dummy/config/boot.rb
291
- - test_old/fixtures/engine_project/test/dummy/config/database.yml
292
- - test_old/fixtures/engine_project/test/dummy/config/environment.rb
293
- - test_old/fixtures/engine_project/test/dummy/config/environments/development.rb
294
- - test_old/fixtures/engine_project/test/dummy/config/environments/production.rb
295
- - test_old/fixtures/engine_project/test/dummy/config/environments/test.rb
296
- - test_old/fixtures/engine_project/test/dummy/config/initializers/backtrace_silencers.rb
297
- - test_old/fixtures/engine_project/test/dummy/config/initializers/filter_parameter_logging.rb
298
- - test_old/fixtures/engine_project/test/dummy/config/initializers/inflections.rb
299
- - test_old/fixtures/engine_project/test/dummy/config/initializers/mime_types.rb
300
- - test_old/fixtures/engine_project/test/dummy/config/initializers/secret_token.rb
301
- - test_old/fixtures/engine_project/test/dummy/config/initializers/session_store.rb
302
- - test_old/fixtures/engine_project/test/dummy/config/initializers/wrap_parameters.rb
303
- - test_old/fixtures/engine_project/test/dummy/config/locales/en.yml
304
- - test_old/fixtures/engine_project/test/dummy/config/routes.rb
305
- - test_old/fixtures/engine_project/test/dummy/lib/assets/.keep
306
- - test_old/fixtures/engine_project/test/dummy/log/.keep
307
- - test_old/fixtures/engine_project/test/dummy/public/404.html
308
- - test_old/fixtures/engine_project/test/dummy/public/422.html
309
- - test_old/fixtures/engine_project/test/dummy/public/500.html
310
- - test_old/fixtures/engine_project/test/dummy/public/favicon.ico
311
- - test_old/fixtures/sass_project/.gitignore
312
- - test_old/fixtures/sass_project/Gemfile
313
- - test_old/fixtures/sass_project/README
314
- - test_old/fixtures/sass_project/Rakefile
315
- - test_old/fixtures/sass_project/app/assets/images/rails.png
316
- - test_old/fixtures/sass_project/app/assets/javascripts/application.js
317
- - test_old/fixtures/sass_project/app/assets/stylesheets/application.css
318
- - test_old/fixtures/sass_project/app/controllers/application_controller.rb
319
- - test_old/fixtures/sass_project/app/helpers/application_helper.rb
320
- - test_old/fixtures/sass_project/app/mailers/.gitkeep
321
- - test_old/fixtures/sass_project/app/models/.gitkeep
322
- - test_old/fixtures/sass_project/app/views/layouts/application.html.erb
323
- - test_old/fixtures/sass_project/config.ru
324
- - test_old/fixtures/sass_project/config/application.rb
325
- - test_old/fixtures/sass_project/config/boot.rb
326
- - test_old/fixtures/sass_project/config/database.yml
327
- - test_old/fixtures/sass_project/config/environment.rb
328
- - test_old/fixtures/sass_project/config/environments/development.rb
329
- - test_old/fixtures/sass_project/config/environments/production.rb
330
- - test_old/fixtures/sass_project/config/environments/test.rb
331
- - test_old/fixtures/sass_project/config/initializers/backtrace_silencers.rb
332
- - test_old/fixtures/sass_project/config/initializers/inflections.rb
333
- - test_old/fixtures/sass_project/config/initializers/mime_types.rb
334
- - test_old/fixtures/sass_project/config/initializers/secret_token.rb
335
- - test_old/fixtures/sass_project/config/initializers/session_store.rb
336
- - test_old/fixtures/sass_project/config/initializers/wrap_parameters.rb
337
- - test_old/fixtures/sass_project/config/locales/en.yml
338
- - test_old/fixtures/sass_project/config/routes.rb
339
- - test_old/fixtures/sass_project/db/seeds.rb
340
- - test_old/fixtures/sass_project/doc/README_FOR_APP
341
- - test_old/fixtures/sass_project/lib/tasks/.gitkeep
342
- - test_old/fixtures/sass_project/log/.gitkeep
343
- - test_old/fixtures/sass_project/public/404.html
344
- - test_old/fixtures/sass_project/public/422.html
345
- - test_old/fixtures/sass_project/public/500.html
346
- - test_old/fixtures/sass_project/public/favicon.ico
347
- - test_old/fixtures/sass_project/public/index.html
348
- - test_old/fixtures/sass_project/public/robots.txt
349
- - test_old/fixtures/sass_project/script/rails
350
- - test_old/fixtures/scss_project/.gitignore
351
- - test_old/fixtures/scss_project/Gemfile
352
- - test_old/fixtures/scss_project/README
353
- - test_old/fixtures/scss_project/Rakefile
354
- - test_old/fixtures/scss_project/app/assets/images/1x1.png
355
- - test_old/fixtures/scss_project/app/assets/images/rails.png
356
- - test_old/fixtures/scss_project/app/assets/javascripts/application.js
357
- - test_old/fixtures/scss_project/app/assets/stylesheets/_top_level_partial.scss
358
- - test_old/fixtures/scss_project/app/assets/stylesheets/application.scss
359
- - test_old/fixtures/scss_project/app/assets/stylesheets/css_application.css
360
- - test_old/fixtures/scss_project/app/assets/stylesheets/css_erb_handler.css.erb
361
- - test_old/fixtures/scss_project/app/assets/stylesheets/css_sass_erb_handler.sass.erb
362
- - test_old/fixtures/scss_project/app/assets/stylesheets/css_scss_erb_handler.scss.erb
363
- - test_old/fixtures/scss_project/app/assets/stylesheets/globbed/globbed.scss
364
- - test_old/fixtures/scss_project/app/assets/stylesheets/globbed/nested/nested_glob.scss
365
- - test_old/fixtures/scss_project/app/assets/stylesheets/import_css_application.scss
366
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/_css_sass_import.sass
367
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/_sass_import.sass
368
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/_scss_import.scss
369
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/_without_css_ext.scss
370
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_sass.sass
371
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/_relative_scss.scss
372
- - test_old/fixtures/scss_project/app/assets/stylesheets/partials/subfolder/relative_not_a_partial.scss
373
- - test_old/fixtures/scss_project/app/assets/stylesheets/sass_erb_handler.sass.erb
374
- - test_old/fixtures/scss_project/app/assets/stylesheets/scss_erb_handler.scss.erb
375
- - test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/_defaults.scss
376
- - test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/another_plain.css
377
- - test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/plain.css
378
- - test_old/fixtures/scss_project/app/assets/stylesheets/subfolder/second_level.scss
379
- - test_old/fixtures/scss_project/app/controllers/application_controller.rb
380
- - test_old/fixtures/scss_project/app/helpers/application_helper.rb
381
- - test_old/fixtures/scss_project/app/mailers/.gitkeep
382
- - test_old/fixtures/scss_project/app/models/.gitkeep
383
- - test_old/fixtures/scss_project/app/views/layouts/application.html.erb
384
- - test_old/fixtures/scss_project/config.ru
385
- - test_old/fixtures/scss_project/config/application.rb
386
- - test_old/fixtures/scss_project/config/boot.rb
387
- - test_old/fixtures/scss_project/config/database.yml
388
- - test_old/fixtures/scss_project/config/environment.rb
389
- - test_old/fixtures/scss_project/config/environments/development.rb
390
- - test_old/fixtures/scss_project/config/environments/production.rb
391
- - test_old/fixtures/scss_project/config/environments/test.rb
392
- - test_old/fixtures/scss_project/config/initializers/backtrace_silencers.rb
393
- - test_old/fixtures/scss_project/config/initializers/inflections.rb
394
- - test_old/fixtures/scss_project/config/initializers/mime_types.rb
395
- - test_old/fixtures/scss_project/config/initializers/postprocessor.rb
396
- - test_old/fixtures/scss_project/config/initializers/secret_token.rb
397
- - test_old/fixtures/scss_project/config/initializers/session_store.rb
398
- - test_old/fixtures/scss_project/config/initializers/wrap_parameters.rb
399
- - test_old/fixtures/scss_project/config/locales/en.yml
400
- - test_old/fixtures/scss_project/config/routes.rb
401
- - test_old/fixtures/scss_project/db/seeds.rb
402
- - test_old/fixtures/scss_project/doc/README_FOR_APP
403
- - test_old/fixtures/scss_project/lib/tasks/.gitkeep
404
- - test_old/fixtures/scss_project/log/.gitkeep
405
- - test_old/fixtures/scss_project/public/404.html
406
- - test_old/fixtures/scss_project/public/422.html
407
- - test_old/fixtures/scss_project/public/500.html
408
- - test_old/fixtures/scss_project/public/favicon.ico
409
- - test_old/fixtures/scss_project/public/index.html
410
- - test_old/fixtures/scss_project/public/robots.txt
411
- - test_old/fixtures/scss_project/script/rails
412
- - test_old/sass_rails_test.rb
413
- - test_old/support/sass_rails_test_case.rb
414
- - test_old/test_helper.rb
415
- homepage: https://github.com/bolandrm/sassc-rails
215
+ homepage: https://github.com/sass/sassc-rails
416
216
  licenses:
417
217
  - MIT
418
218
  metadata: {}
@@ -432,11 +232,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
432
232
  version: '0'
433
233
  requirements: []
434
234
  rubyforge_project:
435
- rubygems_version: 2.2.2
235
+ rubygems_version: 2.7.6
436
236
  signing_key:
437
237
  specification_version: 4
438
238
  summary: Integrate SassC-Ruby into Rails.
439
239
  test_files:
240
+ - test/dummy/app/assets/config/manifest.js
440
241
  - test/dummy/app/assets/fonts/fake-font.ttf
441
242
  - test/dummy/app/assets/images/.keep
442
243
  - test/dummy/app/assets/images/1x1.png
@@ -450,11 +251,14 @@ test_files:
450
251
  - test/dummy/app/assets/stylesheets/css_scss_erb_handler.scss.erb
451
252
  - test/dummy/app/assets/stylesheets/css_scss_handler.css.scss
452
253
  - test/dummy/app/assets/stylesheets/erb_render_with_context.css.erb
254
+ - test/dummy/app/assets/stylesheets/glob_multiple_extensions_test.scss
453
255
  - test/dummy/app/assets/stylesheets/glob_test.scss
454
256
  - test/dummy/app/assets/stylesheets/globbed/globbed.scss
455
257
  - test/dummy/app/assets/stylesheets/globbed/nested/nested_glob.scss
258
+ - test/dummy/app/assets/stylesheets/globbed_multiple_extensions/glob.scss.erb
456
259
  - test/dummy/app/assets/stylesheets/helpers_test.scss
457
260
  - test/dummy/app/assets/stylesheets/imports_test.scss
261
+ - test/dummy/app/assets/stylesheets/in_load_paths/partial_in_load_paths.scss
458
262
  - test/dummy/app/assets/stylesheets/partials/_css_sass_import.sass
459
263
  - test/dummy/app/assets/stylesheets/partials/_explicit_extension_import.foo
460
264
  - test/dummy/app/assets/stylesheets/partials/_sass_import.sass
@@ -1,5 +0,0 @@
1
- .bundle
2
- db/*.sqlite3
3
- log/*.log
4
- tmp/
5
- .sass-cache/
@@ -1,7 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'rails', '>= 4.0.0.beta', '< 5.0'
4
- gem 'sqlite3'
5
-
6
- # Asset template engines
7
- gem 'sassc-rails', path: File.expand_path('../../../..', __FILE__)