capistrano-magento2 0.1.1 → 0.1.2
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 +6 -0
- data/lib/capistrano/magento2/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: 7e490763327001432ee55aea765914a0a472d859
|
|
4
|
+
data.tar.gz: bde350aba1f7a64ee34f63567c7b04d9658e481a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d95f824e97db5a6ef423c94d01fc403ecce412998c5b8e413465d28d0efe8a50349e0b8433161a1a2900e129fc024a707e2cf128951b099bb0152883c0b74537
|
|
7
|
+
data.tar.gz: 4cf552d4c64fe1a55cf073bc56335b2383ae926cc7b87792dd305611d89e2dafe678b54aecfe3d22d8e704aca4d1c5f1c88b0f1a46f22fdb880bffd560e5b12f
|
data/README.md
CHANGED
|
@@ -37,6 +37,12 @@ require 'capistrano/setup'
|
|
|
37
37
|
require 'capistrano/magento'
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
This gem requires [terminal-notifier](https://rubygems.org/gems/terminal-notifier) and adds notifications to the deployment process via an optional include. To use terminal-notifier, add the following line to your `Capfile`:
|
|
41
|
+
|
|
42
|
+
```ruby
|
|
43
|
+
require 'capistrano/magento2/deploy/notify'
|
|
44
|
+
```
|
|
45
|
+
|
|
40
46
|
## Development
|
|
41
47
|
|
|
42
48
|
After checking out the repo, run `bundle install` to install dependencies.
|