capistrano-deploy-management 0.1.17 → 0.1.18
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.
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = 'capistrano-deploy-management'
|
4
4
|
s.description = 'Collection of Capistrano recipes for deploying Rails apps into high-performance environments'
|
5
|
-
s.version = '0.1.
|
5
|
+
s.version = '0.1.18'
|
6
6
|
s.platform = Gem::Platform::RUBY
|
7
7
|
s.authors = ['Dominik Rodler']
|
8
8
|
s.email = ['dominik.rodler@gmail.com']
|
data/changelog.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
- 0.1.17
|
2
|
-
|
2
|
+
removed rails_assets recipes, as they are included in capistrano by default now; just load 'deploy/assets' in your Capfile
|
3
3
|
|
4
4
|
- 0.1.13 / 0.1.14 / 0.1.15 / 0.1.16
|
5
5
|
fix puma configuration
|
@@ -7,16 +7,6 @@ module CapistranoDeployManagement
|
|
7
7
|
|
8
8
|
namespace :deploy do
|
9
9
|
namespace :assets do
|
10
|
-
# desc 'Precompile assets.'
|
11
|
-
# task :precompile do
|
12
|
-
# run "cd #{current_path} && RAILS_ENV=#{rails_env} RAILS_GROUPS=assets #{rake} assets:precompile"
|
13
|
-
# end
|
14
|
-
|
15
|
-
# desc 'Clean assets.'
|
16
|
-
# task :clean do
|
17
|
-
# run "cd #{current_path} && RAILS_ENV=#{rails_env} RAILS_GROUPS=assets #{rake} assets:clean"
|
18
|
-
# end
|
19
|
-
|
20
10
|
desc 'Clear application cache (e.g. Memcached).'
|
21
11
|
task :refresh_cache, roles: :app do
|
22
12
|
run "cd #{current_path} && rake cache:clear RAILS_ENV=#{rails_env}"
|
@@ -31,8 +21,6 @@ module CapistranoDeployManagement
|
|
31
21
|
end
|
32
22
|
end
|
33
23
|
|
34
|
-
# before 'deploy:assets:precompile', 'deploy:assets:clean'
|
35
|
-
# after 'deploy:assets:precompile', 'deploy:assets:refresh_cache'
|
36
24
|
after 'deploy:update', 'deploy:assets:refresh_cache'
|
37
25
|
|
38
26
|
end
|