Skip to content

Commit

Permalink
Releasing version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MeGaPk committed Jul 18, 2018
1 parent 6e340b6 commit 01e5263
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenVPNAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down
40 changes: 40 additions & 0 deletions OpenVPNAdapter.podspec_template
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 01e5263

Please sign in to comment.