From 51d70bb49284c164b0c519db9264e290dd649882 Mon Sep 17 00:00:00 2001 From: RuslaYupyn Date: Tue, 12 Jul 2016 16:34:52 +0300 Subject: [PATCH] added podspec file; --- Event.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Event.podspec diff --git a/Event.podspec b/Event.podspec new file mode 100644 index 0000000..34a86d9 --- /dev/null +++ b/Event.podspec @@ -0,0 +1,23 @@ +Pod::Spec.new do |s| + s.name = "Event" + s.version = "0.1.0" + s.license = { :type => "Apache 2", :file => "LICENSE" } + s.summary = "Reactive Events Foundation" + s.homepage = "https://github.com/reactive-swift/Event" + s.social_media_url = "https://github.com/reactive-swift/Event" + s.authors = { "Daniel Leping" => "daniel@crossroadlabs.xyz" } + + s.source = { :git => "https://github.com/reactive-swift/Event.git", :tag => "#{s.version}" } + + s.ios.deployment_target = "8.0" + s.osx.deployment_target = "10.10" + s.watchos.deployment_target = "2.0" + s.tvos.deployment_target = "9.0" + + s.source_files = "Event/*.swift" + + s.dependency 'ExecutionContext', '0.4.0' + + s.requires_arc = true + +end