middleman 0.10.3 → 0.10.4

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.3
1
+ 0.10.4
@@ -111,8 +111,7 @@ class Middleman::Base
111
111
 
112
112
  # Default build features
113
113
  configure :build do
114
- enable :minify_css
115
- enable :minify_javascript
114
+ enable :relative_assets
116
115
  enable :cache_buster
117
116
  end
118
117
 
@@ -4,15 +4,27 @@
4
4
 
5
5
  # Helpers
6
6
  helpers do
7
+ def some_helper(*args)
8
+ "Helping"
9
+ end
7
10
  end
8
11
 
9
- # Generic configuration
12
+ # Automatic sitemaps
10
13
  # enable :slickmap
11
14
 
15
+ # Automatic image dimension calculations
16
+ # enable :automatic_image_sizes
17
+
12
18
  # Build-specific configuration
13
19
  configure :build do
14
20
  # For example, change the Compass output style for deployment
15
- # enable :minified_css
21
+ # enable :minify_css
22
+
23
+ # Minify Javascript on build
24
+ # enable :minify_javascript
25
+
26
+ # Shrink/smush PNG/JPEGs on build
27
+ # enable :smush_pngs
16
28
 
17
29
  # Or use a different image path
18
30
  # set :http_path, "/Content/images/"
@@ -1,6 +1,5 @@
1
1
  @import compass.sass
2
- @import blueprint/modules/grid.sass
3
- @import blueprint/modules/typography.sass
2
+ @import blueprint/screen.sass
4
3
 
5
4
  +global-reset
6
5
  +blueprint-typography
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{middleman}
8
- s.version = "0.10.3"
8
+ s.version = "0.10.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Reynolds"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds