-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFueledUtils.podspec
22 lines (16 loc) · 1.05 KB
/
FueledUtils.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'FueledUtils'
s.version = '1.5'
s.summary = 'A collection of utilities used at Fueled'
s.description = <<-DESC
This is a collection of classes, extensions, methods and functions used within Fueled projects that aims at decomplexifying tasks that should be easy.
DESC
s.homepage = 'https://github.com/Fueled/ios-utilities'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'vadim-fueled' => '[email protected]', 'stephane-fueled' => '[email protected]', 'leonty-fueled' => '[email protected]', 'bastien-fueled' => '[email protected]', 'ivan-fueled' => '[email protected]', 'thib4ult' => '[email protected]', 'benoit-fueled' => '[email protected]' }
s.source = { :git => 'https://github.com/Fueled/ios-utilities.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.exclude_files = 'FueledUtils/FueledUtils.h'
s.source_files = "FueledUtils/*.swift"
s.dependency "ReactiveCocoa", "8.0.2"
end