bean_docker 0.1.10 → 0.1.11
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/bean_docker.gemspec +8 -0
- data/lib/bean_docker/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4f3bd07d429aa90274fc332ac0bb3dc2ff0b181
|
4
|
+
data.tar.gz: 6ad8557d2c7fc53165bdd3a4f4c159470d9faae5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bce10e746ba526c6b540a93ed58411e986cab80ea82f06cbf0549e16d219bdd978d98e5f57f93de346eaa8bfb03b459c4e03f7f6a672ef19f07becc829875d4
|
7
|
+
data.tar.gz: fddddb2f141a046fe63b1fa60fb0d80dcac2d914f03e598e9a5eddc6189e1c992c4b4cdeba7e122b0d3500b70b9bf5485792ca5b8ba7329117be79f5469eea56
|
data/bean_docker.gemspec
CHANGED
@@ -16,6 +16,14 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.homepage = "https://www.smartzip.com"
|
17
17
|
spec.license = "MIT"
|
18
18
|
|
19
|
+
envvar_file_name = '/opt/elasticbeanstalk/deploy/configuration/containerconfiguration'
|
20
|
+
|
21
|
+
spec.post_install_message = %Q{\nThanks for installing! To use this gem, you will need to relax the permissions on the file containing your environment variables:\n
|
22
|
+
sudo chmod 664 #{envvar_file_name}\n
|
23
|
+
And to restore the original permissions:\n
|
24
|
+
sudo chmod 660 #{envvar_file_name}
|
25
|
+
}
|
26
|
+
|
19
27
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
20
28
|
# delete this section to allow pushing this gem to any host.
|
21
29
|
if spec.respond_to?(:metadata)
|
data/lib/bean_docker/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bean_docker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alan Brown
|
@@ -67,7 +67,11 @@ licenses:
|
|
67
67
|
- MIT
|
68
68
|
metadata:
|
69
69
|
allowed_push_host: https://rubygems.org
|
70
|
-
post_install_message:
|
70
|
+
post_install_message: "\nThanks for installing! To use this gem, you will need to
|
71
|
+
relax the permissions on the file containing your environment variables:\n\n sudo
|
72
|
+
chmod 664 /opt/elasticbeanstalk/deploy/configuration/containerconfiguration\n\nAnd
|
73
|
+
to restore the original permissions:\n\n sudo chmod 660 /opt/elasticbeanstalk/deploy/configuration/containerconfiguration\n
|
74
|
+
\ "
|
71
75
|
rdoc_options: []
|
72
76
|
require_paths:
|
73
77
|
- lib
|