jekyll-s3 2.2.1 → 2.2.2
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 -0
- data/changelog.md +4 -0
- data/jekyll-s3.gemspec +2 -2
- data/lib/jekyll-s3/config_loader.rb +0 -1
- metadata +5 -5
data/README.md
CHANGED
data/changelog.md
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.2.
|
|
6
|
+
s.version = "2.2.2"
|
|
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"]
|
|
@@ -28,7 +28,7 @@ distribution, making it easy to deliver your blog via the CDN.}
|
|
|
28
28
|
s.add_development_dependency 'aruba', '>= 0.4.7'
|
|
29
29
|
s.add_development_dependency 'rake'
|
|
30
30
|
s.add_development_dependency 'vcr'
|
|
31
|
-
s.add_development_dependency 'webmock'
|
|
31
|
+
s.add_development_dependency 'webmock', '~> 1.8.0'
|
|
32
32
|
|
|
33
33
|
s.files = `git ls-files`.split("\n")
|
|
34
34
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
@@ -33,7 +33,6 @@ s3_bucket: your.blog.bucket.com
|
|
|
33
33
|
|
|
34
34
|
def self.create_template_configuration_file(site_dir)
|
|
35
35
|
File.open(get_configuration_file(site_dir), 'w') { |f|
|
|
36
|
-
`ls #{get_configuration_file(site_dir)} >> /tmp/test.txt`
|
|
37
36
|
f.write(CONFIGURATION_FILE_TEMPLATE)
|
|
38
37
|
}
|
|
39
38
|
end
|
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.2.
|
|
4
|
+
version: 2.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -209,17 +209,17 @@ dependencies:
|
|
|
209
209
|
requirement: !ruby/object:Gem::Requirement
|
|
210
210
|
none: false
|
|
211
211
|
requirements:
|
|
212
|
-
- -
|
|
212
|
+
- - ~>
|
|
213
213
|
- !ruby/object:Gem::Version
|
|
214
|
-
version:
|
|
214
|
+
version: 1.8.0
|
|
215
215
|
type: :development
|
|
216
216
|
prerelease: false
|
|
217
217
|
version_requirements: !ruby/object:Gem::Requirement
|
|
218
218
|
none: false
|
|
219
219
|
requirements:
|
|
220
|
-
- -
|
|
220
|
+
- - ~>
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
|
-
version:
|
|
222
|
+
version: 1.8.0
|
|
223
223
|
description: ! 'This Gem allows you to push your Jekyll blog to AWS S3.
|
|
224
224
|
|
|
225
225
|
In addition, you can use this Gem to invalidate the related Cloudfront
|