forked from icapps/ios-stella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStella.podspec
34 lines (29 loc) · 1.14 KB
/
Stella.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint Stella.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Stella'
s.version = '1.3.0'
s.summary = 'A set of utilities that can be used during iOS development in Swift.'
s.description = <<-DESC
Stella contains utlities methods that make it easier for you to code in Swift.
The features that are currently added are:
- User defaults handling
- Localization
- Printing
- Threading
DESC
s.homepage = 'https://github.com/icapps/ios-stella'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Jelle Vandebeeck' => '[email protected]' }
s.source = { git: 'https://github.com/icapps/ios-stella.git', tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/icapps'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/**/*'
end