-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" => "[email protected]" } | ||
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' | ||
|