From 5b6ba9ad6df0bc7925793142214aaf98e728d692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastia=CC=81n=20Varela?= Date: Thu, 11 Jul 2019 14:20:22 +0200 Subject: [PATCH] Prepare first public version --- POEditor-Parser.podspec | 28 ++++++++++++++++++++++++++++ POEditorParser.podspec | 28 ---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 POEditor-Parser.podspec delete mode 100644 POEditorParser.podspec diff --git a/POEditor-Parser.podspec b/POEditor-Parser.podspec new file mode 100644 index 0000000..7acf051 --- /dev/null +++ b/POEditor-Parser.podspec @@ -0,0 +1,28 @@ +Pod::Spec.new do |s| + + s.name = "POEditor-Parser" + s.version = "1.0.0" + s.summary = "`POEditor-Parser` generates a swift file with an input strings file from POEditor" + + s.description = <<-DESC + `POEditor-Parser` generates a swift file with an input strings file from POEditor. + DESC + + s.homepage = 'https://github.com/bq/poeditor-parser-swift' + + s.license = { :type => 'APACHE', :file => 'LICENSE' } + s.author = { 'bq' => 'info@bq.com' } + s.source = { :git => 'https://github.com/bq/poeditor-parser-swift.git', :tag => "v#{s.version.to_s}" } + + s.social_media_url = 'https://twitter.com/bqreaders' + + s.ios.deployment_target = "9.0" + s.osx.deployment_target = "10.10" + + s.source_files = "Sources/" + s.public_header_files = "Sources/POEditorParser.h" + s.preserve_paths = [ "bin/poe" ] + s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' } + s.swift_version = '4.2' + s.static_framework = true +end diff --git a/POEditorParser.podspec b/POEditorParser.podspec deleted file mode 100644 index 75c0e67..0000000 --- a/POEditorParser.podspec +++ /dev/null @@ -1,28 +0,0 @@ -Pod::Spec.new do |s| - - s.name = "POEditorParser" - s.version = "0.3.8" - s.summary = "`POEditorParser` generates a swift file with an input strings file from POEditor." - - s.description = <<-DESC - `POEditorParser` generates a swift file with an input strings file from POEditor. - DESC - - s.homepage = "https://stash.bq.com/projects/IDA/repos/poeditorparser-swift" - - s.license = "BQ" - s.author = { "jorge.revuelta" => "jorge.revuelta@bq.com" } - s.social_media_url = "https://twitter.com/minuscorp" - - s.ios.deployment_target = "9.0" - s.osx.deployment_target = "10.10" - - s.source = { :git => "https://stash.bq.com/scm/ida/poeditorparser-swift.git", :tag => s.version } - - s.source_files = "Sources/" - s.public_header_files = "Sources/POEditorParser.h" - s.preserve_paths = [ "bin/poe" ] - s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' } - s.swift_version = '4.2' - s.static_framework = true -end