middleman-sprockets 4.0.0.rc.1 → 4.0.0.rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +13 -0
  3. data/.gitignore +2 -0
  4. data/.rubocop.yml +57 -0
  5. data/.simplecov +1 -1
  6. data/.travis.yml +26 -15
  7. data/CHANGELOG.md +15 -0
  8. data/Gemfile +25 -21
  9. data/README.md +60 -6
  10. data/Rakefile +31 -11
  11. data/docs/upgrade-3-to-4.md +118 -0
  12. data/features/asset_gems.feature +63 -0
  13. data/features/basic_usage.feature +97 -0
  14. data/features/bower.feature +90 -30
  15. data/features/linked_assets.feature +123 -0
  16. data/features/middleman_helpers.feature +154 -0
  17. data/features/step_definitions/builder_steps.rb +8 -0
  18. data/features/step_definitions/server_steps.rb +20 -0
  19. data/features/support/env.rb +0 -1
  20. data/features/{asset_hash.feature → test_cases/asset_hash.feature} +28 -22
  21. data/features/test_cases/exception_response.feature +31 -0
  22. data/features/test_cases/excluded_file_extensions.feature +39 -0
  23. data/features/test_cases/file_not_found.feature +31 -0
  24. data/features/test_cases/ignore_directive_is_respected.feature +90 -0
  25. data/features/test_cases/imported_asset_extensions.feature +77 -0
  26. data/features/test_cases/jst.feature +36 -0
  27. data/features/test_cases/long_filenames.feature +40 -0
  28. data/features/test_cases/path_helpers.feature +106 -0
  29. data/features/test_cases/processible_outside_asset_dir.feature +49 -0
  30. data/features/test_cases/sass_globs.feature +76 -0
  31. data/features/test_cases/sass_partials.feature +49 -0
  32. data/features/test_cases/sassc.feature +27 -0
  33. data/features/test_cases/use_from_templates.feature +21 -0
  34. data/features/test_cases/using_assets_gem_assets.feature +88 -0
  35. data/fixtures/asset-hash-app/config.rb +2 -0
  36. data/fixtures/asset-hash-app/source/stylesheets/jquery-mobile.css.scss +1 -0
  37. data/fixtures/asset-hash-host-app/config.rb +4 -4
  38. data/fixtures/base-app/config.rb +1 -0
  39. data/fixtures/{bower-multiple-assets-app/source/index.html → base-app/source/index.html.erb} +0 -0
  40. data/fixtures/gems/assets_gem/assets_gem.gemspec +16 -0
  41. data/fixtures/gems/assets_gem/lib/assets_gem.rb +7 -0
  42. data/fixtures/gems/assets_gem/vendor/assets/css/_imports/_import.scss +1 -0
  43. data/fixtures/{sprockets-imported-assets-match-multiple-paths-app/vendor/assets/css/test.css → gems/assets_gem/vendor/assets/css/test.scss} +1 -1
  44. data/fixtures/gems/assets_gem/vendor/assets/fonts/font.ttf +0 -0
  45. data/fixtures/gems/assets_gem/vendor/assets/images/logo.png +0 -0
  46. data/fixtures/gems/assets_gem/vendor/assets/javascripts/_imports/import.js +1 -0
  47. data/gemfiles/middleman-4.0.gemfile +7 -0
  48. data/gemfiles/middleman-4.1.gemfile +7 -0
  49. data/gemfiles/middleman-head.gemfile +7 -0
  50. data/gemfiles/sprockets-4.0.gemfile +6 -0
  51. data/lib/middleman-sprockets.rb +5 -5
  52. data/lib/middleman-sprockets/extension.rb +174 -215
  53. data/lib/middleman-sprockets/interface.rb +64 -0
  54. data/lib/middleman-sprockets/resource.rb +97 -0
  55. data/lib/middleman-sprockets/version.rb +1 -1
  56. data/middleman-sprockets.gemspec +16 -15
  57. data/tasks/matrix.rake +46 -0
  58. metadata +77 -237
  59. data/features/jst.feature +0 -14
  60. data/features/long_filenames.feature +0 -17
  61. data/features/sass_globs.feature +0 -9
  62. data/features/sass_partials.feature +0 -36
  63. data/features/sprockets.feature +0 -108
  64. data/features/sprockets_gems.feature +0 -48
  65. data/fixtures/asset-paths-app/config.rb +0 -1
  66. data/fixtures/asset-paths-app/derp/javascripts/vendored_js.js +0 -1
  67. data/fixtures/asset-paths-app/source/javascripts/vendored_include.js +0 -1
  68. data/fixtures/bower-app/bower.json +0 -7
  69. data/fixtures/bower-app/bower_components/underscore/bower.json +0 -8
  70. data/fixtures/bower-app/bower_components/underscore/underscore.js +0 -1343
  71. data/fixtures/bower-app/config.rb +0 -1
  72. data/fixtures/bower-app/source/javascripts/application.js +0 -1
  73. data/fixtures/bower-app/source/javascripts/import.js +0 -1
  74. data/fixtures/bower-individual-outputdir-app/bower.json +0 -7
  75. data/fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json +0 -8
  76. data/fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js +0 -1343
  77. data/fixtures/bower-individual-outputdir-app/config.rb +0 -2
  78. data/fixtures/bower-individual-outputdir-app/source/javascripts/application.js +0 -4
  79. data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json +0 -34
  80. data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json +0 -26
  81. data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png +0 -0
  82. data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/js/lightbox.js +0 -2
  83. data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json +0 -37
  84. data/fixtures/bower-json-app/config.rb +0 -1
  85. data/fixtures/bower-json-app/source/javascripts/application.js.coffee +0 -1
  86. data/fixtures/bower-json-app/source/javascripts/bower.json +0 -5
  87. data/fixtures/bower-multiple-assets-app/.bowerrc +0 -4
  88. data/fixtures/bower-multiple-assets-app/bower.json +0 -7
  89. data/fixtures/bower-multiple-assets-app/config.rb +0 -1
  90. data/fixtures/bower-multiple-assets-app/source/javascripts/core.js +0 -2
  91. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json +0 -34
  92. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json +0 -26
  93. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/close.png +0 -0
  94. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/open.png +0 -0
  95. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js +0 -2
  96. data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json +0 -37
  97. data/fixtures/glob-app/config.rb +0 -0
  98. data/fixtures/glob-app/source/stylesheets/main.css.scss +0 -1
  99. data/fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss +0 -3
  100. data/fixtures/glob-app/source/stylesheets/module2/_derp.sass +0 -2
  101. data/fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass +0 -2
  102. data/fixtures/glob-app/source/stylesheets/shared/shared.scss +0 -3
  103. data/fixtures/jquery-mobile-app/config.rb +0 -0
  104. data/fixtures/jquery-mobile-app/source/javascripts/app.js +0 -1
  105. data/fixtures/jquery-mobile-app/source/stylesheets/base.css.scss +0 -2
  106. data/fixtures/long-filenames-app/config.rb +0 -0
  107. data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg +0 -3
  108. data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg +0 -3
  109. data/fixtures/preview-app/config.rb +0 -0
  110. data/fixtures/preview-app/source/content.html.erb +0 -1
  111. data/fixtures/preview-app/source/layout.erb +0 -1
  112. data/fixtures/preview-app/source/stylesheets/_partial.sass +0 -2
  113. data/fixtures/preview-app/source/stylesheets/_partial2.css.sass +0 -2
  114. data/fixtures/preview-app/source/stylesheets/main.css.sass +0 -4
  115. data/fixtures/preview-app/source/stylesheets/main2.css.sass +0 -4
  116. data/fixtures/preview-app/source/stylesheets/plain.css.sass +0 -2
  117. data/fixtures/sprockets-app/config.rb +0 -2
  118. data/fixtures/sprockets-app/source/index.html.erb +0 -6
  119. data/fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss +0 -1
  120. data/fixtures/sprockets-app/source/library/css/plain.css +0 -5
  121. data/fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss +0 -1
  122. data/fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss +0 -1
  123. data/fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss +0 -1
  124. data/fixtures/sprockets-app/source/library/js/jquery_include.js +0 -1
  125. data/fixtures/sprockets-app/source/library/js/plain.js +0 -6
  126. data/fixtures/sprockets-app/source/library/js/sprockets_base.js +0 -5
  127. data/fixtures/sprockets-app/source/library/js/sprockets_sub.js +0 -3
  128. data/fixtures/sprockets-app/source/library/js/vendored_include.js +0 -1
  129. data/fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee +0 -2
  130. data/fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js +0 -1
  131. data/fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss +0 -4
  132. data/fixtures/sprockets-app2/config.rb +0 -0
  133. data/fixtures/sprockets-app2/data/test.yml +0 -4
  134. data/fixtures/sprockets-app2/data/test2.json +0 -4
  135. data/fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs +0 -1
  136. data/fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco +0 -1
  137. data/fixtures/sprockets-app2/source/javascripts/asset_path.js.erb +0 -3
  138. data/fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb +0 -1
  139. data/fixtures/sprockets-app2/source/javascripts/sprockets_base.js +0 -5
  140. data/fixtures/sprockets-app2/source/javascripts/sprockets_sub.js +0 -3
  141. data/fixtures/sprockets-app2/source/javascripts/templates.js +0 -1
  142. data/fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss +0 -1
  143. data/fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss +0 -1
  144. data/fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss +0 -1
  145. data/fixtures/sprockets-images-app/config.rb +0 -1
  146. data/fixtures/sprockets-images-app/source/index.html.erb +0 -10
  147. data/fixtures/sprockets-images-app/source/library/images/cat.jpg +0 -0
  148. data/fixtures/sprockets-images-app/vendor/assets/images/cat-2.jpg +0 -0
  149. data/fixtures/sprockets-imported-asset-path-conflicts-app/config.rb +0 -4
  150. data/fixtures/sprockets-imported-asset-path-conflicts-app/resources/assets/stylesheets/test.css +0 -3
  151. data/fixtures/sprockets-imported-assets-match-multiple-paths-app/config.rb +0 -4
  152. data/fixtures/sprockets-multiple-extensions-app/bower.json +0 -8
  153. data/fixtures/sprockets-multiple-extensions-app/config.rb +0 -1
  154. data/fixtures/sprockets-multiple-extensions-app/source/fonts/fontawesome-webfont-source.svg.gz +0 -0
  155. data/fixtures/sprockets-multiple-extensions-app/source/images/drawing-source.svg +0 -76
  156. data/fixtures/sprockets-multiple-extensions-app/source/stylesheets/app.css.scss +0 -3
  157. data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz +0 -0
  158. data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.asdf.asdf.js.min.asdf +0 -4
  159. data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.min.js +0 -4
  160. data/fixtures/sprockets-svg-font-app/bower.json +0 -8
  161. data/fixtures/sprockets-svg-font-app/config.rb +0 -1
  162. data/fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg +0 -504
  163. data/fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg.gz +0 -0
  164. data/fixtures/sprockets-svg-font-app/source/images/drawing-source.svg +0 -76
  165. data/fixtures/sprockets-svg-font-app/source/stylesheets/app.css.scss +0 -4
  166. data/fixtures/sprockets-svg-font-app/vendor/assets/components/blub/images/drawing-bower.svg +0 -76
  167. data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg +0 -504
  168. data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz +0 -0
  169. data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.ttf.gz +0 -0
@@ -0,0 +1,64 @@
1
+ require 'middleman-core/configuration'
2
+
3
+ module Middleman
4
+ module Sprockets
5
+ class Interface
6
+ include Contracts
7
+
8
+ attr_reader :options,
9
+ :environment,
10
+ :extensions
11
+
12
+ Contract ::Middleman::Configuration::ConfigurationManager, ::Sprockets::Environment => Any
13
+ def initialize options, environment
14
+ @options = options
15
+ @environment = environment
16
+ setup!
17
+ end
18
+
19
+ module Sprockets4
20
+ include Contracts
21
+
22
+ def setup!
23
+ acceptable_mimes = options[:supported_output_extensions].map do |ext|
24
+ environment.config[:mime_exts][ext]
25
+ end
26
+ @extensions = environment.transformers.map { |k, v| [k, v.keys] }.select do |row|
27
+ acceptable_mimes.include?(row.first) ||
28
+ row.last.include?(acceptable_mimes.first) ||
29
+ row.last.include?(acceptable_mimes.last)
30
+ end.flat_map do |row|
31
+ mime = row.first
32
+ environment.mime_exts.map { |k, v| v == mime ? k : nil }.compact
33
+ end
34
+ end
35
+
36
+ Contract String => Bool
37
+ def processible? filename
38
+ file_ext, _mime = ::Sprockets::PathUtils.match_path_extname(filename, environment.config[:mime_exts])
39
+ extensions.include?(file_ext)
40
+ end
41
+ end
42
+
43
+ module Sprockets3
44
+ include Contracts
45
+
46
+ def setup!
47
+ @extensions = environment.engines.keys
48
+ end
49
+
50
+ Contract String => Bool
51
+ def processible? filename
52
+ *template_exts, target_ext = Middleman::Util.collect_extensions(filename)
53
+ options[:supported_output_extensions].include?(target_ext) && (template_exts - extensions).empty?
54
+ end
55
+ end
56
+
57
+ if ::Sprockets::VERSION >= '4.0'
58
+ include Sprockets4
59
+ else
60
+ include Sprockets3
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,97 @@
1
+ require 'middleman-core/sitemap/store'
2
+
3
+ module Middleman
4
+ module Sprockets
5
+ class Resource < ::Middleman::Sitemap::Resource
6
+ Contract ::Middleman::Sitemap::Store, String, String, String, ::Sprockets::Environment => Any
7
+ def initialize store, path, source_file, sprockets_path, environment
8
+ @app = store.app
9
+ @path = path
10
+ @sprockets_path = sprockets_path
11
+ @environment = environment
12
+ @errored = false
13
+
14
+ super(store, path, source_file)
15
+ end
16
+
17
+ Contract Bool
18
+ def errored?
19
+ @errored
20
+ end
21
+
22
+ Contract Bool
23
+ def template?
24
+ true
25
+ end
26
+
27
+ Contract Any, Any => String
28
+ def render *_args
29
+ ::Middleman::Util.instrument 'sprockets.render', asset: self do
30
+ sprockets_asset.source
31
+ end
32
+ end
33
+
34
+ Contract Or[::Sprockets::Asset, IsA['Middleman::Sprockets::Resource::Error']]
35
+ def sprockets_asset
36
+ ::Middleman::Util.instrument 'sprockets.asset_lookup', asset: self do
37
+ @environment[@sprockets_path] || raise(::Sprockets::FileNotFound, @sprockets_path)
38
+ end
39
+ rescue StandardError => e
40
+ raise e if @app.build?
41
+
42
+ @errored = true
43
+ Error.new(e, ext)
44
+ end
45
+
46
+ Contract Bool
47
+ def binary?
48
+ false
49
+ end
50
+
51
+ class Error
52
+ include Contracts
53
+
54
+ def initialize error, ext
55
+ @error = error
56
+ @ext = ext
57
+ end
58
+
59
+ Contract Array
60
+ def links
61
+ []
62
+ end
63
+
64
+ Contract String
65
+ def source
66
+ case @ext
67
+ when '.css' then css_response
68
+ when '.js' then js_response
69
+ else
70
+ default_response
71
+ end
72
+ end
73
+ alias to_s source
74
+
75
+ private
76
+
77
+ def default_response
78
+ @error.to_s
79
+ end
80
+
81
+ def js_response
82
+ file, line = @error.backtrace[0].split(':')
83
+ err = "#{@error.class.name}: #{@error.message}\n" \
84
+ " on line #{line} of #{file})"
85
+
86
+ "throw Error(#{err.inspect})"
87
+ end
88
+
89
+ def css_response
90
+ ::Sass::SyntaxError.exception_to_css(@error)
91
+ end
92
+
93
+ end
94
+
95
+ end
96
+ end
97
+ end
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module Sprockets
3
- VERSION = "4.0.0.rc.1"
3
+ VERSION = '4.0.0.rc.2'.freeze
4
4
  end
5
5
  end
@@ -1,20 +1,21 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "middleman-sprockets/version"
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'middleman-sprockets/version'
4
4
 
5
5
  Gem::Specification.new do |s|
6
- s.name = "middleman-sprockets"
7
- s.version = Middleman::Sprockets::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ['Thomas Reynolds', 'Ben Hollis', 'Karl Freeman']
10
- s.email = ['me@tdreyno.com', 'ben@benhollis.net', 'karlfreeman@gmail.com']
11
- s.homepage = "https://github.com/middleman/middleman-sprockets"
12
- s.summary = %q{Sprockets support for Middleman}
6
+ s.name = 'middleman-sprockets'
7
+ s.version = Middleman::Sprockets::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ['Thomas Reynolds', 'Ben Hollis', 'Karl Freeman']
10
+ s.email = ['me@tdreyno.com', 'ben@benhollis.net', 'karlfreeman@gmail.com']
11
+ s.homepage = 'https://github.com/middleman/middleman-sprockets'
12
+ s.summary = %q{Sprockets support for Middleman}
13
13
  s.description = %q{Sprockets support for Middleman}
14
- s.license = "MIT"
15
- s.files = `git ls-files -z`.split("\0")
16
- s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
17
- s.require_paths = ["lib"]
18
- s.add_dependency("middleman-core", [">= 4.0.0.rc.1"])
19
- s.add_dependency("sprockets", ["~> 3.0"])
14
+ s.license = 'MIT'
15
+ s.files = `git ls-files -z`.split("\0")
16
+ s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
17
+ s.require_paths = ['lib']
18
+
19
+ s.add_dependency 'middleman-core', ['~> 4.0']
20
+ s.add_dependency 'sprockets', ['>= 3.0']
20
21
  end
@@ -0,0 +1,46 @@
1
+ namespace :matrix do
2
+
3
+ def with_gemfile gemfile, &block
4
+ Bundler.with_clean_env do
5
+ gemfile = File.expand_path(gemfile)
6
+ ENV['BUNDLE_GEMFILE'] = gemfile
7
+
8
+ if ENV['CLEAN'] && File.exist?("#{gemfile}.lock")
9
+ system "rm #{gemfile}.lock"
10
+ end
11
+
12
+ unless File.exist?( "#{gemfile}.lock")
13
+ args = ["--quiet"]
14
+ puts "bundling #{gemfile}"
15
+ `bundle install --gemfile='#{gemfile}' #{args.join(' ')}`
16
+ end
17
+
18
+ system "bundle exec '#{yield}'"
19
+ end
20
+ end
21
+
22
+ def tracer msg
23
+ puts ""
24
+ puts (0..(msg.length+10)).map { |i| "=" }.join
25
+ puts " #{msg}"
26
+ puts (0..(msg.length+10)).map { |i| "=" }.join
27
+ end
28
+
29
+ MATRIX = %w[ middleman-4.0 middleman-4.1 middleman-head sprockets-4.0 ]
30
+
31
+ MATRIX.each do |gemfile_name|
32
+
33
+ desc "run tests with #{gemfile_name} gemfile"
34
+ task :"#{gemfile_name}" do
35
+ tracer "running tests with #{gemfile_name} gemfile"
36
+ with_gemfile "gemfiles/#{gemfile_name}.gemfile" do
37
+ "rake test"
38
+ end
39
+ end
40
+
41
+ end
42
+
43
+ desc "run test on full matrix"
44
+ task :all => MATRIX.map { |gn| "matrix:#{gn}" }
45
+
46
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.rc.1
4
+ version: 4.0.0.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
@@ -10,34 +10,34 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-09-16 00:00:00.000000000 Z
13
+ date: 2016-04-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: middleman-core
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ">="
19
+ - - "~>"
20
20
  - !ruby/object:Gem::Version
21
- version: 4.0.0.rc.1
21
+ version: '4.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - ">="
26
+ - - "~>"
27
27
  - !ruby/object:Gem::Version
28
- version: 4.0.0.rc.1
28
+ version: '4.0'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: sprockets
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - "~>"
33
+ - - ">="
34
34
  - !ruby/object:Gem::Version
35
35
  version: '3.0'
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - "~>"
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: '3.0'
43
43
  description: Sprockets support for Middleman
@@ -49,8 +49,10 @@ executables: []
49
49
  extensions: []
50
50
  extra_rdoc_files: []
51
51
  files:
52
+ - ".editorconfig"
52
53
  - ".gitignore"
53
54
  - ".rspec"
55
+ - ".rubocop.yml"
54
56
  - ".simplecov"
55
57
  - ".travis.yml"
56
58
  - CHANGELOG.md
@@ -59,16 +61,30 @@ files:
59
61
  - LICENSE.md
60
62
  - README.md
61
63
  - Rakefile
62
- - features/asset_hash.feature
64
+ - docs/upgrade-3-to-4.md
65
+ - features/asset_gems.feature
66
+ - features/basic_usage.feature
63
67
  - features/bower.feature
64
- - features/jst.feature
65
- - features/long_filenames.feature
66
- - features/sass_globs.feature
67
- - features/sass_partials.feature
68
- - features/sprockets.feature
69
- - features/sprockets_gems.feature
68
+ - features/linked_assets.feature
69
+ - features/middleman_helpers.feature
70
+ - features/step_definitions/builder_steps.rb
70
71
  - features/step_definitions/server_steps.rb
71
72
  - features/support/env.rb
73
+ - features/test_cases/asset_hash.feature
74
+ - features/test_cases/exception_response.feature
75
+ - features/test_cases/excluded_file_extensions.feature
76
+ - features/test_cases/file_not_found.feature
77
+ - features/test_cases/ignore_directive_is_respected.feature
78
+ - features/test_cases/imported_asset_extensions.feature
79
+ - features/test_cases/jst.feature
80
+ - features/test_cases/long_filenames.feature
81
+ - features/test_cases/path_helpers.feature
82
+ - features/test_cases/processible_outside_asset_dir.feature
83
+ - features/test_cases/sass_globs.feature
84
+ - features/test_cases/sass_partials.feature
85
+ - features/test_cases/sassc.feature
86
+ - features/test_cases/use_from_templates.feature
87
+ - features/test_cases/using_assets_gem_assets.feature
72
88
  - fixtures/asset-hash-app/config.rb
73
89
  - fixtures/asset-hash-app/source/images/100px.gif
74
90
  - fixtures/asset-hash-app/source/images/100px.jpg
@@ -94,120 +110,29 @@ files:
94
110
  - fixtures/asset-hash-host-app/source/other.html.erb
95
111
  - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
96
112
  - fixtures/asset-hash-host-app/source/subdir/index.html.erb
97
- - fixtures/asset-paths-app/config.rb
98
- - fixtures/asset-paths-app/derp/javascripts/vendored_js.js
99
- - fixtures/asset-paths-app/source/javascripts/vendored_include.js
100
- - fixtures/bower-app/bower.json
101
- - fixtures/bower-app/bower_components/underscore/bower.json
102
- - fixtures/bower-app/bower_components/underscore/underscore.js
103
- - fixtures/bower-app/config.rb
104
- - fixtures/bower-app/source/javascripts/application.js
105
- - fixtures/bower-app/source/javascripts/import.js
106
- - fixtures/bower-individual-outputdir-app/bower.json
107
- - fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json
108
- - fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js
109
- - fixtures/bower-individual-outputdir-app/config.rb
110
- - fixtures/bower-individual-outputdir-app/source/javascripts/application.js
111
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json
112
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json
113
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png
114
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/js/lightbox.js
115
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json
116
- - fixtures/bower-json-app/config.rb
117
- - fixtures/bower-json-app/source/javascripts/application.js.coffee
118
- - fixtures/bower-json-app/source/javascripts/bower.json
119
- - fixtures/bower-multiple-assets-app/.bowerrc
120
- - fixtures/bower-multiple-assets-app/bower.json
121
- - fixtures/bower-multiple-assets-app/config.rb
122
- - fixtures/bower-multiple-assets-app/source/index.html
123
- - fixtures/bower-multiple-assets-app/source/javascripts/core.js
124
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json
125
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json
126
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/close.png
127
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/open.png
128
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js
129
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json
130
- - fixtures/glob-app/config.rb
131
- - fixtures/glob-app/source/stylesheets/main.css.scss
132
- - fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss
133
- - fixtures/glob-app/source/stylesheets/module2/_derp.sass
134
- - fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass
135
- - fixtures/glob-app/source/stylesheets/shared/shared.scss
136
- - fixtures/jquery-mobile-app/config.rb
137
- - fixtures/jquery-mobile-app/source/javascripts/app.js
138
- - fixtures/jquery-mobile-app/source/stylesheets/base.css.scss
139
- - fixtures/long-filenames-app/config.rb
140
- - fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg
141
- - fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg
142
- - fixtures/preview-app/config.rb
143
- - fixtures/preview-app/source/content.html.erb
144
- - fixtures/preview-app/source/layout.erb
145
- - fixtures/preview-app/source/stylesheets/_partial.sass
146
- - fixtures/preview-app/source/stylesheets/_partial2.css.sass
147
- - fixtures/preview-app/source/stylesheets/main.css.sass
148
- - fixtures/preview-app/source/stylesheets/main2.css.sass
149
- - fixtures/preview-app/source/stylesheets/plain.css.sass
150
- - fixtures/sprockets-app/config.rb
151
- - fixtures/sprockets-app/source/index.html.erb
152
- - fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss
153
- - fixtures/sprockets-app/source/library/css/plain.css
154
- - fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss
155
- - fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss
156
- - fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss
157
- - fixtures/sprockets-app/source/library/js/jquery_include.js
158
- - fixtures/sprockets-app/source/library/js/plain.js
159
- - fixtures/sprockets-app/source/library/js/sprockets_base.js
160
- - fixtures/sprockets-app/source/library/js/sprockets_sub.js
161
- - fixtures/sprockets-app/source/library/js/vendored_include.js
162
- - fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee
163
- - fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js
164
- - fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss
165
- - fixtures/sprockets-app2/config.rb
166
- - fixtures/sprockets-app2/data/test.yml
167
- - fixtures/sprockets-app2/data/test2.json
168
- - fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs
169
- - fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco
170
- - fixtures/sprockets-app2/source/javascripts/asset_path.js.erb
171
- - fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb
172
- - fixtures/sprockets-app2/source/javascripts/sprockets_base.js
173
- - fixtures/sprockets-app2/source/javascripts/sprockets_sub.js
174
- - fixtures/sprockets-app2/source/javascripts/templates.js
175
- - fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss
176
- - fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss
177
- - fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss
178
- - fixtures/sprockets-images-app/config.rb
179
- - fixtures/sprockets-images-app/source/index.html.erb
180
- - fixtures/sprockets-images-app/source/library/images/cat.jpg
181
- - fixtures/sprockets-images-app/vendor/assets/images/cat-2.jpg
182
- - fixtures/sprockets-imported-asset-path-conflicts-app/config.rb
183
- - fixtures/sprockets-imported-asset-path-conflicts-app/resources/assets/stylesheets/test.css
184
- - fixtures/sprockets-imported-assets-match-multiple-paths-app/config.rb
185
- - fixtures/sprockets-imported-assets-match-multiple-paths-app/vendor/assets/css/test.css
186
- - fixtures/sprockets-multiple-extensions-app/bower.json
187
- - fixtures/sprockets-multiple-extensions-app/config.rb
188
- - fixtures/sprockets-multiple-extensions-app/source/fonts/fontawesome-webfont-source.svg.gz
189
- - fixtures/sprockets-multiple-extensions-app/source/images/drawing-source.svg
190
- - fixtures/sprockets-multiple-extensions-app/source/stylesheets/app.css.scss
191
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz
192
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.asdf.asdf.js.min.asdf
193
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.min.js
194
- - fixtures/sprockets-svg-font-app/bower.json
195
- - fixtures/sprockets-svg-font-app/config.rb
196
- - fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg
197
- - fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg.gz
198
- - fixtures/sprockets-svg-font-app/source/images/drawing-source.svg
199
- - fixtures/sprockets-svg-font-app/source/stylesheets/app.css.scss
200
- - fixtures/sprockets-svg-font-app/vendor/assets/components/blub/images/drawing-bower.svg
201
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg
202
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz
203
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.ttf.gz
113
+ - fixtures/base-app/config.rb
114
+ - fixtures/base-app/source/index.html.erb
115
+ - fixtures/gems/assets_gem/assets_gem.gemspec
116
+ - fixtures/gems/assets_gem/lib/assets_gem.rb
117
+ - fixtures/gems/assets_gem/vendor/assets/css/_imports/_import.scss
118
+ - fixtures/gems/assets_gem/vendor/assets/css/test.scss
119
+ - fixtures/gems/assets_gem/vendor/assets/fonts/font.ttf
120
+ - fixtures/gems/assets_gem/vendor/assets/images/logo.png
121
+ - fixtures/gems/assets_gem/vendor/assets/javascripts/_imports/import.js
122
+ - gemfiles/middleman-4.0.gemfile
123
+ - gemfiles/middleman-4.1.gemfile
124
+ - gemfiles/middleman-head.gemfile
125
+ - gemfiles/sprockets-4.0.gemfile
204
126
  - lib/middleman-sprockets.rb
205
127
  - lib/middleman-sprockets/extension.rb
128
+ - lib/middleman-sprockets/interface.rb
129
+ - lib/middleman-sprockets/resource.rb
206
130
  - lib/middleman-sprockets/version.rb
207
131
  - middleman-sprockets.gemspec
208
132
  - spec/spec_helper.rb
209
133
  - spec/support/aruba.rb
210
134
  - spec/support/rspec.rb
135
+ - tasks/matrix.rake
211
136
  homepage: https://github.com/middleman/middleman-sprockets
212
137
  licenses:
213
138
  - MIT
@@ -228,21 +153,34 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
153
  version: 1.3.1
229
154
  requirements: []
230
155
  rubyforge_project:
231
- rubygems_version: 2.4.6
156
+ rubygems_version: 2.4.8
232
157
  signing_key:
233
158
  specification_version: 4
234
159
  summary: Sprockets support for Middleman
235
160
  test_files:
236
- - features/asset_hash.feature
161
+ - features/asset_gems.feature
162
+ - features/basic_usage.feature
237
163
  - features/bower.feature
238
- - features/jst.feature
239
- - features/long_filenames.feature
240
- - features/sass_globs.feature
241
- - features/sass_partials.feature
242
- - features/sprockets.feature
243
- - features/sprockets_gems.feature
164
+ - features/linked_assets.feature
165
+ - features/middleman_helpers.feature
166
+ - features/step_definitions/builder_steps.rb
244
167
  - features/step_definitions/server_steps.rb
245
168
  - features/support/env.rb
169
+ - features/test_cases/asset_hash.feature
170
+ - features/test_cases/exception_response.feature
171
+ - features/test_cases/excluded_file_extensions.feature
172
+ - features/test_cases/file_not_found.feature
173
+ - features/test_cases/ignore_directive_is_respected.feature
174
+ - features/test_cases/imported_asset_extensions.feature
175
+ - features/test_cases/jst.feature
176
+ - features/test_cases/long_filenames.feature
177
+ - features/test_cases/path_helpers.feature
178
+ - features/test_cases/processible_outside_asset_dir.feature
179
+ - features/test_cases/sass_globs.feature
180
+ - features/test_cases/sass_partials.feature
181
+ - features/test_cases/sassc.feature
182
+ - features/test_cases/use_from_templates.feature
183
+ - features/test_cases/using_assets_gem_assets.feature
246
184
  - fixtures/asset-hash-app/config.rb
247
185
  - fixtures/asset-hash-app/source/images/100px.gif
248
186
  - fixtures/asset-hash-app/source/images/100px.jpg
@@ -268,111 +206,13 @@ test_files:
268
206
  - fixtures/asset-hash-host-app/source/other.html.erb
269
207
  - fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
270
208
  - fixtures/asset-hash-host-app/source/subdir/index.html.erb
271
- - fixtures/asset-paths-app/config.rb
272
- - fixtures/asset-paths-app/derp/javascripts/vendored_js.js
273
- - fixtures/asset-paths-app/source/javascripts/vendored_include.js
274
- - fixtures/bower-app/bower.json
275
- - fixtures/bower-app/bower_components/underscore/bower.json
276
- - fixtures/bower-app/bower_components/underscore/underscore.js
277
- - fixtures/bower-app/config.rb
278
- - fixtures/bower-app/source/javascripts/application.js
279
- - fixtures/bower-app/source/javascripts/import.js
280
- - fixtures/bower-individual-outputdir-app/bower.json
281
- - fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json
282
- - fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js
283
- - fixtures/bower-individual-outputdir-app/config.rb
284
- - fixtures/bower-individual-outputdir-app/source/javascripts/application.js
285
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json
286
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json
287
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png
288
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/js/lightbox.js
289
- - fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json
290
- - fixtures/bower-json-app/config.rb
291
- - fixtures/bower-json-app/source/javascripts/application.js.coffee
292
- - fixtures/bower-json-app/source/javascripts/bower.json
293
- - fixtures/bower-multiple-assets-app/.bowerrc
294
- - fixtures/bower-multiple-assets-app/bower.json
295
- - fixtures/bower-multiple-assets-app/config.rb
296
- - fixtures/bower-multiple-assets-app/source/index.html
297
- - fixtures/bower-multiple-assets-app/source/javascripts/core.js
298
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json
299
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json
300
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/close.png
301
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/open.png
302
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js
303
- - fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json
304
- - fixtures/glob-app/config.rb
305
- - fixtures/glob-app/source/stylesheets/main.css.scss
306
- - fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss
307
- - fixtures/glob-app/source/stylesheets/module2/_derp.sass
308
- - fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass
309
- - fixtures/glob-app/source/stylesheets/shared/shared.scss
310
- - fixtures/jquery-mobile-app/config.rb
311
- - fixtures/jquery-mobile-app/source/javascripts/app.js
312
- - fixtures/jquery-mobile-app/source/stylesheets/base.css.scss
313
- - fixtures/long-filenames-app/config.rb
314
- - fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg
315
- - fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg
316
- - fixtures/preview-app/config.rb
317
- - fixtures/preview-app/source/content.html.erb
318
- - fixtures/preview-app/source/layout.erb
319
- - fixtures/preview-app/source/stylesheets/_partial.sass
320
- - fixtures/preview-app/source/stylesheets/_partial2.css.sass
321
- - fixtures/preview-app/source/stylesheets/main.css.sass
322
- - fixtures/preview-app/source/stylesheets/main2.css.sass
323
- - fixtures/preview-app/source/stylesheets/plain.css.sass
324
- - fixtures/sprockets-app/config.rb
325
- - fixtures/sprockets-app/source/index.html.erb
326
- - fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss
327
- - fixtures/sprockets-app/source/library/css/plain.css
328
- - fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss
329
- - fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss
330
- - fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss
331
- - fixtures/sprockets-app/source/library/js/jquery_include.js
332
- - fixtures/sprockets-app/source/library/js/plain.js
333
- - fixtures/sprockets-app/source/library/js/sprockets_base.js
334
- - fixtures/sprockets-app/source/library/js/sprockets_sub.js
335
- - fixtures/sprockets-app/source/library/js/vendored_include.js
336
- - fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee
337
- - fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js
338
- - fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss
339
- - fixtures/sprockets-app2/config.rb
340
- - fixtures/sprockets-app2/data/test.yml
341
- - fixtures/sprockets-app2/data/test2.json
342
- - fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs
343
- - fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco
344
- - fixtures/sprockets-app2/source/javascripts/asset_path.js.erb
345
- - fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb
346
- - fixtures/sprockets-app2/source/javascripts/sprockets_base.js
347
- - fixtures/sprockets-app2/source/javascripts/sprockets_sub.js
348
- - fixtures/sprockets-app2/source/javascripts/templates.js
349
- - fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss
350
- - fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss
351
- - fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss
352
- - fixtures/sprockets-images-app/config.rb
353
- - fixtures/sprockets-images-app/source/index.html.erb
354
- - fixtures/sprockets-images-app/source/library/images/cat.jpg
355
- - fixtures/sprockets-images-app/vendor/assets/images/cat-2.jpg
356
- - fixtures/sprockets-imported-asset-path-conflicts-app/config.rb
357
- - fixtures/sprockets-imported-asset-path-conflicts-app/resources/assets/stylesheets/test.css
358
- - fixtures/sprockets-imported-assets-match-multiple-paths-app/config.rb
359
- - fixtures/sprockets-imported-assets-match-multiple-paths-app/vendor/assets/css/test.css
360
- - fixtures/sprockets-multiple-extensions-app/bower.json
361
- - fixtures/sprockets-multiple-extensions-app/config.rb
362
- - fixtures/sprockets-multiple-extensions-app/source/fonts/fontawesome-webfont-source.svg.gz
363
- - fixtures/sprockets-multiple-extensions-app/source/images/drawing-source.svg
364
- - fixtures/sprockets-multiple-extensions-app/source/stylesheets/app.css.scss
365
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz
366
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.asdf.asdf.js.min.asdf
367
- - fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.min.js
368
- - fixtures/sprockets-svg-font-app/bower.json
369
- - fixtures/sprockets-svg-font-app/config.rb
370
- - fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg
371
- - fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg.gz
372
- - fixtures/sprockets-svg-font-app/source/images/drawing-source.svg
373
- - fixtures/sprockets-svg-font-app/source/stylesheets/app.css.scss
374
- - fixtures/sprockets-svg-font-app/vendor/assets/components/blub/images/drawing-bower.svg
375
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg
376
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz
377
- - fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.ttf.gz
209
+ - fixtures/base-app/config.rb
210
+ - fixtures/base-app/source/index.html.erb
211
+ - fixtures/gems/assets_gem/assets_gem.gemspec
212
+ - fixtures/gems/assets_gem/lib/assets_gem.rb
213
+ - fixtures/gems/assets_gem/vendor/assets/css/_imports/_import.scss
214
+ - fixtures/gems/assets_gem/vendor/assets/css/test.scss
215
+ - fixtures/gems/assets_gem/vendor/assets/fonts/font.ttf
216
+ - fixtures/gems/assets_gem/vendor/assets/images/logo.png
217
+ - fixtures/gems/assets_gem/vendor/assets/javascripts/_imports/import.js
378
218
  has_rdoc: