s3_website 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de54cc1b98c305031806e7486cfb3c4e62027db1
4
- data.tar.gz: 4d95bafa1686532d6e3c8223418694b8699b2ad0
3
+ metadata.gz: fea6e88850680b95f753e74ff1a12402e6670483
4
+ data.tar.gz: c02c9ddf15d4b6df65803b31bfc33161fc3bb24f
5
5
  SHA512:
6
- metadata.gz: 45905b400e8439f0040d180d051066407beccb219870a9ea68077c6a2bdbb1e78a5dbfb2cdbc8d5472ebc4db3c04c83751f27b37e0e341713033c5d0e8674b6a
7
- data.tar.gz: a49e6beb52409c4ee47fa620efa540c5014a320f67ec518231d0632ca97fcf8e23f19fcc5f9a9d706f3dc71baa2c0ae1d8e9a4f083427b1a415b22b06c1d828b
6
+ metadata.gz: 503d48ed49c1b6411a56f4be61dbd1372ec9768c74069a03f2559e65a65e6e55eb6ee0288040b00162e138a9d221f11d875dd69637ece9057a07d1e459a58e32
7
+ data.tar.gz: b7a2522205f751d20735883e1255db641e3dd0299251195806538056379dfceb9a8be6255c2596e0b68b692004c18d31e106a1f82aa18d197e5f0f62b4ba000a
data/changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This project uses [Semantic Versioning](http://semver.org).
4
4
 
5
+ ## 1.1.1
6
+
7
+ * Mention the new `concurrency_level` setting in the sample config file
8
+
5
9
  ## 1.1.0
6
10
 
7
11
  * Add possibility to define the concurrency level in *s3_website.yml*
@@ -19,7 +19,9 @@ s3_bucket: your.domain.net
19
19
  If you run `s3_website` on an EC2 instance with IAM roles, it is possible to omit
20
20
  the `s3_id` and `s3_secret`.
21
21
 
22
- ## Optimised for speed: using CloudFront, gzip and cache headers
22
+ ## Optimised for speed
23
+
24
+ Use CloudFront, gzip, cache headers and greater concurrency:
23
25
 
24
26
  ````yaml
25
27
  s3_id: <%= ENV['your_domain_net_aws_key'] %>
@@ -35,6 +37,7 @@ cloudfront_distribution_config:
35
37
  CNAME: your.domain.net
36
38
  max_age: 120
37
39
  gzip: true
40
+ concurrency_level: 100
38
41
  ````
39
42
 
40
43
  Above, we store the AWS credentials and the id of the CloudFront distribution as
@@ -95,6 +95,10 @@ Feature: Instructions for a new user
95
95
  """
96
96
  # routing_rules:
97
97
  """
98
+ Then the file "s3_website.yml" should contain:
99
+ """
100
+ # concurrency_level:
101
+ """
98
102
 
99
103
  @starts-new-os-process
100
104
  Scenario: Run s3_website with a malformed configuration file
@@ -30,6 +30,8 @@ s3_bucket: your.blog.bucket.com
30
30
  # items:
31
31
  # CNAME: your.website.com
32
32
 
33
+ # concurrency_level: 100
34
+
33
35
  # redirects:
34
36
  # index.php: /
35
37
  # about.php: about.html
data/s3_website.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 = "s3_website"
6
- s.version = "1.1.0"
6
+ s.version = "1.1.1"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Lauri Lehmijoki"]
9
9
  s.email = ["lauri.lehmijoki@iki.fi"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: s3_website
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lauri Lehmijoki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-20 00:00:00.000000000 Z
11
+ date: 2013-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk