middleman-sync 3.0.6 → 3.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +21 -24
- data/README.md +1 -1
- data/lib/middleman-sync/commands.rb +1 -2
- data/lib/middleman-sync/version.rb +1 -1
- data/middleman-sync.gemspec +1 -1
- metadata +5 -5
data/Gemfile.lock
CHANGED
@@ -2,25 +2,25 @@ PATH
|
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
4
|
middleman-sync (3.0.6)
|
5
|
-
asset_sync (
|
5
|
+
asset_sync (= 0.5.0)
|
6
6
|
middleman-core (>= 3.0.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activemodel (3.2.
|
12
|
-
activesupport (= 3.2.
|
11
|
+
activemodel (3.2.11)
|
12
|
+
activesupport (= 3.2.11)
|
13
13
|
builder (~> 3.0.0)
|
14
|
-
activesupport (3.2.
|
14
|
+
activesupport (3.2.11)
|
15
15
|
i18n (~> 0.6)
|
16
16
|
multi_json (~> 1.0)
|
17
17
|
asset_sync (0.5.0)
|
18
18
|
activemodel
|
19
19
|
fog
|
20
|
-
builder (3.0.
|
21
|
-
excon (0.16.
|
22
|
-
ffi (1.1
|
23
|
-
fog (1.
|
20
|
+
builder (3.0.4)
|
21
|
+
excon (0.16.10)
|
22
|
+
ffi (1.3.1)
|
23
|
+
fog (1.8.0)
|
24
24
|
builder
|
25
25
|
excon (~> 0.14)
|
26
26
|
formatador (~> 0.2.0)
|
@@ -30,32 +30,29 @@ GEM
|
|
30
30
|
net-ssh (>= 2.1.3)
|
31
31
|
nokogiri (~> 1.5.0)
|
32
32
|
ruby-hmac
|
33
|
-
formatador (0.2.
|
34
|
-
i18n (0.6.
|
35
|
-
listen (0.
|
36
|
-
|
37
|
-
rb-fsevent (~> 0.9.1)
|
38
|
-
rb-inotify (~> 0.8.8)
|
39
|
-
middleman-core (3.0.0)
|
33
|
+
formatador (0.2.4)
|
34
|
+
i18n (0.6.1)
|
35
|
+
listen (0.5.3)
|
36
|
+
middleman-core (3.0.9)
|
40
37
|
activesupport (~> 3.2.6)
|
41
38
|
bundler (~> 1.1)
|
42
|
-
listen (~> 0.
|
43
|
-
rack (
|
39
|
+
listen (~> 0.5.2)
|
40
|
+
rack (= 1.4.1)
|
44
41
|
rack-test (~> 0.6.1)
|
42
|
+
rb-fsevent (~> 0.9.1)
|
43
|
+
rb-inotify (~> 0.8.8)
|
45
44
|
thor (~> 0.15.4)
|
46
45
|
tilt (~> 1.3.1)
|
47
46
|
mime-types (1.19)
|
48
|
-
multi_json (1.
|
47
|
+
multi_json (1.5.0)
|
49
48
|
net-scp (1.0.4)
|
50
49
|
net-ssh (>= 1.99.1)
|
51
|
-
net-ssh (2.
|
52
|
-
nokogiri (1.5.
|
50
|
+
net-ssh (2.6.3)
|
51
|
+
nokogiri (1.5.6)
|
53
52
|
rack (1.4.1)
|
54
|
-
rack-test (0.6.
|
53
|
+
rack-test (0.6.2)
|
55
54
|
rack (>= 1.0)
|
56
|
-
rb-
|
57
|
-
ffi
|
58
|
-
rb-fsevent (0.9.1)
|
55
|
+
rb-fsevent (0.9.3)
|
59
56
|
rb-inotify (0.8.8)
|
60
57
|
ffi (>= 0.5.0)
|
61
58
|
ruby-hmac (0.4.0)
|
data/README.md
CHANGED
@@ -33,7 +33,7 @@ activate :sync do |sync|
|
|
33
33
|
sync.fog_provider = 'Rackspace' # Your storage provider
|
34
34
|
sync.fog_directory = 'bucket-name' # Your bucket name
|
35
35
|
sync.fog_region = 'bucket-region-name' # The region your storage bucket is in
|
36
|
-
sync.rackspace_username = '
|
36
|
+
sync.rackspace_username = 'super' # Your Rackspace username
|
37
37
|
sync.rackspace_api_key = 'secret' # Your Rackspace API Key
|
38
38
|
sync.existing_remote_files = 'keep' # What to do with your existing remote files? ( keep or delete )
|
39
39
|
# sync.rackspace_auth_url = 'domain' # Your Rackspace auth URL
|
@@ -21,8 +21,7 @@ module Middleman
|
|
21
21
|
|
22
22
|
shared_inst = ::Middleman::Application.server.inst
|
23
23
|
|
24
|
-
|
25
|
-
if (!fog_provider)
|
24
|
+
if (!shared_inst.respond_to?('options') || !shared_inst.options.fog_provider)
|
26
25
|
raise Thor::Error.new "You need to activate the sync extension in config.rb"
|
27
26
|
end
|
28
27
|
|
data/middleman-sync.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-sync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-01-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: middleman-core
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
none: false
|
34
34
|
requirements:
|
35
|
-
- -
|
35
|
+
- - '='
|
36
36
|
- !ruby/object:Gem::Version
|
37
37
|
version: 0.5.0
|
38
38
|
type: :runtime
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
|
-
- -
|
43
|
+
- - '='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: 0.5.0
|
46
46
|
description: Middleman-Sync is a Middleman extension that wraps the excellant AssetSync
|
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
84
|
rubyforge_project: middleman-sync
|
85
|
-
rubygems_version: 1.8.
|
85
|
+
rubygems_version: 1.8.23
|
86
86
|
signing_key:
|
87
87
|
specification_version: 3
|
88
88
|
summary: Synchronise your Middleman build to S3 and more
|