151003d8e5
* selectorCell display repair Unable to display when value than apples first selectorOptions * fixed crash * fixed memory leaks * Cell disappears while inline picker is open * Fixes crash on update * check object object equal * codereview * fixed memory leaks * fixed memory leaks [2] * updated logic * fixed memory leaks * fix for crash #1043 * fix for crash #1044 * fix for issue #1044 * fix for issue #1044 * fixed mistake * fixed observation if lib uses in drawer controller * fixed kvo crash * reverted last fix * cleanup * fixed kvo * fix for crash #1043 * reverted https://github.com/xmartlabs/XLForm/pull/1045#discussion_r255965033 * reverted #948 * fixed firstResponder logic * codereview in Descriptors * codereview
18 lines
952 B
Ruby
18 lines
952 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'XLForm'
|
|
s.version = '4.0.1'
|
|
s.license = { :type => 'MIT' }
|
|
s.summary = 'XLForm is the most flexible and powerful iOS library to create dynamic table-view forms.'
|
|
s.description = <<-DESC
|
|
The goal of the library is to get the same power of hand-made forms but spending 1/10 of the time. XLForm provides a very powerful DSL used to create a form, validate & serialize the form data. It keeps track of this specification on runtime, updating the UI on the fly.
|
|
DESC
|
|
s.homepage = 'https://github.com/xmartlabs/XLForm'
|
|
s.authors = { 'Martin Barreto' => 'martin@xmartlabs.com' }
|
|
s.source = { :git => 'https://github.com/xmartlabs/XLForm.git', :tag => s.version }
|
|
s.source_files = 'XLForm/XL/**/*.{h,m}'
|
|
s.requires_arc = true
|
|
s.ios.deployment_target = '9.0'
|
|
s.ios.frameworks = 'UIKit', 'Foundation', 'CoreGraphics'
|
|
s.resource = 'XLForm/XLForm.bundle'
|
|
end
|