forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CocoaPods#5996 from hypercrypt/master
Added AOCUDL 1.0.0
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "AOCUDL" | ||
s.version = "1.0.0" | ||
s.summary = "AOCUDL - An alternative shorthand syntax to Dustin Bachrach's OCUDL." | ||
s.description = "The purpose of AOCUDL is to provide a simple way to define custom literals for Objective-C. These are correctly typecast, extensible and flexible." | ||
|
||
s.homepage = "http://www.dudas.co.uk/aocudl/" | ||
s.social_media_url = "http://twitter.com/hypercrypt" | ||
|
||
s.license = { :type => 'MIT', :file => 'License.md' } | ||
s.author = { "Klaus-Peter Dudas" => "[email protected]" } | ||
|
||
s.platform = :ios, '5.0' | ||
s.source = { :git => "https://github.com/hypercrypt/AOCUDL.git", :tag => "1.0.0" } | ||
s.source_files = 'AOCUDL/*.{h,m}' | ||
s.exclude_files = 'AOCUDLTests' | ||
s.framework = 'Foundation' | ||
|
||
s.requires_arc = true | ||
|
||
end |