From 8508a0ba6c4c8942e69b0950578f66c9f510fc12 Mon Sep 17 00:00:00 2001
From: Jon Reid <jon@qualitycoding.org>
Date: Tue, 24 Sep 2019 11:38:10 -0700
Subject: [PATCH] Update spec.license in podspec

---
 OCMockito.podspec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/OCMockito.podspec b/OCMockito.podspec
index d9d1c547..894e9f3f 100644
--- a/OCMockito.podspec
+++ b/OCMockito.podspec
@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name     = 'OCMockito'
-  s.version  = '5.1.1'
+  s.version  = '5.1.2'
   s.summary  = 'OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.'
   s.description = <<-DESC
                     OCMockito is an Objective-C implementation of Mockito, supporting creation, 
@@ -17,14 +17,14 @@ Pod::Spec.new do |s|
                       it easier to identify failures.
                   DESC
   s.homepage = 'https://github.com/jonreid/OCMockito'
-  s.license  = 'MIT'
+  s.license  = { :type => 'MIT' }
   s.author   = { 'Jon Reid' => 'jon@qualitycoding.org' }
   s.social_media_url = 'https://twitter.com/qcoding'
     
   s.ios.deployment_target = '8.0'
   s.osx.deployment_target = '10.10'
   s.tvos.deployment_target = '9.0'
-  s.source   = { :git => 'https://github.com/jonreid/OCMockito.git', :tag => 'v5.1.1' }
+  s.source   = { :git => 'https://github.com/jonreid/OCMockito.git', :tag => 'v5.1.2' }
   s.source_files = 'Source/OCMockito/**/*.{h,m}', 'Source/ThirdParty/**/*.{h,m}'
   s.public_header_files = 'Source/OCMockito/Core/MKTNonObjectArgumentMatching.h',  'Source/OCMockito/Core/OCMockito.h',  'Source/OCMockito/Invocation/NSInvocation+OCMockito.h',  'Source/OCMockito/Mocking/MKTBaseMockObject.h',  'Source/OCMockito/Mocking/MKTClassObjectMock.h',  'Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h',  'Source/OCMockito/Mocking/MKTObjectMock.h',  'Source/OCMockito/Mocking/MKTProtocolMock.h',  'Source/OCMockito/Stubbing/MKTOngoingStubbing.h'
   s.requires_arc = true