deploy_mate 0.17.2 → 0.17.3
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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/deploy-mate.gemspec +1 -1
- data/lib/capistrano/configs/nginx_base.conf.erb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e12c71ac389154c8e0f6de82b41b52a2e470d37
|
|
4
|
+
data.tar.gz: e6455f7b5ff5ae3b91843c33003f3666e48fbdef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b31e339938e2e1057e0058492699f5a4bc4de48a64c98757fef038e723ebb0b4b17245fde570d172efe9500907c5a884c5af34e51cc6cd41a4d134ff4f9c1f29
|
|
7
|
+
data.tar.gz: 1f9caab1c2682db872ac19077acf05a8d21d42af6f8e4976c555707d19683425af995e88b164260523c8152e307d819da2a1f310d68476507e9f7f0d9f83dffa
|
data/README.md
CHANGED
|
@@ -29,6 +29,7 @@ It uses the following Capistrano-roles to divide the installed components:
|
|
|
29
29
|
- **cronjobs**: [OPTIONAL] For environments where `whenever` should manage/run cronjobs
|
|
30
30
|
|
|
31
31
|
## Changelog
|
|
32
|
+
* **2015-08-27**: Small fix for `nginx`-config regarding gzipping of svgs
|
|
32
33
|
* **2015-08-14**: Important small fix for `nginx`-config regarding ssl
|
|
33
34
|
* **2015-08-07**: Small fix for `rvm`-install
|
|
34
35
|
* **2015-08-06**: Support for optional `sidekiq`
|
data/deploy-mate.gemspec
CHANGED
|
@@ -25,7 +25,7 @@ http {
|
|
|
25
25
|
gzip_comp_level 6;
|
|
26
26
|
gzip_proxied any;
|
|
27
27
|
gzip_types text/plain text/css text/xml text/javascript text/comma-separated-values
|
|
28
|
-
application/json application/x-javascript application/xml application/xml+rss;
|
|
28
|
+
application/json application/x-javascript application/xml application/xml+rss image/svg+xml;
|
|
29
29
|
|
|
30
30
|
# see http://blog.leetsoft.com/2007/7/25/nginx-gzip-ssl
|
|
31
31
|
gzip_buffers 16 8k;
|