Files
MessageKit/MessageKit.podspec
T
Martin Púčik 86cd13eafa Updated MessageKit.podspec to use resource_bundle instead of resources (#1460)
* Update MessageKit.podspec

Changed resources to resource_bundle

* Update CHANGELOG.md

* Update MessageKit.podspec

Update resource bundle getter for updated podspec bundle setting

* Update CHANGELOG.md

* Update CHANGELOG.md

Co-authored-by: Jakub Kašpar <kaspikk@gmail.com>
2020-10-06 10:08:59 +02:00

22 lines
691 B
Ruby

Pod::Spec.new do |s|
s.name = 'MessageKit'
s.version = '3.4.2'
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.summary = 'An elegant messages UI library for iOS.'
s.homepage = 'https://github.com/MessageKit/MessageKit'
s.social_media_url = 'https://twitter.com/_SD10_'
s.author = { "Steven Deutsch" => "stevensdeutsch@yahoo.com" }
s.source = { :git => 'https://github.com/MessageKit/MessageKit.git', :tag => s.version }
s.source_files = 'Sources/**/*.swift'
s.swift_version = '5.3'
s.ios.deployment_target = '12.0'
s.ios.resource_bundle = { 'MessageKit' => 'Sources/Assets.xcassets' }
s.dependency 'InputBarAccessoryView', '~> 5.2.1'
end