-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFueledUtils.podspec
More file actions
22 lines (16 loc) · 1.05 KB
/
FueledUtils.podspec
File metadata and controls
22 lines (16 loc) · 1.05 KB
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' => 'vadim@fueled.com', 'stephane-fueled' => 'stephane@fueled.com', 'leonty-fueled' => 'leonty@fueled.com', 'bastien-fueled' => 'bastien@fueled.com', 'ivan-fueled' => 'ivan@fueled.com', 'thib4ult' => 'thibault@fueled.com', 'benoit-fueled' => 'benoit@fueled.com' }
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