deployed 0.1.0 → 0.1.1
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/app/helpers/deployed/application_helper.rb +2 -2
- data/lib/deployed/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3ebb54d143ee3d295761901280d33d36b54434c72e8a5bcf51f08d58776097a
|
4
|
+
data.tar.gz: c0f7fda61b135570affd49c7f1ae3c79d7d7e119e4bb473c85a9de2b4dd50d10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 746c98e426a43f368c80cf4824d8583c6a5821ebdf5052fc102abdeada7f114c877925f991966da667160567394133d8de2252b1a2c74abc4e92434610df5a3a
|
7
|
+
data.tar.gz: cf4b4e9fde6f276b0908a2951a2ff86a7eecff60bc8f6c057d4e331d118fba871f9b409cf294d26d7798b1dc2d85cc364726b6fc2d975b53ae32c4a48ff3269c
|
@@ -47,7 +47,7 @@ module Deployed
|
|
47
47
|
button_tag(
|
48
48
|
label,
|
49
49
|
type: 'button',
|
50
|
-
onclick: "
|
50
|
+
onclick: "execDeployed('#{command}')",
|
51
51
|
class: 'rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50',
|
52
52
|
'x-bind:disabled' => '$store.process.running',
|
53
53
|
'x-bind:class' => "{'opacity-50': $store.process.running}",
|
@@ -59,7 +59,7 @@ module Deployed
|
|
59
59
|
button_tag(
|
60
60
|
'Abort',
|
61
61
|
type: 'button',
|
62
|
-
onclick: "
|
62
|
+
onclick: "abortDeployed()",
|
63
63
|
class: 'rounded-md bg-red-600 px-3 py-1.5 text-sm text-white shadow-sm hover:bg-red-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-red-600',
|
64
64
|
'x-bind:disabled' => '$store.process.abortInProgress',
|
65
65
|
'x-bind:class' => "{'opacity-50': $store.process.abortInProgress}",
|
data/lib/deployed/version.rb
CHANGED