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.
- checksums.yaml +4 -4
- data/.editorconfig +13 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +57 -0
- data/.simplecov +1 -1
- data/.travis.yml +26 -15
- data/CHANGELOG.md +15 -0
- data/Gemfile +25 -21
- data/README.md +60 -6
- data/Rakefile +31 -11
- data/docs/upgrade-3-to-4.md +118 -0
- data/features/asset_gems.feature +63 -0
- data/features/basic_usage.feature +97 -0
- data/features/bower.feature +90 -30
- data/features/linked_assets.feature +123 -0
- data/features/middleman_helpers.feature +154 -0
- data/features/step_definitions/builder_steps.rb +8 -0
- data/features/step_definitions/server_steps.rb +20 -0
- data/features/support/env.rb +0 -1
- data/features/{asset_hash.feature → test_cases/asset_hash.feature} +28 -22
- data/features/test_cases/exception_response.feature +31 -0
- data/features/test_cases/excluded_file_extensions.feature +39 -0
- data/features/test_cases/file_not_found.feature +31 -0
- data/features/test_cases/ignore_directive_is_respected.feature +90 -0
- data/features/test_cases/imported_asset_extensions.feature +77 -0
- data/features/test_cases/jst.feature +36 -0
- data/features/test_cases/long_filenames.feature +40 -0
- data/features/test_cases/path_helpers.feature +106 -0
- data/features/test_cases/processible_outside_asset_dir.feature +49 -0
- data/features/test_cases/sass_globs.feature +76 -0
- data/features/test_cases/sass_partials.feature +49 -0
- data/features/test_cases/sassc.feature +27 -0
- data/features/test_cases/use_from_templates.feature +21 -0
- data/features/test_cases/using_assets_gem_assets.feature +88 -0
- data/fixtures/asset-hash-app/config.rb +2 -0
- data/fixtures/asset-hash-app/source/stylesheets/jquery-mobile.css.scss +1 -0
- data/fixtures/asset-hash-host-app/config.rb +4 -4
- data/fixtures/base-app/config.rb +1 -0
- data/fixtures/{bower-multiple-assets-app/source/index.html → base-app/source/index.html.erb} +0 -0
- data/fixtures/gems/assets_gem/assets_gem.gemspec +16 -0
- data/fixtures/gems/assets_gem/lib/assets_gem.rb +7 -0
- data/fixtures/gems/assets_gem/vendor/assets/css/_imports/_import.scss +1 -0
- data/fixtures/{sprockets-imported-assets-match-multiple-paths-app/vendor/assets/css/test.css → gems/assets_gem/vendor/assets/css/test.scss} +1 -1
- data/fixtures/gems/assets_gem/vendor/assets/fonts/font.ttf +0 -0
- data/fixtures/gems/assets_gem/vendor/assets/images/logo.png +0 -0
- data/fixtures/gems/assets_gem/vendor/assets/javascripts/_imports/import.js +1 -0
- data/gemfiles/middleman-4.0.gemfile +7 -0
- data/gemfiles/middleman-4.1.gemfile +7 -0
- data/gemfiles/middleman-head.gemfile +7 -0
- data/gemfiles/sprockets-4.0.gemfile +6 -0
- data/lib/middleman-sprockets.rb +5 -5
- data/lib/middleman-sprockets/extension.rb +174 -215
- data/lib/middleman-sprockets/interface.rb +64 -0
- data/lib/middleman-sprockets/resource.rb +97 -0
- data/lib/middleman-sprockets/version.rb +1 -1
- data/middleman-sprockets.gemspec +16 -15
- data/tasks/matrix.rake +46 -0
- metadata +77 -237
- data/features/jst.feature +0 -14
- data/features/long_filenames.feature +0 -17
- data/features/sass_globs.feature +0 -9
- data/features/sass_partials.feature +0 -36
- data/features/sprockets.feature +0 -108
- data/features/sprockets_gems.feature +0 -48
- data/fixtures/asset-paths-app/config.rb +0 -1
- data/fixtures/asset-paths-app/derp/javascripts/vendored_js.js +0 -1
- data/fixtures/asset-paths-app/source/javascripts/vendored_include.js +0 -1
- data/fixtures/bower-app/bower.json +0 -7
- data/fixtures/bower-app/bower_components/underscore/bower.json +0 -8
- data/fixtures/bower-app/bower_components/underscore/underscore.js +0 -1343
- data/fixtures/bower-app/config.rb +0 -1
- data/fixtures/bower-app/source/javascripts/application.js +0 -1
- data/fixtures/bower-app/source/javascripts/import.js +0 -1
- data/fixtures/bower-individual-outputdir-app/bower.json +0 -7
- data/fixtures/bower-individual-outputdir-app/bower_components/underscore/bower.json +0 -8
- data/fixtures/bower-individual-outputdir-app/bower_components/underscore/underscore.js +0 -1343
- data/fixtures/bower-individual-outputdir-app/config.rb +0 -2
- data/fixtures/bower-individual-outputdir-app/source/javascripts/application.js +0 -4
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/.bower.json +0 -34
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/bower.json +0 -26
- 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 +0 -2
- data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json +0 -37
- data/fixtures/bower-json-app/config.rb +0 -1
- data/fixtures/bower-json-app/source/javascripts/application.js.coffee +0 -1
- data/fixtures/bower-json-app/source/javascripts/bower.json +0 -5
- data/fixtures/bower-multiple-assets-app/.bowerrc +0 -4
- data/fixtures/bower-multiple-assets-app/bower.json +0 -7
- data/fixtures/bower-multiple-assets-app/config.rb +0 -1
- data/fixtures/bower-multiple-assets-app/source/javascripts/core.js +0 -2
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/.bower.json +0 -34
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/bower.json +0 -26
- 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/img/open.png +0 -0
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/js/lightbox.js +0 -2
- data/fixtures/bower-multiple-assets-app/vendor/assets/components/lightbox2/package.json +0 -37
- data/fixtures/glob-app/config.rb +0 -0
- data/fixtures/glob-app/source/stylesheets/main.css.scss +0 -1
- data/fixtures/glob-app/source/stylesheets/module1/_i-am-mod.scss +0 -3
- data/fixtures/glob-app/source/stylesheets/module2/_derp.sass +0 -2
- data/fixtures/glob-app/source/stylesheets/shared/3rd-party/bootstrap.sass +0 -2
- data/fixtures/glob-app/source/stylesheets/shared/shared.scss +0 -3
- data/fixtures/jquery-mobile-app/config.rb +0 -0
- data/fixtures/jquery-mobile-app/source/javascripts/app.js +0 -1
- data/fixtures/jquery-mobile-app/source/stylesheets/base.css.scss +0 -2
- data/fixtures/long-filenames-app/config.rb +0 -0
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg +0 -3
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg +0 -3
- data/fixtures/preview-app/config.rb +0 -0
- data/fixtures/preview-app/source/content.html.erb +0 -1
- data/fixtures/preview-app/source/layout.erb +0 -1
- data/fixtures/preview-app/source/stylesheets/_partial.sass +0 -2
- data/fixtures/preview-app/source/stylesheets/_partial2.css.sass +0 -2
- data/fixtures/preview-app/source/stylesheets/main.css.sass +0 -4
- data/fixtures/preview-app/source/stylesheets/main2.css.sass +0 -4
- data/fixtures/preview-app/source/stylesheets/plain.css.sass +0 -2
- data/fixtures/sprockets-app/config.rb +0 -2
- data/fixtures/sprockets-app/source/index.html.erb +0 -6
- data/fixtures/sprockets-app/source/library/css/bootstrap_include.css.scss +0 -1
- data/fixtures/sprockets-app/source/library/css/plain.css +0 -5
- data/fixtures/sprockets-app/source/library/css/sprockets_base1.css.scss +0 -1
- data/fixtures/sprockets-app/source/library/css/sprockets_base2.css.scss +0 -1
- data/fixtures/sprockets-app/source/library/css/sprockets_sub.css.scss +0 -1
- data/fixtures/sprockets-app/source/library/js/jquery_include.js +0 -1
- data/fixtures/sprockets-app/source/library/js/plain.js +0 -6
- data/fixtures/sprockets-app/source/library/js/sprockets_base.js +0 -5
- data/fixtures/sprockets-app/source/library/js/sprockets_sub.js +0 -3
- data/fixtures/sprockets-app/source/library/js/vendored_include.js +0 -1
- data/fixtures/sprockets-app/vendor/assets/javascripts/coffee.js.coffee +0 -2
- data/fixtures/sprockets-app/vendor/assets/javascripts/vendored_js.js +0 -1
- data/fixtures/sprockets-app/vendor/assets/stylesheets/vendored.css.scss +0 -4
- data/fixtures/sprockets-app2/config.rb +0 -0
- data/fixtures/sprockets-app2/data/test.yml +0 -4
- data/fixtures/sprockets-app2/data/test2.json +0 -4
- data/fixtures/sprockets-app2/source/javascripts/_templates/test.jst.ejs +0 -1
- data/fixtures/sprockets-app2/source/javascripts/_templates/test2.jst.eco +0 -1
- data/fixtures/sprockets-app2/source/javascripts/asset_path.js.erb +0 -3
- data/fixtures/sprockets-app2/source/javascripts/multiple_engines.js.coffee.erb +0 -1
- data/fixtures/sprockets-app2/source/javascripts/sprockets_base.js +0 -5
- data/fixtures/sprockets-app2/source/javascripts/sprockets_sub.js +0 -3
- data/fixtures/sprockets-app2/source/javascripts/templates.js +0 -1
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_base1.css.scss +0 -1
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_base2.css.scss +0 -1
- data/fixtures/sprockets-app2/source/stylesheets/sprockets_sub.css.scss +0 -1
- data/fixtures/sprockets-images-app/config.rb +0 -1
- data/fixtures/sprockets-images-app/source/index.html.erb +0 -10
- 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/fixtures/sprockets-imported-asset-path-conflicts-app/config.rb +0 -4
- data/fixtures/sprockets-imported-asset-path-conflicts-app/resources/assets/stylesheets/test.css +0 -3
- data/fixtures/sprockets-imported-assets-match-multiple-paths-app/config.rb +0 -4
- data/fixtures/sprockets-multiple-extensions-app/bower.json +0 -8
- data/fixtures/sprockets-multiple-extensions-app/config.rb +0 -1
- data/fixtures/sprockets-multiple-extensions-app/source/fonts/fontawesome-webfont-source.svg.gz +0 -0
- data/fixtures/sprockets-multiple-extensions-app/source/images/drawing-source.svg +0 -76
- data/fixtures/sprockets-multiple-extensions-app/source/stylesheets/app.css.scss +0 -3
- data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz +0 -0
- data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.asdf.asdf.js.min.asdf +0 -4
- data/fixtures/sprockets-multiple-extensions-app/vendor/assets/components/jquery/jquery.min.js +0 -4
- data/fixtures/sprockets-svg-font-app/bower.json +0 -8
- data/fixtures/sprockets-svg-font-app/config.rb +0 -1
- data/fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg +0 -504
- data/fixtures/sprockets-svg-font-app/source/fonts/fontawesome-webfont-source.svg.gz +0 -0
- data/fixtures/sprockets-svg-font-app/source/images/drawing-source.svg +0 -76
- data/fixtures/sprockets-svg-font-app/source/stylesheets/app.css.scss +0 -4
- data/fixtures/sprockets-svg-font-app/vendor/assets/components/blub/images/drawing-bower.svg +0 -76
- data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg +0 -504
- data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.svg.gz +0 -0
- data/fixtures/sprockets-svg-font-app/vendor/assets/components/font-awesome/fonts/fontawesome-webfont-bower.ttf.gz +0 -0
@@ -1,34 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
4
|
-
"authors": [
|
5
|
-
"Lokesh Dhakar <lokesh.dhakar@gmail.com>"
|
6
|
-
],
|
7
|
-
"description": "The original Lightbox script. Uses jQuery.",
|
8
|
-
"main": "js/lightbox.js",
|
9
|
-
"keywords": [
|
10
|
-
"lightbox",
|
11
|
-
"overlay",
|
12
|
-
"jquery",
|
13
|
-
"gallery",
|
14
|
-
"images"
|
15
|
-
],
|
16
|
-
"license": "CC BY 2.5",
|
17
|
-
"ignore": [
|
18
|
-
"**/.*",
|
19
|
-
"Gruntfile.js",
|
20
|
-
"node_modules",
|
21
|
-
"bower_components",
|
22
|
-
"test",
|
23
|
-
"tests"
|
24
|
-
],
|
25
|
-
"_release": "05ffb8e6d5",
|
26
|
-
"_resolution": {
|
27
|
-
"type": "branch",
|
28
|
-
"branch": "master",
|
29
|
-
"commit": "05ffb8e6d524762ded286b0c33cebab5347cf34a"
|
30
|
-
},
|
31
|
-
"_source": "https://github.com/dg-vrnetze/revealjs-lightbox2.git",
|
32
|
-
"_target": "*",
|
33
|
-
"_originalSource": "https://github.com/dg-vrnetze/revealjs-lightbox2.git"
|
34
|
-
}
|
@@ -1,26 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"version": "2.7.1",
|
4
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
5
|
-
"authors": [
|
6
|
-
"Lokesh Dhakar <lokesh.dhakar@gmail.com>"
|
7
|
-
],
|
8
|
-
"description": "The original Lightbox script. Uses jQuery.",
|
9
|
-
"main": "js/lightbox.js",
|
10
|
-
"keywords": [
|
11
|
-
"lightbox",
|
12
|
-
"overlay",
|
13
|
-
"jquery",
|
14
|
-
"gallery",
|
15
|
-
"images"
|
16
|
-
],
|
17
|
-
"license": "CC BY 2.5",
|
18
|
-
"ignore": [
|
19
|
-
"**/.*",
|
20
|
-
"Gruntfile.js",
|
21
|
-
"node_modules",
|
22
|
-
"bower_components",
|
23
|
-
"test",
|
24
|
-
"tests"
|
25
|
-
]
|
26
|
-
}
|
data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/img/close.png
DELETED
Binary file
|
data/fixtures/bower-individual-outputdir-app/vendor/assets/components/lightbox2/package.json
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"version": "2.7.1",
|
4
|
-
"author": "Lokesh Dhakar",
|
5
|
-
"description": "Lightbox is small javascript library used to overlay images on top of the current page. It's a snap to setup and works on all modern browsers.",
|
6
|
-
"keywords": [
|
7
|
-
"lightbox",
|
8
|
-
"lightbox2",
|
9
|
-
"overlay",
|
10
|
-
"image",
|
11
|
-
"gallery"
|
12
|
-
],
|
13
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
14
|
-
"repository": {
|
15
|
-
"type": "git",
|
16
|
-
"url": "https://github.com/lokesh/lightbox2.git"
|
17
|
-
},
|
18
|
-
"bugs": {
|
19
|
-
"url": "https://github.com/lokesh/lightbox2/issues"
|
20
|
-
},
|
21
|
-
"licenses": [
|
22
|
-
{
|
23
|
-
"type": "Creative Commons Attribution 2.5 License",
|
24
|
-
"url": "http://creativecommons.org/licenses/by/2.5/"
|
25
|
-
}
|
26
|
-
],
|
27
|
-
"devDependencies": {
|
28
|
-
"grunt": "~0.4.2",
|
29
|
-
"grunt-contrib-compass": "^0.7.2",
|
30
|
-
"grunt-contrib-watch": "^0.5.3",
|
31
|
-
"grunt-contrib-connect": "^0.7.1",
|
32
|
-
"grunt-ftp-deploy": "^0.1.1",
|
33
|
-
"grunt-contrib-uglify": "~0.4.0",
|
34
|
-
"grunt-contrib-jshint": "~0.9.2",
|
35
|
-
"grunt-exec": "~0.4.5"
|
36
|
-
}
|
37
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
# foo
|
@@ -1 +0,0 @@
|
|
1
|
-
sprockets.append_path File.join(root, 'vendor/assets/components')
|
@@ -1,34 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
4
|
-
"authors": [
|
5
|
-
"Lokesh Dhakar <lokesh.dhakar@gmail.com>"
|
6
|
-
],
|
7
|
-
"description": "The original Lightbox script. Uses jQuery.",
|
8
|
-
"main": "js/lightbox.js",
|
9
|
-
"keywords": [
|
10
|
-
"lightbox",
|
11
|
-
"overlay",
|
12
|
-
"jquery",
|
13
|
-
"gallery",
|
14
|
-
"images"
|
15
|
-
],
|
16
|
-
"license": "CC BY 2.5",
|
17
|
-
"ignore": [
|
18
|
-
"**/.*",
|
19
|
-
"Gruntfile.js",
|
20
|
-
"node_modules",
|
21
|
-
"bower_components",
|
22
|
-
"test",
|
23
|
-
"tests"
|
24
|
-
],
|
25
|
-
"_release": "05ffb8e6d5",
|
26
|
-
"_resolution": {
|
27
|
-
"type": "branch",
|
28
|
-
"branch": "master",
|
29
|
-
"commit": "05ffb8e6d524762ded286b0c33cebab5347cf34a"
|
30
|
-
},
|
31
|
-
"_source": "https://github.com/dg-vrnetze/revealjs-lightbox2.git",
|
32
|
-
"_target": "*",
|
33
|
-
"_originalSource": "https://github.com/dg-vrnetze/revealjs-lightbox2.git"
|
34
|
-
}
|
@@ -1,26 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"version": "2.7.1",
|
4
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
5
|
-
"authors": [
|
6
|
-
"Lokesh Dhakar <lokesh.dhakar@gmail.com>"
|
7
|
-
],
|
8
|
-
"description": "The original Lightbox script. Uses jQuery.",
|
9
|
-
"main": "js/lightbox.js",
|
10
|
-
"keywords": [
|
11
|
-
"lightbox",
|
12
|
-
"overlay",
|
13
|
-
"jquery",
|
14
|
-
"gallery",
|
15
|
-
"images"
|
16
|
-
],
|
17
|
-
"license": "CC BY 2.5",
|
18
|
-
"ignore": [
|
19
|
-
"**/.*",
|
20
|
-
"Gruntfile.js",
|
21
|
-
"node_modules",
|
22
|
-
"bower_components",
|
23
|
-
"test",
|
24
|
-
"tests"
|
25
|
-
]
|
26
|
-
}
|
Binary file
|
Binary file
|
@@ -1,37 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "lightbox",
|
3
|
-
"version": "2.7.1",
|
4
|
-
"author": "Lokesh Dhakar",
|
5
|
-
"description": "Lightbox is small javascript library used to overlay images on top of the current page. It's a snap to setup and works on all modern browsers.",
|
6
|
-
"keywords": [
|
7
|
-
"lightbox",
|
8
|
-
"lightbox2",
|
9
|
-
"overlay",
|
10
|
-
"image",
|
11
|
-
"gallery"
|
12
|
-
],
|
13
|
-
"homepage": "http://lokeshdhakar.com/projects/lightbox2/",
|
14
|
-
"repository": {
|
15
|
-
"type": "git",
|
16
|
-
"url": "https://github.com/lokesh/lightbox2.git"
|
17
|
-
},
|
18
|
-
"bugs": {
|
19
|
-
"url": "https://github.com/lokesh/lightbox2/issues"
|
20
|
-
},
|
21
|
-
"licenses": [
|
22
|
-
{
|
23
|
-
"type": "Creative Commons Attribution 2.5 License",
|
24
|
-
"url": "http://creativecommons.org/licenses/by/2.5/"
|
25
|
-
}
|
26
|
-
],
|
27
|
-
"devDependencies": {
|
28
|
-
"grunt": "~0.4.2",
|
29
|
-
"grunt-contrib-compass": "^0.7.2",
|
30
|
-
"grunt-contrib-watch": "^0.5.3",
|
31
|
-
"grunt-contrib-connect": "^0.7.1",
|
32
|
-
"grunt-ftp-deploy": "^0.1.1",
|
33
|
-
"grunt-contrib-uglify": "~0.4.0",
|
34
|
-
"grunt-contrib-jshint": "~0.9.2",
|
35
|
-
"grunt-exec": "~0.4.5"
|
36
|
-
}
|
37
|
-
}
|
data/fixtures/glob-app/config.rb
DELETED
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
@import "**/*";
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
//= link "jquery.mobile"
|
File without changes
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
Hola Mundo
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= yield %>
|
@@ -1 +0,0 @@
|
|
1
|
-
//= require "bootstrap.scss"
|
@@ -1 +0,0 @@
|
|
1
|
-
//= require "sprockets_sub"
|
@@ -1 +0,0 @@
|
|
1
|
-
@import "sprockets_sub.css";
|
@@ -1 +0,0 @@
|
|
1
|
-
hello { world: "hi"; }
|
@@ -1 +0,0 @@
|
|
1
|
-
//= require "jquery"
|
@@ -1 +0,0 @@
|
|
1
|
-
//= require "vendored_js"
|
@@ -1 +0,0 @@
|
|
1
|
-
var vendored_js_included = true;
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= 'hello' %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= 'world' %>
|
@@ -1 +0,0 @@
|
|
1
|
-
alert "Hello <%= data.test[0].title %>"
|