-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDRYNavigationManager.podspec
More file actions
19 lines (17 loc) · 1.11 KB
/
DRYNavigationManager.podspec
File metadata and controls
19 lines (17 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "DRYNavigationManager"
s.version = "2.0.0"
s.summary = "Navigation manager to separate navigation logic from you core app code, when not using StoryBoards."
s.description = <<-DESC
In StoryBoard-less projects, this small framework should help out in separating the navigation code from the actual view controller code, much like segues enable this when using story boards.
DESC
s.homepage = "https://github.com/appfoundry/DRYNavigationManager"
s.license = 'MIT'
s.author = { "Michael Seghers" => "mike.seghers@appfoundry.be", "Bart Vandeweerdt" => "bart.vandeweerdt@appfoundry.be", "Joris Dubois" => "joris.dubois@appfoundry.be", "Jens Goeman" => "jens.goeman@appfoundry.be" }
s.source = { :git => "https://github.com/appfoundry/DRYNavigationManager.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/appfoundrybe'
s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Classes/**/*.{h,m}'
end