From 6d00377194c987449b6424603eb3b81d07279aa5 Mon Sep 17 00:00:00 2001 From: Mark Alldritt Date: Wed, 27 Sep 2017 10:29:25 -0700 Subject: [PATCH] Correct Podfile Eureka version spec --- ColorPickerRow.podspec | 2 +- Podfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ColorPickerRow.podspec b/ColorPickerRow.podspec index 078ffaf..ea02cc4 100644 --- a/ColorPickerRow.podspec +++ b/ColorPickerRow.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.requires_arc = true s.author = "Mark Alldritt" s.dependencies = { - 'Eureka' => '~> 4.0.0', + 'Eureka' => '>= 4.0.0', 'UIColor_Hex_Swift' } end \ No newline at end of file diff --git a/Podfile b/Podfile index d6d5d51..c5062db 100644 --- a/Podfile +++ b/Podfile @@ -4,7 +4,7 @@ source 'https://github.com/CocoaPods/Specs.git' target 'ColorPicker' do use_frameworks! - pod 'Eureka', '~> 4.0.0' + pod 'Eureka', '>= 4.0.0' pod 'UIColor_Hex_Swift' end