mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-07 08:27:41 +02:00
14 lines
716 B
Ruby
Executable File
14 lines
716 B
Ruby
Executable File
Pod::Spec.new do |s|
|
|
s.name = "HPGrowingTextView"
|
|
s.version = "1.1"
|
|
s.summary = "Multi-line/Autoresizing UITextView similar to SMS-app."
|
|
s.description = "An UITextView which grows/shrinks with the text and starts scrolling when the content reaches a certain number of lines."
|
|
s.homepage = "https://github.com/HansPinckaers/GrowingTextView"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
|
s.author = { "Hans Pinckaers" => "hans.pinckaers@gmail.com" }
|
|
s.source = { :git => "https://github.com/HansPinckaers/GrowingTextView.git", :tag => s.version.to_s }
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'class/**/*.{h,m}'
|
|
s.requires_arc = true
|
|
end
|