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.
- Loading branch information
Showing
1 changed file
with
17 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,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "ALRadial" | ||
s.version = "0.1.0" | ||
s.summary = "Radial menus for iOS." | ||
s.description = <<-DESC | ||
ALRadial is meant to replicate the radial menu's found in the path ios app. A central button is used to display many others eminating out in a circle. | ||
DESC | ||
s.homepage = "https://github.com/alattis/ALRadial" | ||
s.license = { :type => 'MIT', :file => 'ReadMe.md' } | ||
s.author = 'Andrew Lattis' | ||
s.source = { :git => "https://github.com/alattis/ALRadial.git", :tag => "v0.1.0" } | ||
s.platform = :ios, '5.0' | ||
s.source_files = 'ALRadial/ALRadial/ALRadial*.{h,m}' | ||
s.public_header_files = 'ALRadial/ALRadial/ALRadial*.h' | ||
s.frameworks = 'QuartzCore', 'CoreGraphics' | ||
s.requires_arc = true | ||
end |