diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt 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