Skip to content

Commit 5b84bc0

Browse files
committed
Require activesupport to have deep_merge method
1 parent 5ac48da commit 5b84bc0

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

capistrano-db_sync.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ Gem::Specification.new do |spec|
1919
spec.require_paths = ["lib"]
2020

2121
spec.add_runtime_dependency "capistrano", ">= 3.0.0"
22+
spec.add_dependency "activesupport", ">= 3.0.0"
2223
end

lib/capistrano/db_sync/configuration.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'active_support/core_ext/hash'
2+
13
module Capistrano::DBSync
24
class Configuration
35
extend Forwardable

lib/capistrano/db_sync/tasks.rake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
require "capistrano"
22
require "capistrano/version"
3-
Bundler.require(:development)
43

54
namespace :db_sync do
65
desc <<-DESC

lib/capistrano/db_sync/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Capistrano
22
module DBSync
3-
VERSION = "0.0.3"
3+
VERSION = "0.0.5"
44
end
55
end

0 commit comments

Comments
 (0)