-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathBartyCrouch.podspec
More file actions
28 lines (21 loc) · 1.3 KB
/
BartyCrouch.podspec
File metadata and controls
28 lines (21 loc) · 1.3 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
Pod::Spec.new do |s|
s.name = "BartyCrouch"
s.version = "4.15.0"
s.summary = "Localization/I18n: Incrementally update/translate your Strings files from .swift, .h, .m(m), .storyboard or .xib files."
s.description = <<-DESC
BartyCrouch incrementally updates your Strings files from your Code and from Interface Builder files. "Incrementally" means that
BartyCrouch will by default keep both your already translated values and even your altered comments. Additionally you can also use
BartyCrouch for machine translating from one language to 60+ other languages. Using BartyCrouch is as easy as running a few
simple commands from the command line what can even be automated using a build script within your project.
DESC
s.homepage = "https://github.com/Flinesoft/BartyCrouch"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Cihat Gündüz" => "cocoapods@cihatguenduez.de" }
s.social_media_url = "https://twitter.com/Jeehut"
s.source = { :http => "#{s.homepage}/releases/download/#{s.version}/portable_bartycrouch.zip" }
s.preserve_paths = "*"
s.ios.deployment_target = '11.0'
s.macos.deployment_target = '13.0'
s.tvos.deployment_target = '11.0'
s.swift_version = '5.7'
end