capistrano-db-sync 0.0.1 → 0.0.11
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-db-sync.gemspec +1 -1
- data/lib/capistrano/db-sync.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f2ec3494379fba43498b646d17304cfe6928836
|
4
|
+
data.tar.gz: 84733b42d3e46da0d3dcd49550d32432c862fff5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cf1ff570aec5ad455b4e3d0b1c501ee6d7e977928ff41dd6f4d720c0b4351e46ec36784ac3fcaca282eb5c41ef8297ed01a67824c756fab1071682904b785dd
|
7
|
+
data.tar.gz: 558efd414db8da5178f0333f482be792aeb20e51944a156051c3f227643814b476f9a900711a7ad261808f9f37681d11866d69c73ba45153b953333142da2e86
|
data/capistrano-db-sync.gemspec
CHANGED
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = 'capistrano-db-sync'
|
6
|
-
spec.version = '0.0.
|
6
|
+
spec.version = '0.0.11'
|
7
7
|
spec.date = Date.today.to_s
|
8
8
|
spec.summary = "Capistrano synchronization databases task"
|
9
9
|
spec.description = "Capistrano synchronization task for syncing databases between the local development environment and different multi_stage environments"
|
data/lib/capistrano/db-sync.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
load File.expand_path('../tasks/db.rake', __FILE__)
|