Fix Ruby Podfile code style in docs (#324)

Summary:
2 spaces, and space before and after the `+`
Pull Request resolved: https://github.com/facebook/flipper/pull/324

Reviewed By: jknoxville

Differential Revision: D13082547

Pulled By: priteshrnandgaonkar

fbshipit-source-id: b6053ebde16a1f7f953704e0791622d3d59cc962
This commit is contained in:
Felix Krause
2018-11-15 06:20:53 -08:00
committed by Facebook Github Bot
parent ff3977da77
commit 01ef5c84d2

View File

@@ -98,22 +98,22 @@ flipperkit_version = '0.11.1'
target 'MyApp' do target 'MyApp' do
platform :ios, '9.0' platform :ios, '9.0'
pod 'FlipperKit', '~>'+flipperkit_version
pod 'FlipperKit', '~>' + flipperkit_version
# Layout and network plugins are not yet supported for swift projects # Layout and network plugins are not yet supported for swift projects
pod 'FlipperKit/FlipperKitLayoutComponentKitSupport', '~>' + flipperkit_version pod 'FlipperKit/FlipperKitLayoutComponentKitSupport', '~>' + flipperkit_version
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', '~>' + flipperkit_version pod 'FlipperKit/FlipperKitUserDefaultsPlugin', '~>' + flipperkit_version
post_install do |installer| post_install do |installer|
installer.pods_project.targets.each do |target|
installer.pods_project.targets.each do |target| if ['YogaKit'].include? target.name
if ['YogaKit'].include? target.name target.build_configurations.each do |config|
target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = swift_version
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end end
end
end end
end
end end
``` ```