From 4c09d4fff026087e132ce1fbcbd69356f0d09256 Mon Sep 17 00:00:00 2001 From: IlyaKharabet Date: Mon, 19 Jun 2017 22:59:52 +0300 Subject: [PATCH 1/2] Add .podspec file --- TelegramFeedback.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 TelegramFeedback.podspec diff --git a/TelegramFeedback.podspec b/TelegramFeedback.podspec new file mode 100644 index 0000000..a8a9e9f --- /dev/null +++ b/TelegramFeedback.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + + s.name = "TelegramFeedback" + s.version = "1.0" + s.summary = "Simple framework for adding Telegram feedback in an iOS App" + s.description = "The framework contains helper class for sending messages in Telegram's channel" + s.homepage = "https://github.com/NoFearJoe/TelegramFeedback" + + s.license = { :type => "MIT", :file => "LICENSE.txt"} + + s.author = { "Ilya Kharabet" => "ilyakharabet@gmail.com" } + + s.platform = :ios, "9.0" + + s.source = { :git => "https://github.com/NoFearJoe/TelegramFeedback.git", :tag => s.version } + + s.source_files = "TelegramFeedback/TelegramFeedback/Sources/**/*.swift" + +end From 4bc45d6d905943844dbfdf08bd42383c2761766a Mon Sep 17 00:00:00 2001 From: IlyaKharabet Date: Tue, 20 Jun 2017 10:46:28 +0300 Subject: [PATCH 2/2] Change LICENSE file extension --- LICENSE => LICENSE.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENSE => LICENSE.txt (100%) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt