middleman-sync 3.0.2 → 3.0.3
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/README.md +1 -1
- data/lib/middleman-sync/extension.rb +2 -2
- data/lib/middleman-sync/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Synchronise your Middleman build to S3 and more
|
|
4
4
|
|
|
5
|
-
Middleman
|
|
5
|
+
Middleman-Sync is a Middleman extension that wraps the excellant [Asset Sync](https://raw.github.com/rumblelabs/asset_sync) to allow for both a CLI and after_build hook to your Middleman build's
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -26,8 +26,8 @@ module Middleman
|
|
|
26
26
|
app.after_configuration do
|
|
27
27
|
|
|
28
28
|
options.after_build ||= false
|
|
29
|
-
options.prefix =
|
|
30
|
-
options.public_path =
|
|
29
|
+
options.prefix = "*"
|
|
30
|
+
options.public_path = build_dir
|
|
31
31
|
|
|
32
32
|
AssetSync.configure do |config|
|
|
33
33
|
config.enabled = true
|