parent
43ac01af5c
commit
cf39b2e2cb
49 changed files with 1372 additions and 0 deletions
1
spec/fixtures/sample/init.rb
vendored
Normal file
1
spec/fixtures/sample/init.rb
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
enable :maruku
|
1
spec/fixtures/sample/public/javascripts/to-be-included.js
vendored
Normal file
1
spec/fixtures/sample/public/javascripts/to-be-included.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
function() { return "combo"; };
|
1
spec/fixtures/sample/public/static.html
vendored
Normal file
1
spec/fixtures/sample/public/static.html
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
Static, no code!
|
2
spec/fixtures/sample/public/stylesheets/static.css
vendored
Normal file
2
spec/fixtures/sample/public/stylesheets/static.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
body {
|
||||
font-size: 12px; }
|
1
spec/fixtures/sample/views/_partial.haml
vendored
Normal file
1
spec/fixtures/sample/views/_partial.haml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
%p Test
|
1
spec/fixtures/sample/views/index.html.haml
vendored
Normal file
1
spec/fixtures/sample/views/index.html.haml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
%h1 Welcome
|
7
spec/fixtures/sample/views/inline-js.html.haml
vendored
Normal file
7
spec/fixtures/sample/views/inline-js.html.haml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
:javascript
|
||||
;(function() {
|
||||
this;
|
||||
should();
|
||||
all.be();
|
||||
on = { one: line };
|
||||
});
|
1
spec/fixtures/sample/views/javascripts/empty-with-include.js
vendored
Normal file
1
spec/fixtures/sample/views/javascripts/empty-with-include.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
//= require <to-be-included>
|
6
spec/fixtures/sample/views/layout.haml
vendored
Normal file
6
spec/fixtures/sample/views/layout.haml
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
%html
|
||||
%head
|
||||
%link{ :href => "/stylesheets/site.css", :rel => "stylesheet", :type => "text/css" }
|
||||
%title My Sample Site
|
||||
%body
|
||||
= yield
|
1
spec/fixtures/sample/views/maruku.html.maruku
vendored
Normal file
1
spec/fixtures/sample/views/maruku.html.maruku
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
# Hello Maruku {.header}
|
1
spec/fixtures/sample/views/services/index.html.haml
vendored
Normal file
1
spec/fixtures/sample/views/services/index.html.haml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
%h2 Services
|
1
spec/fixtures/sample/views/stylesheets/site.css.sass
vendored
Normal file
1
spec/fixtures/sample/views/stylesheets/site.css.sass
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
@import compass/reset.sass
|
Loading…
Add table
Add a link
Reference in a new issue