forked from willpowell8/LocalizationKit_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalizationKit.podspec
More file actions
30 lines (24 loc) · 1.42 KB
/
LocalizationKit.podspec
File metadata and controls
30 lines (24 loc) · 1.42 KB
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
#
# Be sure to run `pod lib lint LocalizationKit.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 = 'LocalizationKit'
s.version = '1.1.0'
s.summary = 'iOS Localization made easy. Localize texts and manage your translations in realtime to support multi lingual deployment.'
s.description = <<-DESC
LocalizationKit is the easiest way to manage your texts and translations. It removes the need to recompile and redeploy an app or website to support new languages and texts. It uses a combination of sockets and rest to allow you to manage an app without resubmitting to the app store to make linguistic changes. Localize your app in one easy to use location.
DESC
s.homepage = 'https://github.com/willpowell8/LocalizationKit_iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Will Powell' => '' }
s.source = { :git => 'https://github.com/willpowell8/LocalizationKit_iOS.git', :tag => s.version }
s.social_media_url = 'https://twitter.com/willpowelluk'
s.ios.deployment_target = '8.0'
s.source_files = 'LocalizationKit/Classes/**/*'
s.frameworks = 'UIKit'
s.dependency 'Socket.IO-Client-Swift', '~>8.1.1'
end