-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlug.podspec
More file actions
18 lines (18 loc) · 984 Bytes
/
Plug.podspec
File metadata and controls
18 lines (18 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "Plug"
spec.version = "0.4.0"
spec.summary = "Plug is a multi-platform plugin architecture micro-framework and plugin manager written in pure Swift."
spec.description = <<-DESC
Plug is a multi-platform plugin architecture micro-framework and plugin manager written in pure Swift. It allows to define rules that has to be met to activate plugins at given plugin point.
DESC
spec.homepage = "https://github.com/lewandowskit93/Plug"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.author = { "Tomasz Lewandowski" => "tomasz.t.lewandowski@gmail.com" }
spec.source = { :git => "https://github.com/lewandowskit93/Plug.git", :tag => "#{spec.version}" }
spec.source_files = "Plug/**/*.swift"
spec.swift_versions = "5.1"
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '2.0'
end