diff --git a/OpenVPNAdapter.podspec b/OpenVPNAdapter.podspec index a85789b74..a2568d810 100644 --- a/OpenVPNAdapter.podspec +++ b/OpenVPNAdapter.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'OpenVPNAdapter' - s.version = '0.0.6' + s.version = '0.0.7' s.summary = 'OpenVPNAdapter is an Objective-C framework that allows to easily configure and establish VPN connection using OpenVPN protocol' s s.description = <<-DESC @@ -24,7 +24,7 @@ The framework is designed to use in conjunction with NetworkExtension framework s.ios.deployment_target = '9.0' s.osx.deployment_target = '10.11' - s.source = { :http => 'https://github.com/MeGaPk/OpenVPNAdapter/releases/download/v0.0.6/OpenVPNAdapter.framework.zip' } + s.source = { :http => 'https://github.com/MeGaPk/OpenVPNAdapter/releases/download/v0.0.7/OpenVPNAdapter.framework.zip' } s.ios.source_files = 'OpenVPNAdapter.framework/Headers/*.h' s.ios.public_header_files = 'OpenVPNAdapter.framework/Headers/*.h' diff --git a/OpenVPNAdapter.podspec_template b/OpenVPNAdapter.podspec_template new file mode 100644 index 000000000..cce5ab19b --- /dev/null +++ b/OpenVPNAdapter.podspec_template @@ -0,0 +1,40 @@ +# +# Be sure to run `pod lib lint Taxofon-NetworkApi.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 = 'OpenVPNAdapter' + s.version = '%VERSION%' + s.summary = 'OpenVPNAdapter is an Objective-C framework that allows to easily configure and establish VPN connection using OpenVPN protocol' +s + s.description = <<-DESC +OpenVPNAdapter is an Objective-C framework that allows to easily configure and establish VPN connection using OpenVPN protocol. It is based on the original openvpn3 library so it has every feature the library has. + +The framework is designed to use in conjunction with NetworkExtension framework and doesn't use any private Apple API. Compatible with iOS and macOS and also Swift friendly. + DESC + + s.homepage = 'https://github.com/MeGaPk/OpenVPNAdapter' + s.license = { :type => 'AGPLv3', :file => 'LICENSE' } + s.author = { 'MeGaPk' => 'megapk@gmail.com' } + + s.ios.deployment_target = '9.0' + s.osx.deployment_target = '10.11' + + s.source = { :http => 'https://github.com/MeGaPk/OpenVPNAdapter/releases/download/v%VERSION%/OpenVPNAdapter.framework.zip' } + + s.ios.source_files = 'OpenVPNAdapter.framework/Headers/*.h' + s.ios.public_header_files = 'OpenVPNAdapter.framework/Headers/*.h' + s.ios.vendored_frameworks = 'OpenVPNAdapter.framework' + + s.osx.source_files = 'OpenVPNAdapter.framework/Headers/*.h' + s.osx.public_header_files = 'OpenVPNAdapter.framework/Headers/*.h' + s.osx.vendored_frameworks = 'OpenVPNAdapter.framework' + + s.frameworks = 'NetworkExtension', 'SystemConfiguration' + # s.static_framework = true + s.module_name = 'OpenVPNAdapter' +end