Skip to content

Commit

Permalink
Fix for issue #110.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Jul 7, 2014
1 parent 51ce477 commit b7c3309
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions OCMock.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OCMock"
s.version = "3.0.1"
s.version = "3.0.2"

s.summary = "Mock objects for Objective-C"
s.description = <<-DESC
Expand All @@ -16,10 +16,10 @@ Pod::Spec.new do |s|
s.author = { "Erik Doernenburg" => "[email protected]" }
s.social_media_url = "http://twitter.com/erikdoe"

s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.1" }
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.2" }
s.source_files = "Source/OCMock/*.{h,m}"

s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMockRecorder.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "NSNotificationCenter+OCMAdditions.h"].map { |file|
s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h", "OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h"].map { |file|
"Source/OCMock/" + file
}

Expand Down
5 changes: 5 additions & 0 deletions Source/Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Listing of notable changes by release. More detail is usually found in the Git
commit messages and/or the pull requests.

OCMock 3.0.2 (2014-07-07)

* Fixed podspec


OCMock 3.0.1 (2014-07-06)

* Fixed bug that prevented stubs from returning nil
Expand Down
2 changes: 1 addition & 1 deletion Tools/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def makeRelease
downloadSource
copySource
buildModules
createPackage "ocmock-3.0.1.dmg", "OCMock 3.0.1"
createPackage "ocmock-3.0.2.dmg", "OCMock 3.0.2"
openPackageDir
end

Expand Down

0 comments on commit b7c3309

Please sign in to comment.