-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGAMConstants.podspec
More file actions
15 lines (15 loc) · 979 Bytes
/
GAMConstants.podspec
File metadata and controls
15 lines (15 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "GTConstants"
s.version = "0.2.6"
s.summary = "Easy to use framework for managing Constants and String localization all while being changeable from your server."
s.description = %{ Easy to use framework for managing Constants and String localization all while being changeable from your server. Simply configure your server with an interceptions file and all constants will be changed }
s.homepage = "https://github.com/gametimesf/GTConstants"
s.license = 'MIT'
s.author = { "Mike Silvis" => "mike@gametime.co" }
s.source_files = 'Source/*.swift'
s.exclude_files = "Classes/Exclude"
s.ios.frameworks = 'Foundation', 'UIKit'
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/gametimesf/GTConstants.git', :tag => "#{s.version}" }
end