pvcglue_dbutils 0.5.2 → 0.5.3
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 +8 -8
- data/lib/pvcglue_dbutils/version.rb +1 -1
- data/lib/tasks/pvcglue_dbutils.rake +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NzcwNTE1NGY2YmJkZjZiOTFmODdmNjBjMjhlNzdhZDQ1ZDkyY2QyYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Yjg2NTcxOGUyYzc5YmQyMjZjMGU4NTE0M2UyNGEzNzVjZDZmYTI2ZQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NWE4NTFkMjRiN2U1NmNjZWEzNGM1ZDJmMDQ1MTNmOTRhMzE0OTZiYzliZjk5
|
|
10
|
+
OTdjYjk5ZTFkNWI0NGZlYTRlMWFjZjIwMDZlZDYxZTFjYjdjYWMwYTVmOTBl
|
|
11
|
+
YzI0OTg3MGVjYjc2N2VhYzRkOTgxNzRmNWFiODMzNjI5ZjhmMTI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjQzYTk3MGNiNDE3N2JlZTY1YjZkOWQyMjcyMGNiZDNhYTM4ZjkxYzE1M2I1
|
|
14
|
+
ZDBkMGU5M2ViZDI0ZTBmOWYzNzg0YTk5ZmU2ODliOTA5YzIzMDk2NDJlYzhm
|
|
15
|
+
ZGE2ZjlhYzVhNzQ1ZTVhYmJmODExOTBjZDA0MTYzZjE1ODEyMjc=
|
|
@@ -76,9 +76,9 @@ namespace :db do
|
|
|
76
76
|
desc "Reload schema, then seed. (Does not try to drop and recreate db.)"
|
|
77
77
|
task :reload, [:filename] => :environment do |t, args|
|
|
78
78
|
raise "Nope...Ain't gonna do it. Your request to drop the PRODUCTION database is denied." if Rails.env.production?
|
|
79
|
-
puts "Reloading the db..."
|
|
80
|
-
Rake::Task['db:schema:load'].invoke
|
|
81
79
|
if args.filename == "seed!"
|
|
80
|
+
puts "Reloading the db..."
|
|
81
|
+
Rake::Task['db:schema:load'].invoke
|
|
82
82
|
puts "Seeding the db..."
|
|
83
83
|
Rake::Task['db:seed'].invoke
|
|
84
84
|
else
|