middleman 2.0.9.pre-x86-mswin32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/.gemtest +0 -0
  2. data/.gitignore +13 -0
  3. data/.travis.yml +4 -0
  4. data/CHANGELOG +47 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE +20 -0
  7. data/README.md +19 -0
  8. data/Rakefile +15 -0
  9. data/bin/middleman +73 -0
  10. data/bin/mm-build +9 -0
  11. data/bin/mm-init +9 -0
  12. data/bin/mm-server +9 -0
  13. data/features/asset_host.feature +14 -0
  14. data/features/automatic_image_sizes.feature +16 -0
  15. data/features/builder.feature +23 -0
  16. data/features/cache_buster.feature +26 -0
  17. data/features/coffee-script.feature +17 -0
  18. data/features/data.feature +12 -0
  19. data/features/directory_index.feature +29 -0
  20. data/features/dynamic_pages.feature +33 -0
  21. data/features/front-matter.feature +7 -0
  22. data/features/generator.feature +8 -0
  23. data/features/helpers_auto_javascript_include_tag.feature +27 -0
  24. data/features/helpers_auto_stylesheet_link_tag.feature +27 -0
  25. data/features/helpers_page_classes.feature +17 -0
  26. data/features/liquid.feature +6 -0
  27. data/features/markdown.feature +7 -0
  28. data/features/minify_css.feature +24 -0
  29. data/features/minify_javascript.feature +23 -0
  30. data/features/padrino_helpers.feature +10 -0
  31. data/features/page_alias_and_layouts.feature +44 -0
  32. data/features/relative_assets.feature +44 -0
  33. data/features/scss-support.feature +12 -0
  34. data/features/sinatra.feature +6 -0
  35. data/features/slim.feature +7 -0
  36. data/features/sprockets.feature +21 -0
  37. data/features/sprockets_gems.feature +7 -0
  38. data/features/step_definitions/asset_host_steps.rb +8 -0
  39. data/features/step_definitions/builder_steps.rb +40 -0
  40. data/features/step_definitions/generator_steps.rb +30 -0
  41. data/features/step_definitions/middleman_steps.rb +46 -0
  42. data/features/step_definitions/page_layout_steps.rb +13 -0
  43. data/features/support/env.rb +3 -0
  44. data/features/tiny_src.feature +15 -0
  45. data/fixtures/indexable-app/config.rb +2 -0
  46. data/fixtures/indexable-app/source/a_folder/needs_index.html +1 -0
  47. data/fixtures/indexable-app/source/leave_me_alone.html +1 -0
  48. data/fixtures/indexable-app/source/needs_index.html +1 -0
  49. data/fixtures/indexable-app/source/regular/index.html +1 -0
  50. data/fixtures/relative-app/config.rb +0 -0
  51. data/fixtures/relative-app/source/images/blank.gif +0 -0
  52. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +3 -0
  53. data/fixtures/sprockets-app/config.rb +1 -0
  54. data/fixtures/sprockets-app/source/jquery_include.js +1 -0
  55. data/fixtures/sprockets-app/source/library/javascripts/sprockets_base.js +5 -0
  56. data/fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js +3 -0
  57. data/fixtures/test-app/config.rb +51 -0
  58. data/fixtures/test-app/data/test.yml +4 -0
  59. data/fixtures/test-app/source/_liquid_partial.liquid +1 -0
  60. data/fixtures/test-app/source/_partial.haml +1 -0
  61. data/fixtures/test-app/source/a_folder/needs_index.html +1 -0
  62. data/fixtures/test-app/source/asset_host.html.haml +1 -0
  63. data/fixtures/test-app/source/auto-css.html.haml +1 -0
  64. data/fixtures/test-app/source/auto-css/auto-css.html.haml +1 -0
  65. data/fixtures/test-app/source/auto-css/index.html.haml +1 -0
  66. data/fixtures/test-app/source/auto-css/sub/auto-css.html.haml +1 -0
  67. data/fixtures/test-app/source/auto-image-sizes.html.haml +1 -0
  68. data/fixtures/test-app/source/auto-js.html.haml +1 -0
  69. data/fixtures/test-app/source/auto-js/auto-js.html.haml +1 -0
  70. data/fixtures/test-app/source/auto-js/index.html.haml +1 -0
  71. data/fixtures/test-app/source/auto-js/sub/auto-js.html.haml +1 -0
  72. data/fixtures/test-app/source/cache-buster.html.haml +2 -0
  73. data/fixtures/test-app/source/custom-layout-dir/index.html.haml +1 -0
  74. data/fixtures/test-app/source/custom-layout.html.haml +1 -0
  75. data/fixtures/test-app/source/data.html.erb +1 -0
  76. data/fixtures/test-app/source/data2.html.liquid +2 -0
  77. data/fixtures/test-app/source/front-matter.html.erb +6 -0
  78. data/fixtures/test-app/source/images/Child folder/regular_file(example).txt +1 -0
  79. data/fixtures/test-app/source/images/Read me (example).txt +1 -0
  80. data/fixtures/test-app/source/images/blank.gif +0 -0
  81. data/fixtures/test-app/source/img/blank.gif +0 -0
  82. data/fixtures/test-app/source/index.html.haml +6 -0
  83. data/fixtures/test-app/source/inline-coffeescript.html.haml +3 -0
  84. data/fixtures/test-app/source/inline-css.html.haml +4 -0
  85. data/fixtures/test-app/source/inline-js.html.haml +7 -0
  86. data/fixtures/test-app/source/javascripts/auto-js.js +1 -0
  87. data/fixtures/test-app/source/javascripts/auto-js/auto-js.js +1 -0
  88. data/fixtures/test-app/source/javascripts/auto-js/index.js +1 -0
  89. data/fixtures/test-app/source/javascripts/auto-js/sub/auto-js.js +1 -0
  90. data/fixtures/test-app/source/javascripts/broken-coffee.js.coffee +3 -0
  91. data/fixtures/test-app/source/javascripts/coffee_test.js.coffee +3 -0
  92. data/fixtures/test-app/source/javascripts/jquery.plugin.with.dots.js +1 -0
  93. data/fixtures/test-app/source/javascripts/jquery_base.js +5 -0
  94. data/fixtures/test-app/source/javascripts/multiple_engines.js.coffee.erb +1 -0
  95. data/fixtures/test-app/source/javascripts/sprockets_base.js +5 -0
  96. data/fixtures/test-app/source/javascripts/sprockets_sub.js +3 -0
  97. data/fixtures/test-app/source/layout.haml +6 -0
  98. data/fixtures/test-app/source/layouts/custom.haml +5 -0
  99. data/fixtures/test-app/source/liquid_master.html.liquid +1 -0
  100. data/fixtures/test-app/source/markdown.html.markdown +1 -0
  101. data/fixtures/test-app/source/needs_index.html +1 -0
  102. data/fixtures/test-app/source/padrino_test.html.haml +5 -0
  103. data/fixtures/test-app/source/page-classes.html.haml +1 -0
  104. data/fixtures/test-app/source/real.html +1 -0
  105. data/fixtures/test-app/source/real/index.html.erb +5 -0
  106. data/fixtures/test-app/source/relative_image.html.erb +1 -0
  107. data/fixtures/test-app/source/services/index.html.haml +1 -0
  108. data/fixtures/test-app/source/should_be_ignored.html +1 -0
  109. data/fixtures/test-app/source/should_be_ignored2.html +1 -0
  110. data/fixtures/test-app/source/should_be_ignored3.html +1 -0
  111. data/fixtures/test-app/source/slim.html.slim +7 -0
  112. data/fixtures/test-app/source/spaces in file.html.erb +1 -0
  113. data/fixtures/test-app/source/static.html +1 -0
  114. data/fixtures/test-app/source/stylesheets/asset_host.css.sass +3 -0
  115. data/fixtures/test-app/source/stylesheets/auto-css.css +3 -0
  116. data/fixtures/test-app/source/stylesheets/auto-css/auto-css.css +3 -0
  117. data/fixtures/test-app/source/stylesheets/auto-css/index.css +0 -0
  118. data/fixtures/test-app/source/stylesheets/auto-css/sub/auto-css.css +3 -0
  119. data/fixtures/test-app/source/stylesheets/layout.css.sass +2 -0
  120. data/fixtures/test-app/source/stylesheets/relative_assets.css.sass +3 -0
  121. data/fixtures/test-app/source/stylesheets/site.css.sass +1 -0
  122. data/fixtures/test-app/source/stylesheets/site_scss.css.scss +1 -0
  123. data/fixtures/test-app/source/stylesheets/static.css +2 -0
  124. data/fixtures/test-app/source/sub1/page-classes.html.haml +1 -0
  125. data/fixtures/test-app/source/sub1/sub2/page-classes.html.haml +1 -0
  126. data/fixtures/test-app/source/tiny_src.html.haml +1 -0
  127. data/lib/middleman.rb +202 -0
  128. data/lib/middleman/base.rb +198 -0
  129. data/lib/middleman/builder.rb +163 -0
  130. data/lib/middleman/cli.rb +87 -0
  131. data/lib/middleman/config.ru +2 -0
  132. data/lib/middleman/core_extensions/assets.rb +57 -0
  133. data/lib/middleman/core_extensions/builder.rb +41 -0
  134. data/lib/middleman/core_extensions/compass.rb +102 -0
  135. data/lib/middleman/core_extensions/data.rb +120 -0
  136. data/lib/middleman/core_extensions/default_helpers.rb +77 -0
  137. data/lib/middleman/core_extensions/features.rb +102 -0
  138. data/lib/middleman/core_extensions/front_matter.rb +116 -0
  139. data/lib/middleman/core_extensions/rack_map.rb +35 -0
  140. data/lib/middleman/core_extensions/rendering.rb +19 -0
  141. data/lib/middleman/core_extensions/routing.rb +87 -0
  142. data/lib/middleman/core_extensions/sprockets.rb +102 -0
  143. data/lib/middleman/features/asset_host.rb +22 -0
  144. data/lib/middleman/features/automatic_image_sizes.rb +31 -0
  145. data/lib/middleman/features/automatic_image_sizes/fastimage.rb +287 -0
  146. data/lib/middleman/features/cache_buster.rb +42 -0
  147. data/lib/middleman/features/directory_indexes.rb +56 -0
  148. data/lib/middleman/features/lorem.rb +126 -0
  149. data/lib/middleman/features/minify_css.rb +10 -0
  150. data/lib/middleman/features/minify_javascript.rb +43 -0
  151. data/lib/middleman/features/relative_assets.rb +38 -0
  152. data/lib/middleman/features/tiny_src.rb +11 -0
  153. data/lib/middleman/guard.rb +71 -0
  154. data/lib/middleman/renderers/coffee_script.rb +8 -0
  155. data/lib/middleman/renderers/haml.rb +31 -0
  156. data/lib/middleman/renderers/liquid.rb +29 -0
  157. data/lib/middleman/renderers/markdown.rb +34 -0
  158. data/lib/middleman/renderers/sass.rb +63 -0
  159. data/lib/middleman/renderers/slim.rb +8 -0
  160. data/lib/middleman/templates.rb +53 -0
  161. data/lib/middleman/templates/default.rb +17 -0
  162. data/lib/middleman/templates/default/source/index.html.erb +5 -0
  163. data/lib/middleman/templates/default/source/layout.erb +19 -0
  164. data/lib/middleman/templates/default/source/stylesheets/site.css.scss +32 -0
  165. data/lib/middleman/templates/html5.rb +16 -0
  166. data/lib/middleman/templates/html5/source/404.html +38 -0
  167. data/lib/middleman/templates/html5/source/README.md +388 -0
  168. data/lib/middleman/templates/html5/source/apple-touch-icon-114x114-precomposed.png +0 -0
  169. data/lib/middleman/templates/html5/source/apple-touch-icon-57x57-precomposed.png +0 -0
  170. data/lib/middleman/templates/html5/source/apple-touch-icon-72x72-precomposed.png +0 -0
  171. data/lib/middleman/templates/html5/source/apple-touch-icon-precomposed.png +0 -0
  172. data/lib/middleman/templates/html5/source/apple-touch-icon.png +0 -0
  173. data/lib/middleman/templates/html5/source/crossdomain.xml +25 -0
  174. data/lib/middleman/templates/html5/source/css/style.css +293 -0
  175. data/lib/middleman/templates/html5/source/favicon.ico +0 -0
  176. data/lib/middleman/templates/html5/source/humans.txt +43 -0
  177. data/lib/middleman/templates/html5/source/img/.gitignore +2 -0
  178. data/lib/middleman/templates/html5/source/index.html +79 -0
  179. data/lib/middleman/templates/html5/source/js/libs/jquery-1.6.2.js +8981 -0
  180. data/lib/middleman/templates/html5/source/js/libs/jquery-1.6.2.min.js +18 -0
  181. data/lib/middleman/templates/html5/source/js/libs/modernizr-2.0.6.min.js +4 -0
  182. data/lib/middleman/templates/html5/source/js/mylibs/.gitignore +2 -0
  183. data/lib/middleman/templates/html5/source/js/plugins.js +20 -0
  184. data/lib/middleman/templates/html5/source/js/script.js +8 -0
  185. data/lib/middleman/templates/html5/source/robots.txt +5 -0
  186. data/lib/middleman/templates/html5/source/test/index.html +31 -0
  187. data/lib/middleman/templates/html5/source/test/qunit/qunit.css +148 -0
  188. data/lib/middleman/templates/html5/source/test/qunit/qunit.js +1265 -0
  189. data/lib/middleman/templates/html5/source/test/tests.js +24 -0
  190. data/lib/middleman/templates/local.rb +20 -0
  191. data/lib/middleman/templates/shared/Gemfile.tt +3 -0
  192. data/lib/middleman/templates/shared/config.ru +4 -0
  193. data/lib/middleman/templates/shared/config.tt +104 -0
  194. data/lib/middleman/version.rb +3 -0
  195. data/middleman.gemspec +79 -0
  196. metadata +826 -0
@@ -0,0 +1,24 @@
1
+
2
+ // documentation on writing tests here: http://docs.jquery.com/QUnit
3
+ // example tests: https://github.com/jquery/qunit/blob/master/test/same.js
4
+
5
+ // below are some general tests but feel free to delete them.
6
+
7
+ module("example tests");
8
+ test("HTML5 Boilerplate is sweet",function(){
9
+ expect(1);
10
+ equals("boilerplate".replace("boilerplate","sweet"),"sweet","Yes. HTML5 Boilerplate is, in fact, sweet");
11
+
12
+ })
13
+
14
+ // these test things from plugins.js
15
+ test("Environment is good",function(){
16
+ expect(3);
17
+ ok( !!window.log, "log function present");
18
+
19
+ var history = log.history && log.history.length || 0;
20
+ log("logging from the test suite.")
21
+ equals( log.history.length - history, 1, "log history keeps track" )
22
+
23
+ ok( !!window.Modernizr, "Modernizr global is present")
24
+ })
@@ -0,0 +1,20 @@
1
+ module Middleman
2
+ def self.templates_path
3
+ File.join(File.expand_path("~/"), ".middleman")
4
+ end
5
+ end
6
+
7
+ class Middleman::Templates::Local < Middleman::Templates::Base
8
+ def self.source_root
9
+ Middleman.templates_path
10
+ end
11
+
12
+ def build_scaffold
13
+ directory options[:template].to_s, location
14
+ end
15
+ end
16
+
17
+ Dir[File.join(Middleman.templates_path, "*")].each do |dir|
18
+ next unless File.directory?(dir)
19
+ Middleman::Templates.register(File.basename(dir).to_sym, Middleman::Templates::Local)
20
+ end
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "middleman", "~><%= Middleman::VERSION %>"
@@ -0,0 +1,4 @@
1
+ require 'rubygems'
2
+ require 'middleman'
3
+
4
+ run Middleman.server
@@ -0,0 +1,104 @@
1
+ ###
2
+ # Compass
3
+ ###
4
+
5
+ # Susy grids in Compass
6
+ # First: gem install compass-susy-plugin
7
+ # require 'susy'
8
+
9
+ # Change Compass configuration
10
+ # compass_config do |config|
11
+ # config.output_style = :compact
12
+ # end
13
+
14
+ ###
15
+ # Haml
16
+ ###
17
+
18
+ # CodeRay syntax highlighting in Haml
19
+ # First: gem install haml-coderay
20
+ # require 'haml-coderay'
21
+
22
+ # CoffeeScript filters in Haml
23
+ # First: gem install coffee-filter
24
+ # require 'coffee-filter'
25
+
26
+ # Automatic image dimensions on image_tag helper
27
+ # activate :automatic_image_sizes
28
+
29
+ ###
30
+ # Page command
31
+ ###
32
+
33
+ # Per-page layout changes:
34
+ #
35
+ # With no layout
36
+ # page "/path/to/file.html", :layout => false
37
+ #
38
+ # With alternative layout
39
+ # page "/path/to/file.html", :layout => :otherlayout
40
+ #
41
+ # A path which all have the same layout
42
+ # with_layout :admin do
43
+ # page "/admin/*"
44
+ # end
45
+
46
+ # Proxy (fake) files
47
+ # page "/this-page-has-no-template.html", :proxy => "/template-file.html" do
48
+ # @which_fake_page = "Rendering a fake page with a variable"
49
+ # end
50
+
51
+ ###
52
+ # Helpers
53
+ ###
54
+
55
+ # Methods defined in the helpers block are available in templates
56
+ # helpers do
57
+ # def some_helper
58
+ # "Helping"
59
+ # end
60
+ # end
61
+
62
+ <% if options[:css_dir] != "stylesheets" -%>
63
+ set :css_dir, "<%= options[:css_dir] -%>"
64
+ <% else -%>
65
+ # Change the CSS directory
66
+ # set :css_dir, "alternative_css_directory"
67
+ <% end -%>
68
+
69
+ <% if options[:js_dir] != "javascripts" -%>
70
+ set :js_dir, "<%= options[:js_dir] -%>"
71
+ <% else -%>
72
+ # Change the JS directory
73
+ # set :js_dir, "alternative_js_directory"
74
+ <% end -%>
75
+
76
+ <% if options[:images_dir] != "images" -%>
77
+ set :images_dir, "<%= options[:images_dir] -%>"
78
+ <% else -%>
79
+ # Change the images directory
80
+ # set :images_dir, "alternative_image_directory"
81
+ <% end -%>
82
+
83
+ # Build-specific configuration
84
+ configure :build do
85
+ # For example, change the Compass output style for deployment
86
+ # activate :minify_css
87
+
88
+ # Minify Javascript on build
89
+ # activate :minify_javascript
90
+
91
+ # Enable cache buster
92
+ # activate :cache_buster
93
+
94
+ # Use relative URLs
95
+ # activate :relative_assets
96
+
97
+ # Compress PNGs after build
98
+ # First: gem install middleman-smusher
99
+ # require "middleman-smusher"
100
+ # activate :smusher
101
+
102
+ # Or use a different image path
103
+ # set :http_path, "/Content/images/"
104
+ end
@@ -0,0 +1,3 @@
1
+ module Middleman
2
+ VERSION = "2.0.9.pre"
3
+ end
@@ -0,0 +1,79 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require "rbconfig"
3
+
4
+ $:.push File.expand_path("../lib", __FILE__)
5
+ require "middleman/version"
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "middleman"
9
+ s.version = Middleman::VERSION
10
+ s.platform = Gem::Platform::RUBY
11
+ s.license = "MIT"
12
+ s.authors = ["Thomas Reynolds"]
13
+ s.email = ["me@tdreyno.com"]
14
+ s.homepage = "http://middlemanapp.com"
15
+ s.summary = "Hand-crafted frontend development"
16
+ s.description = "A static site generator based on Sinatra. Providing dozens of templating languages (Haml, Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle."
17
+
18
+ s.files = `git ls-files`.split("\n")
19
+ s.test_files = `git ls-files -- {fixtures,features}/*`.split("\n")
20
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
+ s.require_paths = ["lib"]
22
+
23
+ # TODO remove for 2.1.x
24
+ s.post_install_message =<<eos
25
+ ********************************************************************************
26
+
27
+ Welcome to Middleman 2.0
28
+
29
+ In addition to many new features, some backwards-incompatible
30
+ changes have been made to the structure of Middleman sites.
31
+
32
+ Before running you old, v1.x project on Middleman 2.0,
33
+ review the Migration guide:
34
+
35
+ http://middlemanapp.com/guides/migrating
36
+
37
+ ********************************************************************************
38
+ eos
39
+
40
+ s.add_dependency("rack", ["~> 1.3.0"])
41
+ s.add_dependency("thin", ["~> 1.2.11"])
42
+ s.add_dependency("thor", ["~> 0.14.0"])
43
+ s.add_dependency("tilt", ["~> 1.3.1"])
44
+ s.add_dependency("maruku", ["~> 0.6.0"])
45
+ s.add_dependency("sinatra", ["~> 1.2.6"])
46
+ s.add_dependency("rack-test", ["~> 0.6.1"])
47
+ s.add_dependency("uglifier", ["~> 1.0.0"])
48
+ s.add_dependency("slim", ["~> 1.0.1"])
49
+ s.add_dependency("haml", ["~> 3.1.0"])
50
+ s.add_dependency("sass", ["~> 3.1.7"])
51
+ s.add_dependency("compass", ["~> 0.11.3"])
52
+ s.add_dependency("coffee-script", ["~> 2.2.0"])
53
+ s.add_dependency("sprockets", ["~> 2.0.0"])
54
+ s.add_dependency("padrino-core", ["~> 0.10.2"])
55
+ s.add_dependency("padrino-helpers", ["~> 0.10.2"])
56
+
57
+ # case s.platform.to_s
58
+ # when %r{mswin|mingw}
59
+ # s.add_dependency("eventmachine", ["1.0.0.beta.3"])
60
+ # s.add_dependency("win32-process", ["~> 0.6.5"])
61
+ # s.add_dependency("win32console", ["~> 1.3.0"])
62
+ # s.add_dependency("rb-fchange")
63
+ # else
64
+ s.add_dependency("rb-fsevent", ["~> 0.4.2"])
65
+ s.add_dependency("therubyracer", ["~> 0.9.4"])
66
+ # end
67
+
68
+ s.add_dependency("guard", ["~> 0.6.2"])
69
+ s.add_dependency("middleman-livereload", ["~> 0.2.0"])
70
+
71
+ # Development and test
72
+ # s.add_development_dependency("jquery-rails")
73
+ s.add_development_dependency("coffee-filter", ["~> 0.1.1"])
74
+ s.add_development_dependency("liquid", ["~> 2.2.0"])
75
+ s.add_development_dependency("cucumber", ["~> 1.0.2"])
76
+ s.add_development_dependency("rake", ["0.8.7"])
77
+ s.add_development_dependency("rspec", ["~> 2.6.0"])
78
+ end
79
+
metadata ADDED
@@ -0,0 +1,826 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: middleman
3
+ version: !ruby/object:Gem::Version
4
+ hash: 961915968
5
+ prerelease: 6
6
+ segments:
7
+ - 2
8
+ - 0
9
+ - 9
10
+ - pre
11
+ version: 2.0.9.pre
12
+ platform: x86-mswin32
13
+ authors:
14
+ - Thomas Reynolds
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-09-09 00:00:00 -07:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 27
29
+ segments:
30
+ - 1
31
+ - 3
32
+ - 0
33
+ version: 1.3.0
34
+ version_requirements: *id001
35
+ name: rack
36
+ prerelease: false
37
+ type: :runtime
38
+ - !ruby/object:Gem::Dependency
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 9
45
+ segments:
46
+ - 1
47
+ - 2
48
+ - 11
49
+ version: 1.2.11
50
+ version_requirements: *id002
51
+ name: thin
52
+ prerelease: false
53
+ type: :runtime
54
+ - !ruby/object:Gem::Dependency
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ hash: 39
61
+ segments:
62
+ - 0
63
+ - 14
64
+ - 0
65
+ version: 0.14.0
66
+ version_requirements: *id003
67
+ name: thor
68
+ prerelease: false
69
+ type: :runtime
70
+ - !ruby/object:Gem::Dependency
71
+ requirement: &id004 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ hash: 25
77
+ segments:
78
+ - 1
79
+ - 3
80
+ - 1
81
+ version: 1.3.1
82
+ version_requirements: *id004
83
+ name: tilt
84
+ prerelease: false
85
+ type: :runtime
86
+ - !ruby/object:Gem::Dependency
87
+ requirement: &id005 !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ~>
91
+ - !ruby/object:Gem::Version
92
+ hash: 7
93
+ segments:
94
+ - 0
95
+ - 6
96
+ - 0
97
+ version: 0.6.0
98
+ version_requirements: *id005
99
+ name: maruku
100
+ prerelease: false
101
+ type: :runtime
102
+ - !ruby/object:Gem::Dependency
103
+ requirement: &id006 !ruby/object:Gem::Requirement
104
+ none: false
105
+ requirements:
106
+ - - ~>
107
+ - !ruby/object:Gem::Version
108
+ hash: 19
109
+ segments:
110
+ - 1
111
+ - 2
112
+ - 6
113
+ version: 1.2.6
114
+ version_requirements: *id006
115
+ name: sinatra
116
+ prerelease: false
117
+ type: :runtime
118
+ - !ruby/object:Gem::Dependency
119
+ requirement: &id007 !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ hash: 5
125
+ segments:
126
+ - 0
127
+ - 6
128
+ - 1
129
+ version: 0.6.1
130
+ version_requirements: *id007
131
+ name: rack-test
132
+ prerelease: false
133
+ type: :runtime
134
+ - !ruby/object:Gem::Dependency
135
+ requirement: &id008 !ruby/object:Gem::Requirement
136
+ none: false
137
+ requirements:
138
+ - - ~>
139
+ - !ruby/object:Gem::Version
140
+ hash: 23
141
+ segments:
142
+ - 1
143
+ - 0
144
+ - 0
145
+ version: 1.0.0
146
+ version_requirements: *id008
147
+ name: uglifier
148
+ prerelease: false
149
+ type: :runtime
150
+ - !ruby/object:Gem::Dependency
151
+ requirement: &id009 !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - ~>
155
+ - !ruby/object:Gem::Version
156
+ hash: 21
157
+ segments:
158
+ - 1
159
+ - 0
160
+ - 1
161
+ version: 1.0.1
162
+ version_requirements: *id009
163
+ name: slim
164
+ prerelease: false
165
+ type: :runtime
166
+ - !ruby/object:Gem::Dependency
167
+ requirement: &id010 !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - ~>
171
+ - !ruby/object:Gem::Version
172
+ hash: 3
173
+ segments:
174
+ - 3
175
+ - 1
176
+ - 0
177
+ version: 3.1.0
178
+ version_requirements: *id010
179
+ name: haml
180
+ prerelease: false
181
+ type: :runtime
182
+ - !ruby/object:Gem::Dependency
183
+ requirement: &id011 !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - ~>
187
+ - !ruby/object:Gem::Version
188
+ hash: 13
189
+ segments:
190
+ - 3
191
+ - 1
192
+ - 7
193
+ version: 3.1.7
194
+ version_requirements: *id011
195
+ name: sass
196
+ prerelease: false
197
+ type: :runtime
198
+ - !ruby/object:Gem::Dependency
199
+ requirement: &id012 !ruby/object:Gem::Requirement
200
+ none: false
201
+ requirements:
202
+ - - ~>
203
+ - !ruby/object:Gem::Version
204
+ hash: 53
205
+ segments:
206
+ - 0
207
+ - 11
208
+ - 3
209
+ version: 0.11.3
210
+ version_requirements: *id012
211
+ name: compass
212
+ prerelease: false
213
+ type: :runtime
214
+ - !ruby/object:Gem::Dependency
215
+ requirement: &id013 !ruby/object:Gem::Requirement
216
+ none: false
217
+ requirements:
218
+ - - ~>
219
+ - !ruby/object:Gem::Version
220
+ hash: 7
221
+ segments:
222
+ - 2
223
+ - 2
224
+ - 0
225
+ version: 2.2.0
226
+ version_requirements: *id013
227
+ name: coffee-script
228
+ prerelease: false
229
+ type: :runtime
230
+ - !ruby/object:Gem::Dependency
231
+ requirement: &id014 !ruby/object:Gem::Requirement
232
+ none: false
233
+ requirements:
234
+ - - ~>
235
+ - !ruby/object:Gem::Version
236
+ hash: 15
237
+ segments:
238
+ - 2
239
+ - 0
240
+ - 0
241
+ version: 2.0.0
242
+ version_requirements: *id014
243
+ name: sprockets
244
+ prerelease: false
245
+ type: :runtime
246
+ - !ruby/object:Gem::Dependency
247
+ requirement: &id015 !ruby/object:Gem::Requirement
248
+ none: false
249
+ requirements:
250
+ - - ~>
251
+ - !ruby/object:Gem::Version
252
+ hash: 51
253
+ segments:
254
+ - 0
255
+ - 10
256
+ - 2
257
+ version: 0.10.2
258
+ version_requirements: *id015
259
+ name: padrino-core
260
+ prerelease: false
261
+ type: :runtime
262
+ - !ruby/object:Gem::Dependency
263
+ requirement: &id016 !ruby/object:Gem::Requirement
264
+ none: false
265
+ requirements:
266
+ - - ~>
267
+ - !ruby/object:Gem::Version
268
+ hash: 51
269
+ segments:
270
+ - 0
271
+ - 10
272
+ - 2
273
+ version: 0.10.2
274
+ version_requirements: *id016
275
+ name: padrino-helpers
276
+ prerelease: false
277
+ type: :runtime
278
+ - !ruby/object:Gem::Dependency
279
+ requirement: &id017 !ruby/object:Gem::Requirement
280
+ none: false
281
+ requirements:
282
+ - - "="
283
+ - !ruby/object:Gem::Version
284
+ hash: 62196357
285
+ segments:
286
+ - 1
287
+ - 0
288
+ - 0
289
+ - beta
290
+ - 3
291
+ version: 1.0.0.beta.3
292
+ version_requirements: *id017
293
+ name: eventmachine
294
+ prerelease: false
295
+ type: :runtime
296
+ - !ruby/object:Gem::Dependency
297
+ requirement: &id018 !ruby/object:Gem::Requirement
298
+ none: false
299
+ requirements:
300
+ - - ~>
301
+ - !ruby/object:Gem::Version
302
+ hash: 13
303
+ segments:
304
+ - 0
305
+ - 6
306
+ - 5
307
+ version: 0.6.5
308
+ version_requirements: *id018
309
+ name: win32-process
310
+ prerelease: false
311
+ type: :runtime
312
+ - !ruby/object:Gem::Dependency
313
+ requirement: &id019 !ruby/object:Gem::Requirement
314
+ none: false
315
+ requirements:
316
+ - - ~>
317
+ - !ruby/object:Gem::Version
318
+ hash: 27
319
+ segments:
320
+ - 1
321
+ - 3
322
+ - 0
323
+ version: 1.3.0
324
+ version_requirements: *id019
325
+ name: win32console
326
+ prerelease: false
327
+ type: :runtime
328
+ - !ruby/object:Gem::Dependency
329
+ requirement: &id020 !ruby/object:Gem::Requirement
330
+ none: false
331
+ requirements:
332
+ - - ">="
333
+ - !ruby/object:Gem::Version
334
+ hash: 3
335
+ segments:
336
+ - 0
337
+ version: "0"
338
+ version_requirements: *id020
339
+ name: rb-fchange
340
+ prerelease: false
341
+ type: :runtime
342
+ - !ruby/object:Gem::Dependency
343
+ requirement: &id021 !ruby/object:Gem::Requirement
344
+ none: false
345
+ requirements:
346
+ - - ~>
347
+ - !ruby/object:Gem::Version
348
+ hash: 3
349
+ segments:
350
+ - 0
351
+ - 6
352
+ - 2
353
+ version: 0.6.2
354
+ version_requirements: *id021
355
+ name: guard
356
+ prerelease: false
357
+ type: :runtime
358
+ - !ruby/object:Gem::Dependency
359
+ requirement: &id022 !ruby/object:Gem::Requirement
360
+ none: false
361
+ requirements:
362
+ - - ~>
363
+ - !ruby/object:Gem::Version
364
+ hash: 23
365
+ segments:
366
+ - 0
367
+ - 2
368
+ - 0
369
+ version: 0.2.0
370
+ version_requirements: *id022
371
+ name: middleman-livereload
372
+ prerelease: false
373
+ type: :runtime
374
+ - !ruby/object:Gem::Dependency
375
+ requirement: &id023 !ruby/object:Gem::Requirement
376
+ none: false
377
+ requirements:
378
+ - - ~>
379
+ - !ruby/object:Gem::Version
380
+ hash: 25
381
+ segments:
382
+ - 0
383
+ - 1
384
+ - 1
385
+ version: 0.1.1
386
+ version_requirements: *id023
387
+ name: coffee-filter
388
+ prerelease: false
389
+ type: :development
390
+ - !ruby/object:Gem::Dependency
391
+ requirement: &id024 !ruby/object:Gem::Requirement
392
+ none: false
393
+ requirements:
394
+ - - ~>
395
+ - !ruby/object:Gem::Version
396
+ hash: 7
397
+ segments:
398
+ - 2
399
+ - 2
400
+ - 0
401
+ version: 2.2.0
402
+ version_requirements: *id024
403
+ name: liquid
404
+ prerelease: false
405
+ type: :development
406
+ - !ruby/object:Gem::Dependency
407
+ requirement: &id025 !ruby/object:Gem::Requirement
408
+ none: false
409
+ requirements:
410
+ - - ~>
411
+ - !ruby/object:Gem::Version
412
+ hash: 19
413
+ segments:
414
+ - 1
415
+ - 0
416
+ - 2
417
+ version: 1.0.2
418
+ version_requirements: *id025
419
+ name: cucumber
420
+ prerelease: false
421
+ type: :development
422
+ - !ruby/object:Gem::Dependency
423
+ requirement: &id026 !ruby/object:Gem::Requirement
424
+ none: false
425
+ requirements:
426
+ - - "="
427
+ - !ruby/object:Gem::Version
428
+ hash: 49
429
+ segments:
430
+ - 0
431
+ - 8
432
+ - 7
433
+ version: 0.8.7
434
+ version_requirements: *id026
435
+ name: rake
436
+ prerelease: false
437
+ type: :development
438
+ - !ruby/object:Gem::Dependency
439
+ requirement: &id027 !ruby/object:Gem::Requirement
440
+ none: false
441
+ requirements:
442
+ - - ~>
443
+ - !ruby/object:Gem::Version
444
+ hash: 23
445
+ segments:
446
+ - 2
447
+ - 6
448
+ - 0
449
+ version: 2.6.0
450
+ version_requirements: *id027
451
+ name: rspec
452
+ prerelease: false
453
+ type: :development
454
+ description: A static site generator based on Sinatra. Providing dozens of templating languages (Haml, Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle.
455
+ email:
456
+ - me@tdreyno.com
457
+ executables:
458
+ - middleman
459
+ - mm-build
460
+ - mm-init
461
+ - mm-server
462
+ extensions: []
463
+
464
+ extra_rdoc_files: []
465
+
466
+ files:
467
+ - .gemtest
468
+ - .gitignore
469
+ - .travis.yml
470
+ - CHANGELOG
471
+ - Gemfile
472
+ - LICENSE
473
+ - README.md
474
+ - Rakefile
475
+ - bin/middleman
476
+ - bin/mm-build
477
+ - bin/mm-init
478
+ - bin/mm-server
479
+ - features/asset_host.feature
480
+ - features/automatic_image_sizes.feature
481
+ - features/builder.feature
482
+ - features/cache_buster.feature
483
+ - features/coffee-script.feature
484
+ - features/data.feature
485
+ - features/directory_index.feature
486
+ - features/dynamic_pages.feature
487
+ - features/front-matter.feature
488
+ - features/generator.feature
489
+ - features/helpers_auto_javascript_include_tag.feature
490
+ - features/helpers_auto_stylesheet_link_tag.feature
491
+ - features/helpers_page_classes.feature
492
+ - features/liquid.feature
493
+ - features/markdown.feature
494
+ - features/minify_css.feature
495
+ - features/minify_javascript.feature
496
+ - features/padrino_helpers.feature
497
+ - features/page_alias_and_layouts.feature
498
+ - features/relative_assets.feature
499
+ - features/scss-support.feature
500
+ - features/sinatra.feature
501
+ - features/slim.feature
502
+ - features/sprockets.feature
503
+ - features/sprockets_gems.feature
504
+ - features/step_definitions/asset_host_steps.rb
505
+ - features/step_definitions/builder_steps.rb
506
+ - features/step_definitions/generator_steps.rb
507
+ - features/step_definitions/middleman_steps.rb
508
+ - features/step_definitions/page_layout_steps.rb
509
+ - features/support/env.rb
510
+ - features/tiny_src.feature
511
+ - fixtures/indexable-app/config.rb
512
+ - fixtures/indexable-app/source/a_folder/needs_index.html
513
+ - fixtures/indexable-app/source/leave_me_alone.html
514
+ - fixtures/indexable-app/source/needs_index.html
515
+ - fixtures/indexable-app/source/regular/index.html
516
+ - fixtures/relative-app/config.rb
517
+ - fixtures/relative-app/source/images/blank.gif
518
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
519
+ - fixtures/sprockets-app/config.rb
520
+ - fixtures/sprockets-app/source/jquery_include.js
521
+ - fixtures/sprockets-app/source/library/javascripts/sprockets_base.js
522
+ - fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
523
+ - fixtures/test-app/config.rb
524
+ - fixtures/test-app/data/test.yml
525
+ - fixtures/test-app/source/_liquid_partial.liquid
526
+ - fixtures/test-app/source/_partial.haml
527
+ - fixtures/test-app/source/a_folder/needs_index.html
528
+ - fixtures/test-app/source/asset_host.html.haml
529
+ - fixtures/test-app/source/auto-css.html.haml
530
+ - fixtures/test-app/source/auto-css/auto-css.html.haml
531
+ - fixtures/test-app/source/auto-css/index.html.haml
532
+ - fixtures/test-app/source/auto-css/sub/auto-css.html.haml
533
+ - fixtures/test-app/source/auto-image-sizes.html.haml
534
+ - fixtures/test-app/source/auto-js.html.haml
535
+ - fixtures/test-app/source/auto-js/auto-js.html.haml
536
+ - fixtures/test-app/source/auto-js/index.html.haml
537
+ - fixtures/test-app/source/auto-js/sub/auto-js.html.haml
538
+ - fixtures/test-app/source/cache-buster.html.haml
539
+ - fixtures/test-app/source/custom-layout-dir/index.html.haml
540
+ - fixtures/test-app/source/custom-layout.html.haml
541
+ - fixtures/test-app/source/data.html.erb
542
+ - fixtures/test-app/source/data2.html.liquid
543
+ - fixtures/test-app/source/front-matter.html.erb
544
+ - fixtures/test-app/source/images/Child folder/regular_file(example).txt
545
+ - fixtures/test-app/source/images/Read me (example).txt
546
+ - fixtures/test-app/source/images/blank.gif
547
+ - fixtures/test-app/source/img/blank.gif
548
+ - fixtures/test-app/source/index.html.haml
549
+ - fixtures/test-app/source/inline-coffeescript.html.haml
550
+ - fixtures/test-app/source/inline-css.html.haml
551
+ - fixtures/test-app/source/inline-js.html.haml
552
+ - fixtures/test-app/source/javascripts/auto-js.js
553
+ - fixtures/test-app/source/javascripts/auto-js/auto-js.js
554
+ - fixtures/test-app/source/javascripts/auto-js/index.js
555
+ - fixtures/test-app/source/javascripts/auto-js/sub/auto-js.js
556
+ - fixtures/test-app/source/javascripts/broken-coffee.js.coffee
557
+ - fixtures/test-app/source/javascripts/coffee_test.js.coffee
558
+ - fixtures/test-app/source/javascripts/jquery.plugin.with.dots.js
559
+ - fixtures/test-app/source/javascripts/jquery_base.js
560
+ - fixtures/test-app/source/javascripts/multiple_engines.js.coffee.erb
561
+ - fixtures/test-app/source/javascripts/sprockets_base.js
562
+ - fixtures/test-app/source/javascripts/sprockets_sub.js
563
+ - fixtures/test-app/source/layout.haml
564
+ - fixtures/test-app/source/layouts/custom.haml
565
+ - fixtures/test-app/source/liquid_master.html.liquid
566
+ - fixtures/test-app/source/markdown.html.markdown
567
+ - fixtures/test-app/source/needs_index.html
568
+ - fixtures/test-app/source/padrino_test.html.haml
569
+ - fixtures/test-app/source/page-classes.html.haml
570
+ - fixtures/test-app/source/real.html
571
+ - fixtures/test-app/source/real/index.html.erb
572
+ - fixtures/test-app/source/relative_image.html.erb
573
+ - fixtures/test-app/source/services/index.html.haml
574
+ - fixtures/test-app/source/should_be_ignored.html
575
+ - fixtures/test-app/source/should_be_ignored2.html
576
+ - fixtures/test-app/source/should_be_ignored3.html
577
+ - fixtures/test-app/source/slim.html.slim
578
+ - fixtures/test-app/source/spaces in file.html.erb
579
+ - fixtures/test-app/source/static.html
580
+ - fixtures/test-app/source/stylesheets/asset_host.css.sass
581
+ - fixtures/test-app/source/stylesheets/auto-css.css
582
+ - fixtures/test-app/source/stylesheets/auto-css/auto-css.css
583
+ - fixtures/test-app/source/stylesheets/auto-css/index.css
584
+ - fixtures/test-app/source/stylesheets/auto-css/sub/auto-css.css
585
+ - fixtures/test-app/source/stylesheets/layout.css.sass
586
+ - fixtures/test-app/source/stylesheets/relative_assets.css.sass
587
+ - fixtures/test-app/source/stylesheets/site.css.sass
588
+ - fixtures/test-app/source/stylesheets/site_scss.css.scss
589
+ - fixtures/test-app/source/stylesheets/static.css
590
+ - fixtures/test-app/source/sub1/page-classes.html.haml
591
+ - fixtures/test-app/source/sub1/sub2/page-classes.html.haml
592
+ - fixtures/test-app/source/tiny_src.html.haml
593
+ - lib/middleman.rb
594
+ - lib/middleman/base.rb
595
+ - lib/middleman/builder.rb
596
+ - lib/middleman/cli.rb
597
+ - lib/middleman/config.ru
598
+ - lib/middleman/core_extensions/assets.rb
599
+ - lib/middleman/core_extensions/builder.rb
600
+ - lib/middleman/core_extensions/compass.rb
601
+ - lib/middleman/core_extensions/data.rb
602
+ - lib/middleman/core_extensions/default_helpers.rb
603
+ - lib/middleman/core_extensions/features.rb
604
+ - lib/middleman/core_extensions/front_matter.rb
605
+ - lib/middleman/core_extensions/rack_map.rb
606
+ - lib/middleman/core_extensions/rendering.rb
607
+ - lib/middleman/core_extensions/routing.rb
608
+ - lib/middleman/core_extensions/sprockets.rb
609
+ - lib/middleman/features/asset_host.rb
610
+ - lib/middleman/features/automatic_image_sizes.rb
611
+ - lib/middleman/features/automatic_image_sizes/fastimage.rb
612
+ - lib/middleman/features/cache_buster.rb
613
+ - lib/middleman/features/directory_indexes.rb
614
+ - lib/middleman/features/lorem.rb
615
+ - lib/middleman/features/minify_css.rb
616
+ - lib/middleman/features/minify_javascript.rb
617
+ - lib/middleman/features/relative_assets.rb
618
+ - lib/middleman/features/tiny_src.rb
619
+ - lib/middleman/guard.rb
620
+ - lib/middleman/renderers/coffee_script.rb
621
+ - lib/middleman/renderers/haml.rb
622
+ - lib/middleman/renderers/liquid.rb
623
+ - lib/middleman/renderers/markdown.rb
624
+ - lib/middleman/renderers/sass.rb
625
+ - lib/middleman/renderers/slim.rb
626
+ - lib/middleman/templates.rb
627
+ - lib/middleman/templates/default.rb
628
+ - lib/middleman/templates/default/source/index.html.erb
629
+ - lib/middleman/templates/default/source/layout.erb
630
+ - lib/middleman/templates/default/source/stylesheets/site.css.scss
631
+ - lib/middleman/templates/html5.rb
632
+ - lib/middleman/templates/html5/source/404.html
633
+ - lib/middleman/templates/html5/source/README.md
634
+ - lib/middleman/templates/html5/source/apple-touch-icon-114x114-precomposed.png
635
+ - lib/middleman/templates/html5/source/apple-touch-icon-57x57-precomposed.png
636
+ - lib/middleman/templates/html5/source/apple-touch-icon-72x72-precomposed.png
637
+ - lib/middleman/templates/html5/source/apple-touch-icon-precomposed.png
638
+ - lib/middleman/templates/html5/source/apple-touch-icon.png
639
+ - lib/middleman/templates/html5/source/crossdomain.xml
640
+ - lib/middleman/templates/html5/source/css/style.css
641
+ - lib/middleman/templates/html5/source/favicon.ico
642
+ - lib/middleman/templates/html5/source/humans.txt
643
+ - lib/middleman/templates/html5/source/img/.gitignore
644
+ - lib/middleman/templates/html5/source/index.html
645
+ - lib/middleman/templates/html5/source/js/libs/jquery-1.6.2.js
646
+ - lib/middleman/templates/html5/source/js/libs/jquery-1.6.2.min.js
647
+ - lib/middleman/templates/html5/source/js/libs/modernizr-2.0.6.min.js
648
+ - lib/middleman/templates/html5/source/js/mylibs/.gitignore
649
+ - lib/middleman/templates/html5/source/js/plugins.js
650
+ - lib/middleman/templates/html5/source/js/script.js
651
+ - lib/middleman/templates/html5/source/robots.txt
652
+ - lib/middleman/templates/html5/source/test/index.html
653
+ - lib/middleman/templates/html5/source/test/qunit/qunit.css
654
+ - lib/middleman/templates/html5/source/test/qunit/qunit.js
655
+ - lib/middleman/templates/html5/source/test/tests.js
656
+ - lib/middleman/templates/local.rb
657
+ - lib/middleman/templates/shared/Gemfile.tt
658
+ - lib/middleman/templates/shared/config.ru
659
+ - lib/middleman/templates/shared/config.tt
660
+ - lib/middleman/version.rb
661
+ - middleman.gemspec
662
+ has_rdoc: true
663
+ homepage: http://middlemanapp.com
664
+ licenses:
665
+ - MIT
666
+ post_install_message: |
667
+ ********************************************************************************
668
+
669
+ Welcome to Middleman 2.0
670
+
671
+ In addition to many new features, some backwards-incompatible
672
+ changes have been made to the structure of Middleman sites.
673
+
674
+ Before running you old, v1.x project on Middleman 2.0,
675
+ review the Migration guide:
676
+
677
+ http://middlemanapp.com/guides/migrating
678
+
679
+ ********************************************************************************
680
+
681
+ rdoc_options: []
682
+
683
+ require_paths:
684
+ - lib
685
+ required_ruby_version: !ruby/object:Gem::Requirement
686
+ none: false
687
+ requirements:
688
+ - - ">="
689
+ - !ruby/object:Gem::Version
690
+ hash: 3
691
+ segments:
692
+ - 0
693
+ version: "0"
694
+ required_rubygems_version: !ruby/object:Gem::Requirement
695
+ none: false
696
+ requirements:
697
+ - - ">"
698
+ - !ruby/object:Gem::Version
699
+ hash: 25
700
+ segments:
701
+ - 1
702
+ - 3
703
+ - 1
704
+ version: 1.3.1
705
+ requirements: []
706
+
707
+ rubyforge_project:
708
+ rubygems_version: 1.6.2
709
+ signing_key:
710
+ specification_version: 3
711
+ summary: Hand-crafted frontend development
712
+ test_files:
713
+ - features/asset_host.feature
714
+ - features/automatic_image_sizes.feature
715
+ - features/builder.feature
716
+ - features/cache_buster.feature
717
+ - features/coffee-script.feature
718
+ - features/data.feature
719
+ - features/directory_index.feature
720
+ - features/dynamic_pages.feature
721
+ - features/front-matter.feature
722
+ - features/generator.feature
723
+ - features/helpers_auto_javascript_include_tag.feature
724
+ - features/helpers_auto_stylesheet_link_tag.feature
725
+ - features/helpers_page_classes.feature
726
+ - features/liquid.feature
727
+ - features/markdown.feature
728
+ - features/minify_css.feature
729
+ - features/minify_javascript.feature
730
+ - features/padrino_helpers.feature
731
+ - features/page_alias_and_layouts.feature
732
+ - features/relative_assets.feature
733
+ - features/scss-support.feature
734
+ - features/sinatra.feature
735
+ - features/slim.feature
736
+ - features/sprockets.feature
737
+ - features/sprockets_gems.feature
738
+ - features/step_definitions/asset_host_steps.rb
739
+ - features/step_definitions/builder_steps.rb
740
+ - features/step_definitions/generator_steps.rb
741
+ - features/step_definitions/middleman_steps.rb
742
+ - features/step_definitions/page_layout_steps.rb
743
+ - features/support/env.rb
744
+ - features/tiny_src.feature
745
+ - fixtures/indexable-app/config.rb
746
+ - fixtures/indexable-app/source/a_folder/needs_index.html
747
+ - fixtures/indexable-app/source/leave_me_alone.html
748
+ - fixtures/indexable-app/source/needs_index.html
749
+ - fixtures/indexable-app/source/regular/index.html
750
+ - fixtures/relative-app/config.rb
751
+ - fixtures/relative-app/source/images/blank.gif
752
+ - fixtures/relative-app/source/stylesheets/relative_assets.css.sass
753
+ - fixtures/sprockets-app/config.rb
754
+ - fixtures/sprockets-app/source/jquery_include.js
755
+ - fixtures/sprockets-app/source/library/javascripts/sprockets_base.js
756
+ - fixtures/sprockets-app/source/library/javascripts/sprockets_sub.js
757
+ - fixtures/test-app/config.rb
758
+ - fixtures/test-app/data/test.yml
759
+ - fixtures/test-app/source/_liquid_partial.liquid
760
+ - fixtures/test-app/source/_partial.haml
761
+ - fixtures/test-app/source/a_folder/needs_index.html
762
+ - fixtures/test-app/source/asset_host.html.haml
763
+ - fixtures/test-app/source/auto-css.html.haml
764
+ - fixtures/test-app/source/auto-css/auto-css.html.haml
765
+ - fixtures/test-app/source/auto-css/index.html.haml
766
+ - fixtures/test-app/source/auto-css/sub/auto-css.html.haml
767
+ - fixtures/test-app/source/auto-image-sizes.html.haml
768
+ - fixtures/test-app/source/auto-js.html.haml
769
+ - fixtures/test-app/source/auto-js/auto-js.html.haml
770
+ - fixtures/test-app/source/auto-js/index.html.haml
771
+ - fixtures/test-app/source/auto-js/sub/auto-js.html.haml
772
+ - fixtures/test-app/source/cache-buster.html.haml
773
+ - fixtures/test-app/source/custom-layout-dir/index.html.haml
774
+ - fixtures/test-app/source/custom-layout.html.haml
775
+ - fixtures/test-app/source/data.html.erb
776
+ - fixtures/test-app/source/data2.html.liquid
777
+ - fixtures/test-app/source/front-matter.html.erb
778
+ - fixtures/test-app/source/images/Child folder/regular_file(example).txt
779
+ - fixtures/test-app/source/images/Read me (example).txt
780
+ - fixtures/test-app/source/images/blank.gif
781
+ - fixtures/test-app/source/img/blank.gif
782
+ - fixtures/test-app/source/index.html.haml
783
+ - fixtures/test-app/source/inline-coffeescript.html.haml
784
+ - fixtures/test-app/source/inline-css.html.haml
785
+ - fixtures/test-app/source/inline-js.html.haml
786
+ - fixtures/test-app/source/javascripts/auto-js.js
787
+ - fixtures/test-app/source/javascripts/auto-js/auto-js.js
788
+ - fixtures/test-app/source/javascripts/auto-js/index.js
789
+ - fixtures/test-app/source/javascripts/auto-js/sub/auto-js.js
790
+ - fixtures/test-app/source/javascripts/broken-coffee.js.coffee
791
+ - fixtures/test-app/source/javascripts/coffee_test.js.coffee
792
+ - fixtures/test-app/source/javascripts/jquery.plugin.with.dots.js
793
+ - fixtures/test-app/source/javascripts/jquery_base.js
794
+ - fixtures/test-app/source/javascripts/multiple_engines.js.coffee.erb
795
+ - fixtures/test-app/source/javascripts/sprockets_base.js
796
+ - fixtures/test-app/source/javascripts/sprockets_sub.js
797
+ - fixtures/test-app/source/layout.haml
798
+ - fixtures/test-app/source/layouts/custom.haml
799
+ - fixtures/test-app/source/liquid_master.html.liquid
800
+ - fixtures/test-app/source/markdown.html.markdown
801
+ - fixtures/test-app/source/needs_index.html
802
+ - fixtures/test-app/source/padrino_test.html.haml
803
+ - fixtures/test-app/source/page-classes.html.haml
804
+ - fixtures/test-app/source/real.html
805
+ - fixtures/test-app/source/real/index.html.erb
806
+ - fixtures/test-app/source/relative_image.html.erb
807
+ - fixtures/test-app/source/services/index.html.haml
808
+ - fixtures/test-app/source/should_be_ignored.html
809
+ - fixtures/test-app/source/should_be_ignored2.html
810
+ - fixtures/test-app/source/should_be_ignored3.html
811
+ - fixtures/test-app/source/slim.html.slim
812
+ - fixtures/test-app/source/spaces in file.html.erb
813
+ - fixtures/test-app/source/static.html
814
+ - fixtures/test-app/source/stylesheets/asset_host.css.sass
815
+ - fixtures/test-app/source/stylesheets/auto-css.css
816
+ - fixtures/test-app/source/stylesheets/auto-css/auto-css.css
817
+ - fixtures/test-app/source/stylesheets/auto-css/index.css
818
+ - fixtures/test-app/source/stylesheets/auto-css/sub/auto-css.css
819
+ - fixtures/test-app/source/stylesheets/layout.css.sass
820
+ - fixtures/test-app/source/stylesheets/relative_assets.css.sass
821
+ - fixtures/test-app/source/stylesheets/site.css.sass
822
+ - fixtures/test-app/source/stylesheets/site_scss.css.scss
823
+ - fixtures/test-app/source/stylesheets/static.css
824
+ - fixtures/test-app/source/sub1/page-classes.html.haml
825
+ - fixtures/test-app/source/sub1/sub2/page-classes.html.haml
826
+ - fixtures/test-app/source/tiny_src.html.haml