From 0ca1ff6e67f48e10279ad517b93234f42684abdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20G=C3=BCnnewig?= Date: Fri, 19 Jan 2018 10:07:24 +0100 Subject: [PATCH] Relax dependencies for contracts Middleman requires an older dependency for contracts (https://github.com/middleman/middleman/blob/master/middleman-core/middleman-core.gemspec#L56) than aruba. Using Aruba >= 1.0.0.pre.alpha.x with Middleman does not work. Relaxing the dependency a bit helps to avoid that problem. --- aruba.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aruba.gemspec b/aruba.gemspec index a02254134..e30c9e278 100644 --- a/aruba.gemspec +++ b/aruba.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'childprocess', '~> 0.8.0' spec.add_runtime_dependency 'ffi', '~> 1.9', '>= 1.9.10' spec.add_runtime_dependency 'rspec-expectations', '~> 3.4', '>= 3.4.0' - spec.add_runtime_dependency 'contracts', '~> 0.14' + spec.add_runtime_dependency 'contracts', '~> 0.13' spec.add_runtime_dependency 'thor', '~> 0.19' spec.add_development_dependency 'bundler', '~> 1.11'