Summary: Bump version and publish to npm + cocoapods Reviewed By: dshahidehpour Differential Revision: D4479027 fbshipit-source-id: 42aa81de1a5a07e3a2814670ad1cf3774519b353
28 lines
917 B
Ruby
28 lines
917 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Yoga'
|
|
s.version = '1.0.1'
|
|
s.summary = 'A cross-platform layout engine.'
|
|
s.homepage = 'https://github.com/facebook/yoga'
|
|
s.documentation_url = 'https://facebook.github.io/yoga'
|
|
s.description = 'Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.'
|
|
|
|
s.license = { :type => 'BSD', :file => "LICENSE" }
|
|
s.authors = 'Facebook'
|
|
s.social_media_url = 'https://twitter.com/fbOpenSource'
|
|
s.source = {
|
|
:git => 'https://github.com/facebook/yoga.git',
|
|
:tag => 'v2017.01.27.00',
|
|
}
|
|
s.module_name = 'yoga'
|
|
s.requires_arc = false
|
|
s.compiler_flags = [
|
|
'-fno-omit-frame-pointer',
|
|
'-fexceptions',
|
|
'-Wall',
|
|
'-Werror',
|
|
'-std=c11',
|
|
'-fPIC'
|
|
]
|
|
s.source_files = 'yoga/**/*.{c,h}'
|
|
end
|