capistrano_recipes 1.4.1 → 1.4.2
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/capistrano_recipes.gemspec +1 -1
- data/lib/capistrano/recipes/mysql.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34e605e05ac8c7fa9d990626b8d868e38bd132ab
|
|
4
|
+
data.tar.gz: 163b6a84cab76c71a51a762b0569f382109b57d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a379905a59061ef82b51506d9b529170ff810a7e0f83ffc41a5508912fc8e28af65a38cdc847aa567c03b74cfcc0c9b4d594e8bc1ebc4b16b84449792c6e970a
|
|
7
|
+
data.tar.gz: 70ddd382fb0309b8d79c74b456f3e68229ea9535d0796548b7926fb3a211f4a144a0a93e09a1da8d2eed13496f0338228d57ea51686cf4b2531f8e5fb9a8c430
|
data/capistrano_recipes.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'capistrano_recipes'
|
|
7
|
-
s.version = '1.4.
|
|
7
|
+
s.version = '1.4.2'
|
|
8
8
|
s.authors = ['Fernando Aleman']
|
|
9
9
|
s.email = ['fernandoaleman@mac.com']
|
|
10
10
|
s.description = 'Capistrano recipes to make your deployments fast and easy'
|
|
@@ -93,7 +93,7 @@ module CapistranoRecipes
|
|
|
93
93
|
after 'deploy:finalize_update', 'mysql:symlink'
|
|
94
94
|
|
|
95
95
|
desc 'Populate the database with seed data'
|
|
96
|
-
task :seed do
|
|
96
|
+
task :seed, :roles => :db, :only => { :primary => true } do
|
|
97
97
|
run "cd #{current_path} && #{rake} RAILS_ENV=#{rails_env} db:seed"
|
|
98
98
|
end
|
|
99
99
|
after 'deploy:cold' do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano_recipes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fernando Aleman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|