clientside_aws 0.0.21 → 0.0.22
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/bin/clientside_aws_build +5 -5
- data/bin/clientside_aws_run +4 -2
- data/bin/clientside_aws_test +3 -2
- data/lib/clientside_aws/version.rb +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: 0849125e1155b6cce69acffe5f673ccbe82d06ae
|
4
|
+
data.tar.gz: 5d4a21502b07598ac8501ad7bf871e4453bcce3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fc189751988578833582ff590ea92b1f5bae861f3bd948604de1718f226908b0a50b25498c44ddfb6856e66627b90b58b0fa594ad220e613b47d7ec90caabba
|
7
|
+
data.tar.gz: db12a96665260f6c2a96d30c68962a064ae01acb4becbfdaee0edab873da715237b879a9821622481984ebfb1ed046970804ddb5397231f777d8576a8e86949e
|
data/bin/clientside_aws_build
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
#!/usr/bin/env
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
|
4
|
-
|
5
|
-
PARENTDIR="$(dirname "$DIR")"
|
4
|
+
path = File.dirname(__FILE__)
|
5
|
+
dockerfile_path = File.join(path, '../')
|
6
6
|
|
7
|
-
docker build -t=clientside_aws:latest
|
7
|
+
system "docker build -t=clientside_aws:latest #{dockerfile_path}"
|
data/bin/clientside_aws_run
CHANGED
data/bin/clientside_aws_test
CHANGED