capistrano-s3 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- checksums.yaml.gz.sig +0 -0
- data/Gemfile.lock +3 -3
- data/{NEWS → NEWS.md} +12 -6
- data/capistrano-s3.gemspec +2 -2
- data/lib/capistrano/s3/publisher.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGFkMzQ2ZTgyZmUxZjA1NzdkYzQ5YmQ2NjA3ZmRjNTExYzNjNjZmMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
M2ViNmVmZjVlMGFhNjVhNDg4NWIxZmEwZTY1MDIxYzBkMjBjYWQ4Nw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MWQ0YmJlNWU2Nzc3YmY0NTY5NmNiNTdhZGFjYWRmNjdlNmRiZDkxYWE5N2Jk
|
10
|
+
YzcxMDdiNzllZjE1ZDYzNzQ1ZmNkMzA3OTRkNWNkYjJkMjcwOGI1Y2Q5NWVl
|
11
|
+
Njc0MTE1ZmI0ODRmOTNmMDI4NGI2YTlkMTQ5OGU2MGI5MzNjOGY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZmUzYTczODdmYTJhNWQyYTI2NzljNDJiYzA2NGJiZDk1NTA0ZjAwNmQzZTNh
|
14
|
+
NmM0ZWZlNTNlZmU5N2U5NTU1NjdjMjdlZjE4OGY3ZGI0OTE5N2EzNTBlYzdi
|
15
|
+
NWRhZmMxNTMxOTA0ZjVlYmVlNzhkOWY4MWZkZWIwMGUyMjEzZWQ=
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
capistrano-s3 (0.2.
|
4
|
+
capistrano-s3 (0.2.7)
|
5
5
|
aws-sdk
|
6
6
|
capistrano
|
7
7
|
mime-types
|
@@ -19,14 +19,14 @@ GEM
|
|
19
19
|
net-sftp (>= 2.0.0)
|
20
20
|
net-ssh (>= 2.0.14)
|
21
21
|
net-ssh-gateway (>= 1.1.0)
|
22
|
-
highline (1.6.
|
22
|
+
highline (1.6.18)
|
23
23
|
json (1.7.7)
|
24
24
|
mime-types (1.22)
|
25
25
|
net-scp (1.1.0)
|
26
26
|
net-ssh (>= 2.6.5)
|
27
27
|
net-sftp (2.1.1)
|
28
28
|
net-ssh (>= 2.6.5)
|
29
|
-
net-ssh (2.6.
|
29
|
+
net-ssh (2.6.7)
|
30
30
|
net-ssh-gateway (1.2.0)
|
31
31
|
net-ssh (>= 2.6.5)
|
32
32
|
nokogiri (1.5.9)
|
data/{NEWS → NEWS.md}
RENAMED
@@ -1,22 +1,28 @@
|
|
1
|
-
|
1
|
+
# capistrano-s3 changes
|
2
|
+
|
3
|
+
## New in 0.2.7
|
4
|
+
|
5
|
+
* Bugfix : support non-standard file extensions. (#14) @barvaz
|
6
|
+
|
7
|
+
## New in 0.2.6
|
2
8
|
|
3
9
|
* Feature : Adds ability to specify redirect location for files. (#13) @aledovsky
|
4
10
|
* Feature : Adds S3 endpoint selection option. (#11) @aledovsky
|
5
11
|
* Improvement : Require fileutils to support newer rubies. (#10) @douglasjarquin
|
6
12
|
* Bugfix : Pass a string to the content_type option (#11) @douglasjarquin
|
7
13
|
|
8
|
-
New in 0.2.5
|
14
|
+
## New in 0.2.5
|
9
15
|
|
10
16
|
* Improvement : signed gem.
|
11
17
|
|
12
|
-
New in 0.2.4
|
18
|
+
## New in 0.2.4
|
13
19
|
|
14
20
|
* Bugfix : fixed error when .last_publish doesn't exist yet.
|
15
21
|
|
16
|
-
New in 0.2.3
|
22
|
+
## New in 0.2.3
|
17
23
|
|
18
24
|
* Bugfix : fixed error when no specific bucket_write_options is set.
|
19
25
|
|
20
|
-
New in 0.2.2
|
26
|
+
## New in 0.2.2
|
21
27
|
|
22
|
-
* Bugfix : fixed an error caused previously by removing SASS & HAML dependency.
|
28
|
+
* Bugfix : fixed an error caused previously by removing SASS & HAML dependency.
|
data/capistrano-s3.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.authors = ['Jean-Philippe Doyle','Josh Delsman','Aleksandrs Ļedovskis','Douglas Jarquin']
|
4
|
+
s.authors = ['Jean-Philippe Doyle','Josh Delsman','Aleksandrs Ļedovskis','Douglas Jarquin', 'Amit Barvaz']
|
5
5
|
s.email = ['jeanphilippe.doyle@hooktstudios.com']
|
6
6
|
s.description = 'Enables static websites deployment to Amazon S3 website buckets using Capistrano.'
|
7
7
|
s.summary = 'Build and deploy a static website to Amazon S3'
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
13
13
|
s.name = 'capistrano-s3'
|
14
14
|
s.require_paths = ['lib']
|
15
|
-
s.version = '0.2.
|
15
|
+
s.version = '0.2.7'
|
16
16
|
s.cert_chain = ['certs/j15e.pem']
|
17
17
|
s.signing_key = File.expand_path('~/.gem/private_key.pem') if $0 =~ /gem\z/
|
18
18
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean-Philippe Doyle
|
8
8
|
- Josh Delsman
|
9
9
|
- Aleksandrs Ļedovskis
|
10
10
|
- Douglas Jarquin
|
11
|
+
- Amit Barvaz
|
11
12
|
autorequire:
|
12
13
|
bindir: bin
|
13
14
|
cert_chain:
|
@@ -39,7 +40,7 @@ cert_chain:
|
|
39
40
|
MjN3ZTRFMUx2ZlJuNWdWNzdEaWo2czlWNEhIek1CdUx3bk5iOFQrNmxPblVX
|
40
41
|
YnRpSWRkRAplOGM4aTdQbHJ6aFZKLzhzWFVKc0NreUU4ZDJNeVJ5amx4TT0K
|
41
42
|
LS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=
|
42
|
-
date: 2013-04-
|
43
|
+
date: 2013-04-18 00:00:00.000000000 Z
|
43
44
|
dependencies:
|
44
45
|
- !ruby/object:Gem::Dependency
|
45
46
|
name: aws-sdk
|
@@ -110,7 +111,7 @@ files:
|
|
110
111
|
- Gemfile
|
111
112
|
- Gemfile.lock
|
112
113
|
- LICENSE
|
113
|
-
- NEWS
|
114
|
+
- NEWS.md
|
114
115
|
- README.md
|
115
116
|
- Rakefile
|
116
117
|
- capistrano-s3.gemspec
|
metadata.gz.sig
CHANGED
Binary file
|