From a0d730acad9c62208d1586b2d84cc8bbf9b9eb95 Mon Sep 17 00:00:00 2001 From: Haik Aslanyan Date: Mon, 13 Apr 2020 14:54:53 +0400 Subject: [PATCH] added podspecs --- RoundCode.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 RoundCode.podspec diff --git a/RoundCode.podspec b/RoundCode.podspec new file mode 100644 index 0000000..b3d698b --- /dev/null +++ b/RoundCode.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = 'RoundCode' + s.version = '1.0.0' + s.summary = 'Facebook messenger style custom barcode.' + s.description = <<-DESC + Facebook messenger style custom barcode. + DESC + s.homepage = 'https://github.com/aslanyanhaik/RoundCode' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'Haik Aslanyan' => 'aslanyanhaik@gmail.com' } + s.source = { :git => 'https://github.com/aslanyanhaik/RoundCode', :tag => s.version.to_s } + s.ios.deployment_target = '13.0' + s.source_files = 'Sources/**/*.swift' + s.frameworks = 'UIKit' + s.social_media_url = 'http://twitter.com/aslanyanhaik' + s.frameworks = 'UIKit' +end