capistrano-victoire 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 702e96c0003839321a98990b2fb06a6e0bad4b1f
4
- data.tar.gz: f4046418954a06c23b4e499e8f3d4a30fc69c1a2
3
+ metadata.gz: d0a7445fc2997f29fb7e584c99536f002eb68169
4
+ data.tar.gz: 5655e6439b7f7d995fffb0a0453f067c22fb0af2
5
5
  SHA512:
6
- metadata.gz: 00b2534c5b755242190d4cd625eb03e8062e0eb0a69314bb5649cc59b837e8c05318ed4fc245bc082f8c714f8a6a93c32f2a5db3c4823b70a17568c7f3438baa
7
- data.tar.gz: 2cc3aa1a82a1dedc52978acc9a65175d7b2cb4803c0b7b9bef1a2798b5623f4bfbe73ae09bca3b3743524e93e7416421a596f2c8ebb2c73e3fdf0543790972ce
6
+ metadata.gz: c78b17ea3fbd4987b32cda457397153514d5d87d43df40658dd13de29029138b20a5cb3d826599b6a9271c725fc7ed5193b76d6713b27b03cf68fb48e4dd0133
7
+ data.tar.gz: 73656f29e363c020bd099680218748d0e49b4623f5b69a2466fb9310bf718fe499c621a2772d29c3b7701e7118c4806ecc7d8a9dc730730162136e82ad357f31
data/README.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  Capistrano tasks used to deploy Victoire based projects.
4
4
 
5
+ ## Install
6
+
7
+ ```ruby
8
+ #add this line in your Gemfile
9
+ gem 'capistrano-victoire'
10
+ ```
11
+
12
+ ```ruby
13
+ #add this line in your Capfile
14
+ require 'capistrano/victoire'
15
+ ```
16
+ Then run
17
+ ```shell
18
+ bundle install
19
+ #or bundle update
20
+ ```
21
+
5
22
  ## Workflow
6
23
 
7
24
  The default capistrano workflow is used with the addition of theses tasks.
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'capistrano-victoire'
7
- spec.version = '0.0.6'
7
+ spec.version = '0.0.7'
8
8
  spec.authors = ['Leny Bernard']
9
9
  spec.email = ['erwan@victoire.com']
10
10
  spec.description = %q{Victoire tasks for Capistrano 3.x}
@@ -5,7 +5,7 @@ namespace :victoire do
5
5
  DESC
6
6
  task :fetch do
7
7
  on roles(:app) do
8
- if fetch(:rollbar_token)
8
+ if fetch(:fetch_victoire_assets)
9
9
  execute "cd #{release_path} && php " + fetch(:symfony_console_path) + " --env=prod victoire:ui:fetchAssets"
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-victoire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leny Bernard