capistrano-db_sync 0.0.3 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ac7a777e216b28b76c7d74495c2ac24ac043d7a
4
- data.tar.gz: 7f6dce31e24ddf589319d52f4b1a92f4d3830386
3
+ metadata.gz: 097af0fe9943edd79ebaf5adf6b0a4b38e93f3a3
4
+ data.tar.gz: 1aeaaa0f28c9828512582cf48b3752c6135b65cd
5
5
  SHA512:
6
- metadata.gz: c4cfb9da1b149eed3247badcde9fdde382b6204063cb284acb011fbdbc592a2343933e92e218c4c795fa80c8b3db1e9512882695ffca70f4104a9e13b6a9d24c
7
- data.tar.gz: 809713ff8d936873c98aab1bec2b8046f19e353f3e21bc89f12a0d39892391c6633fcd89d515666d0187d041cf3e4b25196b697b71f0acc5e5e56ec2eaa831a1
6
+ metadata.gz: 089b61e05c9e168bd8c16529a01aca55178c61f0e77c6eff263c550f05d426ea7aea1a08503ebe928c397054e2873b2c45e6a75709873895c81bd97edc8a3f43
7
+ data.tar.gz: 42b8a807837d3bb8c155c132b960f0b88ba172b0776415961e19130c1231a1aa9d732eccea9ed5060351b01b538274058dfb1ee1362dbd65bac75c123edab130
@@ -19,4 +19,5 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_runtime_dependency "capistrano", ">= 3.0.0"
22
+ spec.add_dependency "activesupport", ">= 3.0.0"
22
23
  end
@@ -1,3 +1,5 @@
1
+ require 'active_support/core_ext/hash'
2
+
1
3
  module Capistrano::DBSync
2
4
  class Configuration
3
5
  extend Forwardable
@@ -1,6 +1,5 @@
1
1
  require "capistrano"
2
2
  require "capistrano/version"
3
- Bundler.require(:development)
4
3
 
5
4
  namespace :db_sync do
6
5
  desc <<-DESC
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module DBSync
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-db_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Sales
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 3.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
27
41
  description: Fast download and restore dumps using edge features of Postgres 9.x
28
42
  email:
29
43
  - rafaelcds@gmail.com