From 21861abaae452674926edc8dfc4be36f3ab07b6e Mon Sep 17 00:00:00 2001 From: Fabian Canas Date: Tue, 30 Jul 2013 22:14:13 -0600 Subject: [PATCH] Updated pod spec --- OHMKit.podspec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OHMKit.podspec b/OHMKit.podspec index 1a781af..ba20347 100644 --- a/OHMKit.podspec +++ b/OHMKit.podspec @@ -1,20 +1,20 @@ Pod::Spec.new do |s| s.name = "OHMKit" - s.version = "0.0.1" + s.version = "0.0.2" s.summary = "Map service responses to objects in Objective-C." s.description = <<-DESC Map service responses to objects. - This project is a [mixin](http://en.wikipedia.org/wiki/Mixin) to make any Objective-C class easier to hydrate from a dictionary representation, such as you might get from a RESTful web service. + OHMKit is a mixin to make any Objective-C class easier to hydrate from a dictionary representation, such as you might get from a RESTful web service. - It exists because [RestKit](https://github.com/RestKit/RestKit) (which is awesome by the way), is too big, heavy, and indirect. + It exists because RestKit (which is awesome by the way), is too big, heavy, and indirect. - There is no networking layer. Use [AFNetworking](https://github.com/AFNetworking/AFNetworking). + There is no networking layer. Use AFNetworking. DESC s.homepage = "https://github.com/fcanas/OHMKit" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Fabian Canas" => "fcanas@gmail.com" } - s.source = { :git => "https://github.com/fcanas/OHMKit.git", :tag => "0.0.1" } + s.source = { :git => "https://github.com/fcanas/OHMKit.git", :tag => "0.0.2" } s.ios.deployment_target = '5.0' s.osx.deployment_target = '10.7' s.source_files = 'Core'