-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFuzeUtils.podspec
More file actions
21 lines (17 loc) · 977 Bytes
/
FuzeUtils.podspec
File metadata and controls
21 lines (17 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'FuzeUtils'
s.version = '0.6.5'
s.summary = 'This repository is meant to store several helper classes and extensions that are used in Fuze\'s personal projects.'
s.description = <<-DESC
FuzeUtils is a repository used by Fuze internally for easy access to several helper classes and extensions that are used throughout our apps. Please see the README file for more details.
DESC
s.homepage = 'https://github.com/gutenbergn/FuzeUtils'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'gutenbergn' => 'gutenbergn@gmail.com' }
s.source = { :git => 'https://github.com/gutenbergn/FuzeUtils.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/gutenbergn'
s.swift_version = '5.0'
s.ios.deployment_target = '15.0'
s.tvos.deployment_target = '15.0'
s.source_files = 'FuzeUtils/Classes/**/*'
end