From f4927223c054ffff15200eccda693b1f8daf4140 Mon Sep 17 00:00:00 2001 From: Lucas Ortis Date: Tue, 1 Mar 2016 08:50:26 +0100 Subject: [PATCH] Add podspec --- Translucid.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Translucid.podspec diff --git a/Translucid.podspec b/Translucid.podspec new file mode 100644 index 0000000..0e8733f --- /dev/null +++ b/Translucid.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "Translucid" + s.version = "0.0.1" + s.summary = "Amazing text animated by an image, written in swift." + + s.description = "Simple and light weight UIView that animate text with an image." + + s.homepage = "https://github.com/Ekhoo/Translucid" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Lucas Ortis" => "me@lucas-ortis.com" } + s.platform = :ios, "8.0" + s.source = { :git => "https://github.com/Ekhoo/Translucid.git", :tag => s.version.to_s } + s.source_files = "Source/*.swift" + s.requires_arc = true +end