forked from pchelnikov/PluggableAppDelegate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPluggableAppDelegate.podspec
More file actions
15 lines (14 loc) · 889 Bytes
/
PluggableAppDelegate.podspec
File metadata and controls
15 lines (14 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'PluggableAppDelegate'
s.version = '1.3.0'
s.summary = 'A lightweight service-oriented ApplicationDelegate for iOS, made in Swift.'
s.description = 'Using PluggableAppDelegate you separate AppDelegate from the services that you can plug to it. Each ApplicationService has its own life cycle that is shared with AppDelegate.'
s.homepage = 'https://github.com/pchelnikov/PluggableAppDelegate'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Michael Pchelnikov' => 'm.pchelnikov@gmail.com' }
s.source = { :git => 'https://github.com/pchelnikov/PluggableAppDelegate.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/pchelnikov'
s.swift_version = "5.0"
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*.swift'
end