From 5b3d2e8e3ddc0b6468206b0adffc35b1b3be8678 Mon Sep 17 00:00:00 2001 From: Vlas Voloshin Date: Sun, 29 Jan 2017 21:35:56 +1100 Subject: [PATCH] Added podspec. --- SubviewAttachingTextView.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 SubviewAttachingTextView.podspec diff --git a/SubviewAttachingTextView.podspec b/SubviewAttachingTextView.podspec new file mode 100644 index 0000000..f71ea74 --- /dev/null +++ b/SubviewAttachingTextView.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + + s.name = "SubviewAttachingTextView" + s.version = "1.0.0" + s.summary = "UITextView behavior and subclass that allow embedding subviews as attachments." + s.homepage = "https://github.com/vlas-voloshin/SubviewAttachingTextView" + s.license = "MIT" + s.author = { "Vlas Voloshin" => "argentumko@gmail.com" } + s.social_media_url = "https://twitter.com/argentumko" + s.platform = :ios, "8.0" + s.source = { :git => "https://github.com/vlas-voloshin/SubviewAttachingTextView.git", :tag => "#{s.version}" } + + s.source_files = "SubviewAttachingTextView/*.swift" + s.requires_arc = true + +end