capistrano-exfel 0.0.19 → 0.0.20

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: 1e05fc30c23e3b5887d237eee700b30aaf05b3df
4
- data.tar.gz: c30c3a2a8e7882ce35d998f1c0c6b5b0cfbd3712
3
+ metadata.gz: 863c072eaf83bac26e4f01edcfaafbfade077c2a
4
+ data.tar.gz: e601f8573118b9f59a8508d1a90d331d4e6ad67d
5
5
  SHA512:
6
- metadata.gz: 144dc9cb9c832f44c9cb10c6c6b2dedf8a379526888fe13575b68199cdcb232c3d33fa705db240c16475915605f0a06e3f35a4020bda114ae74c2152ea413f61
7
- data.tar.gz: 5b1400e2d26793fb821e80b0a457bb3f9f4031900e3ffccd33437be00ea0af6b4cb50d838eb4e05c9bfed2a80ab3ad71488d2e92d517fb5a1b1fa633df216b94
6
+ metadata.gz: ea8a33d892bb74dd3178b90c2224adb418a1ae63c6c7e30ada574d503cd341d7accb59ae4431afd469a13e7c5994bac16180a2dc6ffa1fe1cefb31bb61729c49
7
+ data.tar.gz: 87a187411b66dc8ed1f677d3fa7327068d3b63d84e41875a95b0bebf1234fd8a32ed0aa828624439d0bef20231c13f3da857fce640bc516de2cd8c1412b252f4
data/README.md CHANGED
@@ -12,7 +12,7 @@ Add these lines to your application's Gemfile:
12
12
  gem 'capistrano', '~> 3.4.0'
13
13
  gem 'capistrano-rails', '~> 1.1.2'
14
14
  gem 'capistrano-rvm', '~> 0.1.2'
15
- gem 'capistrano-exfel', '~> 0.0.19'
15
+ gem 'capistrano-exfel', '~> 0.0.20'
16
16
 
17
17
 
18
18
  And then execute:
@@ -1,6 +1,6 @@
1
1
  module Capistrano
2
2
  # Capistrano::Exfel version information
3
3
  module Exfel
4
- VERSION = '0.0.19'.freeze
4
+ VERSION = '0.0.20'.freeze
5
5
  end
6
6
  end
@@ -1,20 +1,11 @@
1
1
  # avoid asset precompilation in dev environment
2
2
 
3
- Rake::Task['deploy:assets:precompile'].clear_actions
3
+ Rake::Task['deploy:compile_assets'].clear_actions
4
4
  namespace :deploy do
5
- namespace :assets do
6
- task :precompile do
7
- on release_roles(fetch(:assets_roles)) do
8
- within release_path do
9
- with rails_env: fetch(:rails_env), rails_groups: fetch(:rails_assets_groups) do
10
- if %w[production test].include?(fetch(:rails_env).to_s)
11
- execute :rake, 'assets:precompile'
12
- else
13
- info 'Skipping asset pre-compilation in dev environment'
14
- end
15
- end
16
- end
17
- end
5
+ task :compile_assets => [:set_rails_env] do
6
+ if %w[production test].include?(fetch(:rails_env).to_s)
7
+ invoke 'deploy:assets:precompile'
8
+ invoke 'deploy:assets:backup_manifest'
18
9
  end
19
10
  end
20
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-exfel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Maia
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-06-24 00:00:00.000000000 Z
12
+ date: 2017-07-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler