capones_recipes 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/capones_recipes.gemspec +1 -1
- data/lib/recipes/database/sync.rb +20 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.2
|
data/capones_recipes.gemspec
CHANGED
@@ -94,6 +94,16 @@ Capistrano::Configuration.instance.load do
|
|
94
94
|
end
|
95
95
|
|
96
96
|
namespace :kuhsaft do
|
97
|
+
|
98
|
+
desc <<-DESC
|
99
|
+
Syncs the database and declared directories from the selected multi_stage environment
|
100
|
+
to the local development environment. This task simply calls both the 'sync:down:kuhsaft:db' and
|
101
|
+
'sync:down:kuhsaft:fs' tasks.
|
102
|
+
DESC
|
103
|
+
task :default do
|
104
|
+
db
|
105
|
+
end
|
106
|
+
|
97
107
|
desc <<-DESC
|
98
108
|
Syncs database from the selected mutli_stage environement to the local develoment environment.
|
99
109
|
The database credentials will be read from your local config/database.yml file and a copy of the
|
@@ -209,6 +219,16 @@ Capistrano::Configuration.instance.load do
|
|
209
219
|
end
|
210
220
|
|
211
221
|
namespace :kuhsaft do
|
222
|
+
|
223
|
+
desc <<-DESC
|
224
|
+
Syncs the database and declared directories from the local development environment
|
225
|
+
to the selected multi_stage environment. This task simply calls both the 'sync:up:kuhsaft:db' and
|
226
|
+
'sync:up:kuhsaft:fs' tasks.
|
227
|
+
DESC
|
228
|
+
task :default do
|
229
|
+
db
|
230
|
+
end
|
231
|
+
|
212
232
|
desc <<-DESC
|
213
233
|
Syncs database from the local develoment environment to the selected mutli_stage environement.
|
214
234
|
The database credentials will be read from your local config/database.yml file and a copy of the
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: capones_recipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.7.
|
5
|
+
version: 0.7.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Roman Simecek
|
@@ -160,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
160
|
requirements:
|
161
161
|
- - ">="
|
162
162
|
- !ruby/object:Gem::Version
|
163
|
-
hash: -
|
163
|
+
hash: -826388500522341018
|
164
164
|
segments:
|
165
165
|
- 0
|
166
166
|
version: "0"
|