taperole 1.3.5 → 1.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 40a94253d8fb5c810cf62a823bd9799eb8d37fbb
4
- data.tar.gz: 9984c5dc1ec02f4a98f2a475725509f0e6cac84a
3
+ metadata.gz: be722c5f579265c670a9bc741028a8bf5466a0cb
4
+ data.tar.gz: ef0d2089eded12aedc22ec87b0597f248afd1560
5
5
  SHA512:
6
- metadata.gz: ec8f4da5f0226bd1a1cbe3a2fb0f31b7d3e80e901304046e32ec2c5664df1b79c0b30a04bb1b59958c1bd0b5879abfd5d37d30fc4cf7e3c6ae41583a35c8b055
7
- data.tar.gz: 846ea018aece73e6f935fa69d0490a65b72020535886299f83b0a433e092f880892d81da344f22d8a10e3e39932682d8bad8655a1517699725d70716a9da62eb
6
+ metadata.gz: 0ad757b3ff073d24ebd69373523528e522511bebd61bd748d5a6dd09e0f1da491c6454c5e35ed2a3bb06f358d4d2eb54069307cc47b818804965c8e6d4850dc6
7
+ data.tar.gz: 48cd1d3b9b29bafd0d00533ba04c78f1d0a8239fb1c744eaca59678f4a503d46445e2778846d08f5182a07303dbc3362f6a817ff81bae654d4476a69868cfafa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 1.3.6
2
+ * Added support for ansible 2.0
3
+
4
+ ### 1.3.5
5
+ * Fix issue with missing opts for slack notifier failing ansible commands
1
6
  ### 1.3.3
2
7
  * Added slack notifications
3
8
  * Added fe build command to tape_vars.yml template
@@ -30,5 +30,3 @@
30
30
  bash -lc "bundle exec rake assets:precompile RAILS_ENV={{be_app_env}}"
31
31
  tags: [precompile_assets,be_deploy]
32
32
  when: precompile_assets
33
-
34
- tags: [be_deploy]
@@ -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.5'
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']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taperole
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Forrest