jekyll-s3 2.2.4 → 2.3.0
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 +14 -0
- data/changelog.md +7 -0
- data/features/cassettes/cucumber_tags/new-files-for-sydney.yml +211 -0
- data/features/jekyll-s3-upload.feature +10 -0
- data/features/support/test_site_dirs/my.sydney.blog.au/_jekyll_s3.yml +4 -0
- data/features/support/test_site_dirs/my.sydney.blog.au/_site/css/styles.css +3 -0
- data/features/support/test_site_dirs/my.sydney.blog.au/_site/index.html +5 -0
- data/features/support/vcr.rb +1 -0
- data/jekyll-s3.gemspec +2 -2
- data/lib/jekyll-s3.rb +1 -1
- data/lib/jekyll-s3/config_loader.rb +1 -4
- data/lib/jekyll-s3/endpoint.rb +30 -0
- data/lib/jekyll-s3/uploader.rb +6 -5
- data/spec/lib/config_loader_spec.rb +10 -0
- data/spec/sample_files/tokyo_site/_jekyll_s3.yml +4 -0
- data/spec/sample_files/tokyo_site/_site/.vimrc +5 -0
- data/spec/sample_files/tokyo_site/_site/css/styles.css +3 -0
- data/spec/sample_files/tokyo_site/_site/index.html +1 -0
- metadata +20 -3
data/README.md
CHANGED
@@ -33,6 +33,20 @@ s3_bucket: your.blog.bucket.com
|
|
33
33
|
|
34
34
|
## Additional features
|
35
35
|
|
36
|
+
### Using non-standard AWS regions
|
37
|
+
|
38
|
+
By default, `jekyll-s3` uses the US Standard Region. You can upload your Jekyll
|
39
|
+
site to other regions by adding the setting `s3_endpoint` into the
|
40
|
+
`_jekyll_s3.yml` file.
|
41
|
+
|
42
|
+
For example, the following line in `_jekyll_s3.yml` will instruct `jekyll_s3` to
|
43
|
+
push your site into the Tokyo region:
|
44
|
+
|
45
|
+
s3_endpoint: ap-northeast-1
|
46
|
+
|
47
|
+
The valid `s3_endpoint` values consist of the [S3 location constraint
|
48
|
+
values](http://docs.amazonwebservices.com/general/latest/gr/rande.html#s3_region).
|
49
|
+
|
36
50
|
### Reduced Redundancy
|
37
51
|
|
38
52
|
You can reduce the cost of hosting your blog on S3 by using Reduced Redundancy Storage:
|
data/changelog.md
CHANGED
@@ -0,0 +1,211 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://s3-ap-southeast-2.amazonaws.com/
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- ''
|
12
|
+
User-Agent:
|
13
|
+
- aws-sdk-ruby/1.5.6 ruby/1.9.3 x86_64-darwin11.4.0
|
14
|
+
Date:
|
15
|
+
- Sun, 14 Oct 2012 16:40:24 +0300
|
16
|
+
Authorization:
|
17
|
+
- AWS foo:foo=
|
18
|
+
Accept:
|
19
|
+
- ! '*/*'
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
X-Amz-Id-2:
|
26
|
+
- oPO1kjdvRumCNZHfhZaWYgyeqf1rszjLU6Yv5VmeJlagrp0L7xDlja33A3NEB+lF
|
27
|
+
X-Amz-Request-Id:
|
28
|
+
- 0ADF25683FCFEA3B
|
29
|
+
Date:
|
30
|
+
- Sun, 14 Oct 2012 13:40:27 GMT
|
31
|
+
Content-Type:
|
32
|
+
- application/xml
|
33
|
+
Transfer-Encoding:
|
34
|
+
- chunked
|
35
|
+
Server:
|
36
|
+
- AmazonS3
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '<?xml version="1.0" encoding="UTF-8"?>
|
40
|
+
|
41
|
+
<ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Owner><ID>x</ID><DisplayName>x</DisplayName></Owner><Buckets><Bucket><Name>jekyll-s3-test.net</Name><CreationDate>2012-10-14T12:58:37.000Z</CreationDate></Bucket></Buckets></ListAllMyBucketsResult>'
|
42
|
+
http_version:
|
43
|
+
recorded_at: Sun, 14 Oct 2012 13:40:25 GMT
|
44
|
+
- request:
|
45
|
+
method: get
|
46
|
+
uri: https://s3-ap-southeast-2.amazonaws.com/jekyll-s3-test.net?max-keys=1000
|
47
|
+
body:
|
48
|
+
encoding: US-ASCII
|
49
|
+
string: ''
|
50
|
+
headers:
|
51
|
+
Content-Type:
|
52
|
+
- ''
|
53
|
+
User-Agent:
|
54
|
+
- aws-sdk-ruby/1.5.6 ruby/1.9.3 x86_64-darwin11.4.0
|
55
|
+
Date:
|
56
|
+
- Sun, 14 Oct 2012 16:40:25 +0300
|
57
|
+
Authorization:
|
58
|
+
- AWS foo:foo=
|
59
|
+
Accept:
|
60
|
+
- ! '*/*'
|
61
|
+
response:
|
62
|
+
status:
|
63
|
+
code: 200
|
64
|
+
message: OK
|
65
|
+
headers:
|
66
|
+
X-Amz-Id-2:
|
67
|
+
- QTSymXMQalg5cw/APPEwt9g6sYMDXbxW0Aaps1zAQ0u/4SwrvkOeNt3jKm54/VMM
|
68
|
+
X-Amz-Request-Id:
|
69
|
+
- AA208FECCB1E85EE
|
70
|
+
Date:
|
71
|
+
- Sun, 14 Oct 2012 13:40:27 GMT
|
72
|
+
Content-Type:
|
73
|
+
- application/xml
|
74
|
+
Transfer-Encoding:
|
75
|
+
- chunked
|
76
|
+
Server:
|
77
|
+
- AmazonS3
|
78
|
+
body:
|
79
|
+
encoding: US-ASCII
|
80
|
+
string: ! '<?xml version="1.0" encoding="UTF-8"?>
|
81
|
+
|
82
|
+
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>jekyll-s3-test.net</Name><Prefix></Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated></ListBucketResult>'
|
83
|
+
http_version:
|
84
|
+
recorded_at: Sun, 14 Oct 2012 13:40:26 GMT
|
85
|
+
- request:
|
86
|
+
method: put
|
87
|
+
uri: https://s3-ap-southeast-2.amazonaws.com/jekyll-s3-test.net/css/styles.css
|
88
|
+
body:
|
89
|
+
encoding: ASCII-8BIT
|
90
|
+
string: !binary |-
|
91
|
+
Ym9keSB7Cgp9Cg==
|
92
|
+
headers:
|
93
|
+
Content-Type:
|
94
|
+
- ''
|
95
|
+
Content-Length:
|
96
|
+
- '10'
|
97
|
+
User-Agent:
|
98
|
+
- aws-sdk-ruby/1.5.6 ruby/1.9.3 x86_64-darwin11.4.0
|
99
|
+
Date:
|
100
|
+
- Sun, 14 Oct 2012 16:40:26 +0300
|
101
|
+
Authorization:
|
102
|
+
- AWS foo:foo=
|
103
|
+
Accept:
|
104
|
+
- ! '*/*'
|
105
|
+
response:
|
106
|
+
status:
|
107
|
+
code: 200
|
108
|
+
message: OK
|
109
|
+
headers:
|
110
|
+
X-Amz-Id-2:
|
111
|
+
- xhRbNnKb3BflLa4OrGe9qeM2gSadOHcnWNdpqaMwEYL909QAoBkaUTJZGqcYABhq
|
112
|
+
X-Amz-Request-Id:
|
113
|
+
- E5428005DF85FB78
|
114
|
+
Date:
|
115
|
+
- Sun, 14 Oct 2012 13:40:28 GMT
|
116
|
+
Etag:
|
117
|
+
- ! '"8fcf43a38cbf0c502f029a50645f2374"'
|
118
|
+
Content-Length:
|
119
|
+
- '0'
|
120
|
+
Server:
|
121
|
+
- AmazonS3
|
122
|
+
body:
|
123
|
+
encoding: US-ASCII
|
124
|
+
string: ''
|
125
|
+
http_version:
|
126
|
+
recorded_at: Sun, 14 Oct 2012 13:40:26 GMT
|
127
|
+
- request:
|
128
|
+
method: put
|
129
|
+
uri: https://s3-ap-southeast-2.amazonaws.com/jekyll-s3-test.net/index.html
|
130
|
+
body:
|
131
|
+
encoding: ASCII-8BIT
|
132
|
+
string: !binary |-
|
133
|
+
PGh0bWw+CiAgPGhlYWQ+CiAgICA8dGl0bGU+aGVsbG8hPC90aXRsZT4KICA8
|
134
|
+
L2hlYWQ+CjwvaHRtbD4K
|
135
|
+
headers:
|
136
|
+
Content-Type:
|
137
|
+
- ''
|
138
|
+
Content-Length:
|
139
|
+
- '60'
|
140
|
+
User-Agent:
|
141
|
+
- aws-sdk-ruby/1.5.6 ruby/1.9.3 x86_64-darwin11.4.0
|
142
|
+
Date:
|
143
|
+
- Sun, 14 Oct 2012 16:40:26 +0300
|
144
|
+
Authorization:
|
145
|
+
- AWS foo:foo=
|
146
|
+
Accept:
|
147
|
+
- ! '*/*'
|
148
|
+
response:
|
149
|
+
status:
|
150
|
+
code: 200
|
151
|
+
message: OK
|
152
|
+
headers:
|
153
|
+
X-Amz-Id-2:
|
154
|
+
- /qDHDvVyWt95mWDmaswN75KKtnBPN2ISIlgdBOFSvWyy/Ovva2u8SMDd4aQJSoVj
|
155
|
+
X-Amz-Request-Id:
|
156
|
+
- EDC7726801AA0AE2
|
157
|
+
Date:
|
158
|
+
- Sun, 14 Oct 2012 13:40:29 GMT
|
159
|
+
Etag:
|
160
|
+
- ! '"8a8892a2b0fad281f26c0dedbff7011a"'
|
161
|
+
Content-Length:
|
162
|
+
- '0'
|
163
|
+
Server:
|
164
|
+
- AmazonS3
|
165
|
+
body:
|
166
|
+
encoding: US-ASCII
|
167
|
+
string: ''
|
168
|
+
http_version:
|
169
|
+
recorded_at: Sun, 14 Oct 2012 13:40:27 GMT
|
170
|
+
- request:
|
171
|
+
method: get
|
172
|
+
uri: https://s3-ap-southeast-2.amazonaws.com/jekyll-s3-test.net?max-keys=1000
|
173
|
+
body:
|
174
|
+
encoding: US-ASCII
|
175
|
+
string: ''
|
176
|
+
headers:
|
177
|
+
Content-Type:
|
178
|
+
- ''
|
179
|
+
User-Agent:
|
180
|
+
- aws-sdk-ruby/1.5.6 ruby/1.9.3 x86_64-darwin11.4.0
|
181
|
+
Date:
|
182
|
+
- Sun, 14 Oct 2012 16:40:27 +0300
|
183
|
+
Authorization:
|
184
|
+
- AWS foo:foo
|
185
|
+
Accept:
|
186
|
+
- ! '*/*'
|
187
|
+
response:
|
188
|
+
status:
|
189
|
+
code: 200
|
190
|
+
message: OK
|
191
|
+
headers:
|
192
|
+
X-Amz-Id-2:
|
193
|
+
- ZIix7PUbt+Kpmb1wbV5hYk4fPyZYjj9doj54LQAQjsXqskA7Yk442vj47FeoD6sC
|
194
|
+
X-Amz-Request-Id:
|
195
|
+
- 62CBD66CCEB953BA
|
196
|
+
Date:
|
197
|
+
- Sun, 14 Oct 2012 13:40:29 GMT
|
198
|
+
Content-Type:
|
199
|
+
- application/xml
|
200
|
+
Transfer-Encoding:
|
201
|
+
- chunked
|
202
|
+
Server:
|
203
|
+
- AmazonS3
|
204
|
+
body:
|
205
|
+
encoding: US-ASCII
|
206
|
+
string: ! '<?xml version="1.0" encoding="UTF-8"?>
|
207
|
+
|
208
|
+
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>jekyll-s3-test.net</Name><Prefix></Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated><Contents><Key>css/styles.css</Key><LastModified>2012-10-14T13:40:28.000Z</LastModified><ETag>"8fcf43a38cbf0c502f029a50645f2374"</ETag><Size>10</Size><Owner><ID>3855ebae0f370c3dd0c8d8031863792112bd2a2cb18fa310d3f463ae0dea62f1</ID><DisplayName>fluid83</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>index.html</Key><LastModified>2012-10-14T13:40:29.000Z</LastModified><ETag>"8a8892a2b0fad281f26c0dedbff7011a"</ETag><Size>60</Size><Owner><ID>3855ebae0f370c3dd0c8d8031863792112bd2a2cb18fa310d3f463ae0dea62f1</ID><DisplayName>fluid83</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents></ListBucketResult>'
|
209
|
+
http_version:
|
210
|
+
recorded_at: Sun, 14 Oct 2012 13:40:28 GMT
|
211
|
+
recorded_with: VCR 2.2.4
|
@@ -18,6 +18,16 @@ Feature: upload Jekyll site to S3
|
|
18
18
|
|
19
19
|
"""
|
20
20
|
|
21
|
+
@new-files-for-sydney
|
22
|
+
@wip
|
23
|
+
Scenario: Push a new Jekyll site to an S3 bucket in Sydney
|
24
|
+
When my Jekyll site is in "features/support/test_site_dirs/my.sydney.blog.au"
|
25
|
+
Then jekyll-s3 will push my blog to S3
|
26
|
+
And the output should contain
|
27
|
+
"""
|
28
|
+
Done! Go visit: http://jekyll-s3-test.net.s3-website-ap-southeast-2.amazonaws.com/index.html
|
29
|
+
"""
|
30
|
+
|
21
31
|
@new-and-changed-files
|
22
32
|
Scenario: Upload a new blog post and change an old post
|
23
33
|
When my Jekyll site is in "features/support/test_site_dirs/new-and-changed-files.com"
|
data/features/support/vcr.rb
CHANGED
data/jekyll-s3.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "jekyll-s3"
|
6
|
-
s.version = "2.
|
6
|
+
s.version = "2.3.0"
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Philippe Creux", "Lauri Lehmijoki"]
|
9
9
|
s.email = ["pcreux@gmail.com", "lauri.lehmijoki@iki.fi"]
|
@@ -20,7 +20,7 @@ distribution, making it easy to deliver your blog via the CDN.}
|
|
20
20
|
s.add_dependency 'simple-cloudfront-invalidator', '~> 1.0'
|
21
21
|
s.add_dependency 'erubis', '~> 2.7.0'
|
22
22
|
s.add_dependency 'mime-types', '= 1.19'
|
23
|
-
s.add_dependency 'configure-s3-website', '~> 1.
|
23
|
+
s.add_dependency 'configure-s3-website', '~> 1.1'
|
24
24
|
|
25
25
|
s.add_development_dependency 'rspec'
|
26
26
|
s.add_development_dependency 'rspec-expectations'
|
data/lib/jekyll-s3.rb
CHANGED
@@ -11,7 +11,7 @@ module Jekyll
|
|
11
11
|
end
|
12
12
|
end
|
13
13
|
|
14
|
-
%w{errors uploader cli config_loader retry keyboard diff_helper}.each do |file|
|
14
|
+
%w{errors uploader cli config_loader retry keyboard diff_helper endpoint}.each do |file|
|
15
15
|
require File.dirname(__FILE__) + "/jekyll-s3/#{file}"
|
16
16
|
end
|
17
17
|
|
@@ -24,10 +24,7 @@ s3_bucket: your.blog.bucket.com
|
|
24
24
|
# Raise MalformedConfigurationFileError if the configuration file does not contain the keys we expect
|
25
25
|
def self.load_configuration(site_dir)
|
26
26
|
config = load_yaml_file_and_validate site_dir
|
27
|
-
|
28
|
-
s3_secret = config['s3_secret']
|
29
|
-
s3_bucket = config['s3_bucket']
|
30
|
-
cloudfront_distribution_id = config['cloudfront_distribution_id']
|
27
|
+
config['s3_endpoint'] = config['s3_endpoint'] || 'us-east-1'
|
31
28
|
return config
|
32
29
|
end
|
33
30
|
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Jekyll
|
2
|
+
module S3
|
3
|
+
class Endpoint
|
4
|
+
attr_reader :region, :location_constraint, :hostname, :website_hostname
|
5
|
+
|
6
|
+
def initialize(location_constraint)
|
7
|
+
raise "Invalid S3 location constraint #{location_constraint}" unless
|
8
|
+
location_constraints.has_key?location_constraint
|
9
|
+
@region = location_constraints.fetch(location_constraint)[:region]
|
10
|
+
@hostname = location_constraints.fetch(location_constraint)[:endpoint]
|
11
|
+
@website_hostname = location_constraints.fetch(location_constraint)[:website_hostname]
|
12
|
+
@location_constraint = location_constraint
|
13
|
+
end
|
14
|
+
|
15
|
+
# http://docs.amazonwebservices.com/general/latest/gr/rande.html#s3_region
|
16
|
+
def location_constraints
|
17
|
+
{
|
18
|
+
'us-east-1' => { :region => 'US Standard', :website_hostname => 's3-website-us-east-1.amazonaws.com', :endpoint => 's3.amazonaws.com' },
|
19
|
+
'us-west-2' => { :region => 'US West (Oregon)', :website_hostname => 's3-website-us-west-2.amazonaws.com', :endpoint => 's3-us-west-2.amazonaws.com' },
|
20
|
+
'us-west-1' => { :region => 'US West (Northern California)', :website_hostname => 's3-website-us-west-1.amazonaws.com', :endpoint => 's3-us-west-1.amazonaws.com' },
|
21
|
+
'EU' => { :region => 'EU (Ireland)', :website_hostname => 's3-website-eu-west-1.amazonaws.com', :endpoint => 's3-eu-west-1.amazonaws.com' },
|
22
|
+
'ap-southeast-1' => { :region => 'Asia Pacific (Singapore)', :website_hostname => 's3-website-ap-southeast-1.amazonaws.com', :endpoint => 's3-ap-southeast-1.amazonaws.com' },
|
23
|
+
'ap-southeast-2' => { :region => 'Asia Pacific (Sydney)', :website_hostname => 's3-website-ap-southeast-2.amazonaws.com', :endpoint => 's3-ap-southeast-2.amazonaws.com' },
|
24
|
+
'ap-northeast-1' => { :region => 'Asia Pacific (Tokyo)', :website_hostname => 's3-website-ap-northeast-1.amazonaws.com', :endpoint => 's3-ap-northeast-1.amazonaws.com' },
|
25
|
+
'sa-east-1' => { :region => 'South America (Sao Paulo)', :website_hostname => 's3-website-sa-east-1.amazonaws.com', :endpoint => 's3-sa-east-1.amazonaws.com' }
|
26
|
+
}
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/jekyll-s3/uploader.rb
CHANGED
@@ -5,7 +5,8 @@ module Jekyll
|
|
5
5
|
puts "Deploying _site/* to #{config['s3_bucket']}"
|
6
6
|
|
7
7
|
s3 = AWS::S3.new(:access_key_id => config['s3_id'],
|
8
|
-
:secret_access_key => config['s3_secret']
|
8
|
+
:secret_access_key => config['s3_secret'],
|
9
|
+
:s3_endpoint => Endpoint.new(config['s3_endpoint']).hostname )
|
9
10
|
|
10
11
|
new_files_count, changed_files_count, changed_files = upload_files(
|
11
12
|
s3, config, site_dir
|
@@ -23,10 +24,10 @@ module Jekyll
|
|
23
24
|
|
24
25
|
def self.print_done_report(config)
|
25
26
|
bucket_name = config['s3_bucket']
|
26
|
-
|
27
|
-
|
28
|
-
"%s
|
29
|
-
puts "Done! Go visit: http://#{
|
27
|
+
website_hostname_suffix = Endpoint.new(config['s3_endpoint']).website_hostname
|
28
|
+
website_hostname_with_bucket =
|
29
|
+
"%s.%s" % [bucket_name, website_hostname_suffix]
|
30
|
+
puts "Done! Go visit: http://#{website_hostname_with_bucket}/index.html"
|
30
31
|
end
|
31
32
|
|
32
33
|
def self.upload_files(s3, config, site_dir)
|
@@ -7,4 +7,14 @@ describe Jekyll::S3::ConfigLoader do
|
|
7
7
|
config['s3_secret'].should eq('world')
|
8
8
|
config['s3_bucket'].should eq('galaxy')
|
9
9
|
end
|
10
|
+
|
11
|
+
it 'uses the "us-east-1" as the default endpoint' do
|
12
|
+
config = Jekyll::S3::ConfigLoader.load_configuration('spec/sample_files/hyde_site/_site')
|
13
|
+
config['s3_endpoint'].should eq('us-east-1')
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'reads the S3 endpoint setting from _jekyll_s3.yml' do
|
17
|
+
config = Jekyll::S3::ConfigLoader.load_configuration('spec/sample_files/tokyo_site/_site')
|
18
|
+
config['s3_endpoint'].should eq('ap-northeast-1')
|
19
|
+
end
|
10
20
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<div>Hello world</div>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -99,7 +99,7 @@ dependencies:
|
|
99
99
|
requirements:
|
100
100
|
- - ~>
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: '1.
|
102
|
+
version: '1.1'
|
103
103
|
type: :runtime
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -107,7 +107,7 @@ dependencies:
|
|
107
107
|
requirements:
|
108
108
|
- - ~>
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '1.
|
110
|
+
version: '1.1'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rspec
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -241,6 +241,7 @@ files:
|
|
241
241
|
- bin/jekyll-s3
|
242
242
|
- changelog.md
|
243
243
|
- features/cassettes/cucumber_tags/new-and-changed-files.yml
|
244
|
+
- features/cassettes/cucumber_tags/new-files-for-sydney.yml
|
244
245
|
- features/cassettes/cucumber_tags/new-files.yml
|
245
246
|
- features/cassettes/cucumber_tags/no-new-or-changed-files.yml
|
246
247
|
- features/cassettes/cucumber_tags/one-file-to-delete.yml
|
@@ -263,6 +264,9 @@ files:
|
|
263
264
|
- features/support/test_site_dirs/my.blog.com/_jekyll_s3.yml
|
264
265
|
- features/support/test_site_dirs/my.blog.com/_site/css/styles.css
|
265
266
|
- features/support/test_site_dirs/my.blog.com/_site/index.html
|
267
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_jekyll_s3.yml
|
268
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_site/css/styles.css
|
269
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_site/index.html
|
266
270
|
- features/support/test_site_dirs/new-and-changed-files.com/_jekyll_s3.yml
|
267
271
|
- features/support/test_site_dirs/new-and-changed-files.com/_site/css/styles.css
|
268
272
|
- features/support/test_site_dirs/new-and-changed-files.com/_site/index.html
|
@@ -281,6 +285,7 @@ files:
|
|
281
285
|
- lib/jekyll-s3/cli.rb
|
282
286
|
- lib/jekyll-s3/config_loader.rb
|
283
287
|
- lib/jekyll-s3/diff_helper.rb
|
288
|
+
- lib/jekyll-s3/endpoint.rb
|
284
289
|
- lib/jekyll-s3/errors.rb
|
285
290
|
- lib/jekyll-s3/keyboard.rb
|
286
291
|
- lib/jekyll-s3/retry.rb
|
@@ -293,6 +298,10 @@ files:
|
|
293
298
|
- spec/sample_files/hyde_site/_site/.vimrc
|
294
299
|
- spec/sample_files/hyde_site/_site/css/styles.css
|
295
300
|
- spec/sample_files/hyde_site/_site/index.html
|
301
|
+
- spec/sample_files/tokyo_site/_jekyll_s3.yml
|
302
|
+
- spec/sample_files/tokyo_site/_site/.vimrc
|
303
|
+
- spec/sample_files/tokyo_site/_site/css/styles.css
|
304
|
+
- spec/sample_files/tokyo_site/_site/index.html
|
296
305
|
- spec/spec_helper.rb
|
297
306
|
homepage: https://github.com/laurilehmijoki/jekyll-s3
|
298
307
|
licenses: []
|
@@ -320,6 +329,7 @@ specification_version: 3
|
|
320
329
|
summary: Push your Jekyll blog to S3
|
321
330
|
test_files:
|
322
331
|
- features/cassettes/cucumber_tags/new-and-changed-files.yml
|
332
|
+
- features/cassettes/cucumber_tags/new-files-for-sydney.yml
|
323
333
|
- features/cassettes/cucumber_tags/new-files.yml
|
324
334
|
- features/cassettes/cucumber_tags/no-new-or-changed-files.yml
|
325
335
|
- features/cassettes/cucumber_tags/one-file-to-delete.yml
|
@@ -342,6 +352,9 @@ test_files:
|
|
342
352
|
- features/support/test_site_dirs/my.blog.com/_jekyll_s3.yml
|
343
353
|
- features/support/test_site_dirs/my.blog.com/_site/css/styles.css
|
344
354
|
- features/support/test_site_dirs/my.blog.com/_site/index.html
|
355
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_jekyll_s3.yml
|
356
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_site/css/styles.css
|
357
|
+
- features/support/test_site_dirs/my.sydney.blog.au/_site/index.html
|
345
358
|
- features/support/test_site_dirs/new-and-changed-files.com/_jekyll_s3.yml
|
346
359
|
- features/support/test_site_dirs/new-and-changed-files.com/_site/css/styles.css
|
347
360
|
- features/support/test_site_dirs/new-and-changed-files.com/_site/index.html
|
@@ -362,4 +375,8 @@ test_files:
|
|
362
375
|
- spec/sample_files/hyde_site/_site/.vimrc
|
363
376
|
- spec/sample_files/hyde_site/_site/css/styles.css
|
364
377
|
- spec/sample_files/hyde_site/_site/index.html
|
378
|
+
- spec/sample_files/tokyo_site/_jekyll_s3.yml
|
379
|
+
- spec/sample_files/tokyo_site/_site/.vimrc
|
380
|
+
- spec/sample_files/tokyo_site/_site/css/styles.css
|
381
|
+
- spec/sample_files/tokyo_site/_site/index.html
|
365
382
|
- spec/spec_helper.rb
|