middleman-sprockets-cj 3.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.simplecov +9 -0
- data/.travis.yml +15 -0
- data/CHANGELOG.md +71 -0
- data/CONTRIBUTING.md +43 -0
- data/Gemfile +32 -0
- data/LICENSE.md +20 -0
- data/README.md +104 -0
- data/Rakefile +45 -0
- data/features/asset_hash-3.0.feature +105 -0
- data/features/asset_hash.feature +107 -0
- data/features/bower.feature +37 -0
- data/features/jst.feature +14 -0
- data/features/long_filenames.feature +17 -0
- data/features/sass_globs.feature +9 -0
- data/features/sass_partials.feature +36 -0
- data/features/sprockets.feature +129 -0
- data/features/sprockets_gems.feature +67 -0
- data/features/step_definitions/server_steps.rb +7 -0
- data/features/support/env.rb +18 -0
- data/fixtures/asset-hash-app/config.rb +7 -0
- data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-app/source/index.html.erb +308 -0
- data/fixtures/asset-hash-app/source/javascripts/application.js +8 -0
- data/fixtures/asset-hash-app/source/javascripts/sprockets_base.js +5 -0
- data/fixtures/asset-hash-app/source/javascripts/sprockets_sub.js +3 -0
- data/fixtures/asset-hash-app/source/layout.erb +19 -0
- data/fixtures/asset-hash-app/source/other.html.erb +2 -0
- data/fixtures/asset-hash-app/source/partials.html.erb +2 -0
- data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +2 -0
- data/fixtures/asset-hash-app/source/stylesheets/jquery-mobile.css.scss +1 -0
- data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +4 -0
- data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +4 -0
- data/fixtures/asset-hash-app/source/subdir/index.html.erb +308 -0
- data/fixtures/asset-hash-host-app/config.rb +6 -0
- data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-host-app/source/index.html.erb +6 -0
- data/fixtures/asset-hash-host-app/source/layout.erb +17 -0
- data/fixtures/asset-hash-host-app/source/other.html.erb +2 -0
- data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +4 -0
- data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +6 -0
- data/fixtures/asset-paths-app/config.rb +4 -0
- data/fixtures/asset-paths-app/derp/javascripts/vendored_js.js +1 -0
- data/fixtures/asset-paths-app/source/javascripts/vendored_include.js +1 -0
- data/fixtures/bower-app/bower.json +7 -0
- data/fixtures/bower-app/bower_components/underscore/bower.json +8 -0
- data/fixtures/bower-app/bower_components/underscore/underscore.js +1343 -0
- data/fixtures/bower-app/config.rb +3 -0
- data/fixtures/bower-app/source/javascripts/application.js +1 -0
- data/fixtures/bower-individual-outputdir-app/bower.json +7 -0
- data/fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json +8 -0
- data/fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js +1343 -0
- data/fixtures/bower-individual-outputdir-app/config.rb +6 -0
- data/fixtures/bower-individual-outputdir-app/source/javascripts/application.js +1 -0
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json +34 -0
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json +26 -0
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png +0 -0
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/js/lightbox.js +2 -0
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json +37 -0
- data/fixtures/bower-json-app/config.rb +1 -0
- data/fixtures/bower-json-app/source/javascripts/application.js.coffee +1 -0
- data/fixtures/bower-json-app/source/javascripts/bower.json +5 -0
- data/fixtures/bower-multiple-assets-app/.bowerrc +4 -0
- data/fixtures/bower-multiple-assets-app/bower.json +7 -0
- data/fixtures/bower-multiple-assets-app/config.rb +7 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json +34 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json +26 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/close.png +0 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js +2 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json +37 -0
- data/fixtures/glob-app/config.rb +0 -0
- data/fixtures/glob-app/source/stylesheets/main.css.scss +1 -0
- data/fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss +3 -0
- data/fixtures/glob-app/source/stylesheets/module2/_derp.sass +2 -0
- data/fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass +2 -0
- data/fixtures/glob-app/source/stylesheets/shared/shared.scss +3 -0
- data/fixtures/jquery-mobile-app/config.rb +0 -0
- data/fixtures/jquery-mobile-app/source/stylesheets/base.css.scss +2 -0
- data/fixtures/long-filenames-app/config.rb +0 -0
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg +3 -0
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg +3 -0
- data/fixtures/preview-app/config.rb +0 -0
- data/fixtures/preview-app/source/content.html.erb +1 -0
- data/fixtures/preview-app/source/layout.erb +1 -0
- data/fixtures/preview-app/source/stylesheets/_partial.sass +2 -0
- data/fixtures/preview-app/source/stylesheets/_partial2.css.sass +2 -0
- data/fixtures/preview-app/source/stylesheets/main.css.sass +4 -0
- data/fixtures/preview-app/source/stylesheets/main2.css.sass +4 -0
- data/fixtures/preview-app/source/stylesheets/plain.css.sass +2 -0
- data/fixtures/sprockets-app-debug-assets/config.rb +1 -0
- data/fixtures/sprockets-app-debug-assets/source/index.html.erb +8 -0
- data/fixtures/sprockets-app-debug-assets/source/javascripts/dependency1.js +3 -0
- data/fixtures/sprockets-app-debug-assets/source/javascripts/dependency2.js +1 -0
- data/fixtures/sprockets-app-debug-assets/source/javascripts/main.js +4 -0
- data/fixtures/sprockets-app-debug-assets/source/stylesheets/app.css.scss +4 -0
- data/fixtures/sprockets-app-debug-assets/source/stylesheets/dependency1.css +0 -0
- data/fixtures/sprockets-app-debug-assets/source/stylesheets/dependency2.css.scss +0 -0
- data/fixtures/sprockets-app/config.rb +7 -0
- data/fixtures/sprockets-app/source/index.html.erb +6 -0
- data/fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss +1 -0
- data/fixtures/sprockets-app/source/library/css/plain.css +3 -0
- data/fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss +1 -0
- data/fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss +1 -0
- data/fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss +1 -0
- data/fixtures/sprockets-app/source/library/js/jquery_include.js +1 -0
- data/fixtures/sprockets-app/source/library/js/plain.js +3 -0
- data/fixtures/sprockets-app/source/library/js/sprockets_base.js +5 -0
- data/fixtures/sprockets-app/source/library/js/sprockets_sub.js +3 -0
- data/fixtures/sprockets-app/source/library/js/vendored_include.js +1 -0
- data/fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee +2 -0
- data/fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js +1 -0
- data/fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss +4 -0
- data/fixtures/sprockets-app2/config.rb +0 -0
- data/fixtures/sprockets-app2/data/test.yml +4 -0
- data/fixtures/sprockets-app2/data/test2.json +4 -0
- data/fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs +1 -0
- data/fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco +1 -0
- data/fixtures/sprockets-app2/source/javascripts/asset_path.js.erb +3 -0
- data/fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb +1 -0
- data/fixtures/sprockets-app2/source/javascripts/sprockets_base.js +5 -0
- data/fixtures/sprockets-app2/source/javascripts/sprockets_sub.js +3 -0
- data/fixtures/sprockets-app2/source/javascripts/templates.js +1 -0
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss +1 -0
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss +1 -0
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss +1 -0
- data/fixtures/sprockets-images-app/config.rb +1 -0
- data/fixtures/sprockets-images-app/source/index.html.erb +10 -0
- data/fixtures/sprockets-images-app/source/library/images/cat.jpg +0 -0
- data/fixtures/sprockets-images-app/vendor/assets/images/cat-2.jpg +0 -0
- data/lib/middleman-sprockets.rb +6 -0
- data/lib/middleman-sprockets/asset.rb +185 -0
- data/lib/middleman-sprockets/asset_list.rb +41 -0
- data/lib/middleman-sprockets/asset_tag_helpers.rb +54 -0
- data/lib/middleman-sprockets/config_only_environment.rb +50 -0
- data/lib/middleman-sprockets/environment.rb +228 -0
- data/lib/middleman-sprockets/extension.rb +145 -0
- data/lib/middleman-sprockets/imported_asset.rb +57 -0
- data/lib/middleman-sprockets/pathname_extensions.rb +10 -0
- data/lib/middleman-sprockets/sass_function_hack.rb +9 -0
- data/lib/middleman-sprockets/version.rb +5 -0
- data/middleman-sprockets.gemspec +22 -0
- data/spec/asset_list_spec.rb +38 -0
- data/spec/asset_spec.rb +116 -0
- data/spec/imported_asset_spec.rb +72 -0
- data/spec/spec_helper.rb +16 -0
- data/spec/support/aruba.rb +18 -0
- data/spec/support/rspec.rb +17 -0
- metadata +257 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$LOAD_PATH << File.expand_path('../../lib', __FILE__)
|
3
|
+
|
4
|
+
require 'simplecov'
|
5
|
+
SimpleCov.command_name 'rspec'
|
6
|
+
SimpleCov.start
|
7
|
+
|
8
|
+
# Pull in all of the gems including those in the `test` group
|
9
|
+
require 'bundler'
|
10
|
+
Bundler.require :default, :test, :development
|
11
|
+
|
12
|
+
require 'middleman-sprockets/extension'
|
13
|
+
|
14
|
+
Dir.glob(File.expand_path('../support/*', __FILE__)).each { |f| require_relative f }
|
15
|
+
|
16
|
+
include Middleman::Sprockets
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'aruba/api'
|
3
|
+
|
4
|
+
module Middleman
|
5
|
+
module Sprockets
|
6
|
+
module SpecHelper
|
7
|
+
include ::Aruba::Api
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
RSpec.configure do |config|
|
13
|
+
config.before(:each) do
|
14
|
+
clean_current_dir
|
15
|
+
end
|
16
|
+
|
17
|
+
config.include Middleman::Sprockets::SpecHelper
|
18
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
RSpec.configure do |config|
|
3
|
+
config.filter_run :focus
|
4
|
+
config.run_all_when_everything_filtered = true
|
5
|
+
|
6
|
+
config.order = :random
|
7
|
+
Kernel.srand config.seed
|
8
|
+
|
9
|
+
config.expect_with :rspec do |expectations|
|
10
|
+
expectations.syntax = :expect
|
11
|
+
end
|
12
|
+
|
13
|
+
config.mock_with :rspec do |mocks|
|
14
|
+
mocks.syntax = :expect
|
15
|
+
mocks.verify_partial_doubles = true
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,257 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: middleman-sprockets-cj
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.3.6
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Thomas Reynolds
|
8
|
+
- Ben Hollis
|
9
|
+
- Karl Freeman
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2014-08-12 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: middleman-core-cj
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.3'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '3.3'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: sprockets
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ~>
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 2.12.1
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ~>
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.12.1
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: sprockets-sass
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ~>
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 1.2.0
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ~>
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 1.2.0
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: sprockets-helpers
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ~>
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 1.1.0
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ~>
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.1.0
|
71
|
+
description: Sprockets support for Middleman
|
72
|
+
email:
|
73
|
+
- me@tdreyno.com
|
74
|
+
- ben@benhollis.net
|
75
|
+
- karlfreeman@gmail.com
|
76
|
+
executables: []
|
77
|
+
extensions: []
|
78
|
+
extra_rdoc_files: []
|
79
|
+
files:
|
80
|
+
- .gitignore
|
81
|
+
- .rspec
|
82
|
+
- .simplecov
|
83
|
+
- .travis.yml
|
84
|
+
- CHANGELOG.md
|
85
|
+
- CONTRIBUTING.md
|
86
|
+
- Gemfile
|
87
|
+
- LICENSE.md
|
88
|
+
- README.md
|
89
|
+
- Rakefile
|
90
|
+
- features/asset_hash-3.0.feature
|
91
|
+
- features/asset_hash.feature
|
92
|
+
- features/bower.feature
|
93
|
+
- features/jst.feature
|
94
|
+
- features/long_filenames.feature
|
95
|
+
- features/sass_globs.feature
|
96
|
+
- features/sass_partials.feature
|
97
|
+
- features/sprockets.feature
|
98
|
+
- features/sprockets_gems.feature
|
99
|
+
- features/step_definitions/server_steps.rb
|
100
|
+
- features/support/env.rb
|
101
|
+
- fixtures/asset-hash-app/config.rb
|
102
|
+
- fixtures/asset-hash-app/source/images/100px.gif
|
103
|
+
- fixtures/asset-hash-app/source/images/100px.jpg
|
104
|
+
- fixtures/asset-hash-app/source/images/100px.png
|
105
|
+
- fixtures/asset-hash-app/source/index.html.erb
|
106
|
+
- fixtures/asset-hash-app/source/javascripts/application.js
|
107
|
+
- fixtures/asset-hash-app/source/javascripts/sprockets_base.js
|
108
|
+
- fixtures/asset-hash-app/source/javascripts/sprockets_sub.js
|
109
|
+
- fixtures/asset-hash-app/source/layout.erb
|
110
|
+
- fixtures/asset-hash-app/source/other.html.erb
|
111
|
+
- fixtures/asset-hash-app/source/partials.html.erb
|
112
|
+
- fixtures/asset-hash-app/source/stylesheets/_partial.sass
|
113
|
+
- fixtures/asset-hash-app/source/stylesheets/jquery-mobile.css.scss
|
114
|
+
- fixtures/asset-hash-app/source/stylesheets/site.css.scss
|
115
|
+
- fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass
|
116
|
+
- fixtures/asset-hash-app/source/subdir/index.html.erb
|
117
|
+
- fixtures/asset-hash-host-app/config.rb
|
118
|
+
- fixtures/asset-hash-host-app/source/images/100px.gif
|
119
|
+
- fixtures/asset-hash-host-app/source/images/100px.jpg
|
120
|
+
- fixtures/asset-hash-host-app/source/images/100px.png
|
121
|
+
- fixtures/asset-hash-host-app/source/index.html.erb
|
122
|
+
- fixtures/asset-hash-host-app/source/layout.erb
|
123
|
+
- fixtures/asset-hash-host-app/source/other.html.erb
|
124
|
+
- fixtures/asset-hash-host-app/source/stylesheets/site.css.scss
|
125
|
+
- fixtures/asset-hash-host-app/source/subdir/index.html.erb
|
126
|
+
- fixtures/asset-paths-app/config.rb
|
127
|
+
- fixtures/asset-paths-app/derp/javascripts/vendored_js.js
|
128
|
+
- fixtures/asset-paths-app/source/javascripts/vendored_include.js
|
129
|
+
- fixtures/bower-app/bower.json
|
130
|
+
- fixtures/bower-app/bower_components/underscore/bower.json
|
131
|
+
- fixtures/bower-app/bower_components/underscore/underscore.js
|
132
|
+
- fixtures/bower-app/config.rb
|
133
|
+
- fixtures/bower-app/source/javascripts/application.js
|
134
|
+
- fixtures/bower-individual-outputdir-app/bower.json
|
135
|
+
- fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json
|
136
|
+
- fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js
|
137
|
+
- fixtures/bower-individual-outputdir-app/config.rb
|
138
|
+
- fixtures/bower-individual-outputdir-app/source/javascripts/application.js
|
139
|
+
- fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json
|
140
|
+
- fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json
|
141
|
+
- fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png
|
142
|
+
- fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/js/lightbox.js
|
143
|
+
- fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json
|
144
|
+
- fixtures/bower-json-app/config.rb
|
145
|
+
- fixtures/bower-json-app/source/javascripts/application.js.coffee
|
146
|
+
- fixtures/bower-json-app/source/javascripts/bower.json
|
147
|
+
- fixtures/bower-multiple-assets-app/.bowerrc
|
148
|
+
- fixtures/bower-multiple-assets-app/bower.json
|
149
|
+
- fixtures/bower-multiple-assets-app/config.rb
|
150
|
+
- fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json
|
151
|
+
- fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json
|
152
|
+
- fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/img/close.png
|
153
|
+
- fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js
|
154
|
+
- fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json
|
155
|
+
- fixtures/glob-app/config.rb
|
156
|
+
- fixtures/glob-app/source/stylesheets/main.css.scss
|
157
|
+
- fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss
|
158
|
+
- fixtures/glob-app/source/stylesheets/module2/_derp.sass
|
159
|
+
- fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass
|
160
|
+
- fixtures/glob-app/source/stylesheets/shared/shared.scss
|
161
|
+
- fixtures/jquery-mobile-app/config.rb
|
162
|
+
- fixtures/jquery-mobile-app/source/stylesheets/base.css.scss
|
163
|
+
- fixtures/long-filenames-app/config.rb
|
164
|
+
- fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg
|
165
|
+
- fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg
|
166
|
+
- fixtures/preview-app/config.rb
|
167
|
+
- fixtures/preview-app/source/content.html.erb
|
168
|
+
- fixtures/preview-app/source/layout.erb
|
169
|
+
- fixtures/preview-app/source/stylesheets/_partial.sass
|
170
|
+
- fixtures/preview-app/source/stylesheets/_partial2.css.sass
|
171
|
+
- fixtures/preview-app/source/stylesheets/main.css.sass
|
172
|
+
- fixtures/preview-app/source/stylesheets/main2.css.sass
|
173
|
+
- fixtures/preview-app/source/stylesheets/plain.css.sass
|
174
|
+
- fixtures/sprockets-app-debug-assets/config.rb
|
175
|
+
- fixtures/sprockets-app-debug-assets/source/index.html.erb
|
176
|
+
- fixtures/sprockets-app-debug-assets/source/javascripts/dependency1.js
|
177
|
+
- fixtures/sprockets-app-debug-assets/source/javascripts/dependency2.js
|
178
|
+
- fixtures/sprockets-app-debug-assets/source/javascripts/main.js
|
179
|
+
- fixtures/sprockets-app-debug-assets/source/stylesheets/app.css.scss
|
180
|
+
- fixtures/sprockets-app-debug-assets/source/stylesheets/dependency1.css
|
181
|
+
- fixtures/sprockets-app-debug-assets/source/stylesheets/dependency2.css.scss
|
182
|
+
- fixtures/sprockets-app/config.rb
|
183
|
+
- fixtures/sprockets-app/source/index.html.erb
|
184
|
+
- fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss
|
185
|
+
- fixtures/sprockets-app/source/library/css/plain.css
|
186
|
+
- fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss
|
187
|
+
- fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss
|
188
|
+
- fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss
|
189
|
+
- fixtures/sprockets-app/source/library/js/jquery_include.js
|
190
|
+
- fixtures/sprockets-app/source/library/js/plain.js
|
191
|
+
- fixtures/sprockets-app/source/library/js/sprockets_base.js
|
192
|
+
- fixtures/sprockets-app/source/library/js/sprockets_sub.js
|
193
|
+
- fixtures/sprockets-app/source/library/js/vendored_include.js
|
194
|
+
- fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee
|
195
|
+
- fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js
|
196
|
+
- fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss
|
197
|
+
- fixtures/sprockets-app2/config.rb
|
198
|
+
- fixtures/sprockets-app2/data/test.yml
|
199
|
+
- fixtures/sprockets-app2/data/test2.json
|
200
|
+
- fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs
|
201
|
+
- fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco
|
202
|
+
- fixtures/sprockets-app2/source/javascripts/asset_path.js.erb
|
203
|
+
- fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb
|
204
|
+
- fixtures/sprockets-app2/source/javascripts/sprockets_base.js
|
205
|
+
- fixtures/sprockets-app2/source/javascripts/sprockets_sub.js
|
206
|
+
- fixtures/sprockets-app2/source/javascripts/templates.js
|
207
|
+
- fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss
|
208
|
+
- fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss
|
209
|
+
- fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss
|
210
|
+
- fixtures/sprockets-images-app/config.rb
|
211
|
+
- fixtures/sprockets-images-app/source/index.html.erb
|
212
|
+
- fixtures/sprockets-images-app/source/library/images/cat.jpg
|
213
|
+
- fixtures/sprockets-images-app/vendor/assets/images/cat-2.jpg
|
214
|
+
- lib/middleman-sprockets.rb
|
215
|
+
- lib/middleman-sprockets/asset.rb
|
216
|
+
- lib/middleman-sprockets/asset_list.rb
|
217
|
+
- lib/middleman-sprockets/asset_tag_helpers.rb
|
218
|
+
- lib/middleman-sprockets/config_only_environment.rb
|
219
|
+
- lib/middleman-sprockets/environment.rb
|
220
|
+
- lib/middleman-sprockets/extension.rb
|
221
|
+
- lib/middleman-sprockets/imported_asset.rb
|
222
|
+
- lib/middleman-sprockets/pathname_extensions.rb
|
223
|
+
- lib/middleman-sprockets/sass_function_hack.rb
|
224
|
+
- lib/middleman-sprockets/version.rb
|
225
|
+
- middleman-sprockets.gemspec
|
226
|
+
- spec/asset_list_spec.rb
|
227
|
+
- spec/asset_spec.rb
|
228
|
+
- spec/imported_asset_spec.rb
|
229
|
+
- spec/spec_helper.rb
|
230
|
+
- spec/support/aruba.rb
|
231
|
+
- spec/support/rspec.rb
|
232
|
+
homepage: https://github.com/middleman/middleman-sprockets
|
233
|
+
licenses:
|
234
|
+
- MIT
|
235
|
+
metadata: {}
|
236
|
+
post_install_message:
|
237
|
+
rdoc_options: []
|
238
|
+
require_paths:
|
239
|
+
- lib
|
240
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
241
|
+
requirements:
|
242
|
+
- - '>='
|
243
|
+
- !ruby/object:Gem::Version
|
244
|
+
version: '0'
|
245
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
246
|
+
requirements:
|
247
|
+
- - '>='
|
248
|
+
- !ruby/object:Gem::Version
|
249
|
+
version: '0'
|
250
|
+
requirements: []
|
251
|
+
rubyforge_project:
|
252
|
+
rubygems_version: 2.0.14
|
253
|
+
signing_key:
|
254
|
+
specification_version: 4
|
255
|
+
summary: Sprockets support for Middleman
|
256
|
+
test_files: []
|
257
|
+
has_rdoc:
|