taperole 1.3.5 → 1.3.6
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/CHANGELOG.md +5 -0
- data/roles/backend_config/tasks/main.yml +0 -2
- data/roles/frontend_deploy/tasks/main.yml +0 -2
- data/taperole.gemspec +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: be722c5f579265c670a9bc741028a8bf5466a0cb
|
|
4
|
+
data.tar.gz: ef0d2089eded12aedc22ec87b0597f248afd1560
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ad757b3ff073d24ebd69373523528e522511bebd61bd748d5a6dd09e0f1da491c6454c5e35ed2a3bb06f358d4d2eb54069307cc47b818804965c8e6d4850dc6
|
|
7
|
+
data.tar.gz: 48cd1d3b9b29bafd0d00533ba04c78f1d0a8239fb1c744eaca59678f4a503d46445e2778846d08f5182a07303dbc3362f6a817ff81bae654d4476a69868cfafa
|
data/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
- name: NPM install
|
|
12
12
|
when: fe_app_repo is defined
|
|
13
13
|
remote_user: "{{ deployer_user.name }}"
|
|
14
|
-
command: bash -lc
|
|
15
14
|
command: chdir={{ fe_app_path }}
|
|
16
15
|
bash -lc 'test -e package.json && npm install ; return 0'
|
|
17
16
|
tags: [fe_deploy]
|
|
@@ -19,7 +18,6 @@
|
|
|
19
18
|
- name: Bower install
|
|
20
19
|
when: fe_app_repo is defined
|
|
21
20
|
remote_user: "{{ deployer_user.name }}"
|
|
22
|
-
command: bash -lc
|
|
23
21
|
command: chdir={{ fe_app_path }}
|
|
24
22
|
bash -lc 'test -e bower.json && bower install'
|
|
25
23
|
tags: [fe_deploy]
|
data/taperole.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "taperole"
|
|
3
|
-
spec.version = '1.3.
|
|
3
|
+
spec.version = '1.3.6'
|
|
4
4
|
spec.authors = ['Jack Forrest', 'Smashing Boxes', 'Brandon Mathis']
|
|
5
5
|
spec.description = "General purpose server provisioning and application deployment toolkit"
|
|
6
6
|
spec.email = ['jack@smashingboxes.com', 'brandon@sbox.es']
|