forked from shenkevin/ALRadial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathALRadial.podspec
More file actions
17 lines (17 loc) · 791 Bytes
/
Copy pathALRadial.podspec
File metadata and controls
17 lines (17 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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