capones_recipes 1.5.0 → 1.5.1

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.
@@ -64,7 +64,7 @@ Capistrano::Configuration.instance.load do
64
64
 
65
65
  # Local DB import
66
66
  username, password, database, host = database_config('development')
67
- run_locally "rake db:reset"
67
+ run_locally "rake db:drop && rake db:create"
68
68
  run_locally "bzip2 -d -c #{filename} | mysql -u #{username} --password='#{password}' #{database}"
69
69
  run_locally "rm -f #{filename}"
70
70
 
@@ -135,7 +135,7 @@ Capistrano::Configuration.instance.load do
135
135
 
136
136
  # Local DB import
137
137
  username, password, database, host = database_config('development')
138
- run_locally "rake db:reset"
138
+ run_locally "rake db:drop && rake db:create"
139
139
  run_locally "bzip2 -d -c #{filename} | mysql -u #{username} --password='#{password}' #{database}"
140
140
  run_locally "rm -f #{filename}"
141
141
 
@@ -1,3 +1,3 @@
1
1
  module CaponesRecipes
2
- VERSION = "1.5.0"
2
+ VERSION = "1.5.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capones_recipes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 1
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 0
10
- version: 1.5.0
9
+ - 1
10
+ version: 1.5.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Roman Simecek (CyT)