CocoaPods-objc icon indicating copy to clipboard operation
CocoaPods-objc copied to clipboard

Update to Xcode 7 and CP 0.39

Open dbgrandi opened this issue 9 years ago • 4 comments

Lots of little things to get this back in shape.

  • update podspec to 0.39.0
  • updated models with rake task
  • updated test target to XCTest
  • deleted a few duplicate methods from rake task
  • ran pod update on Demo project
  • commented out ReactiveCocoa in Demo project AppDelegate
  • added a new AFNetworking3 json fixture (unused for now)
  • got tests :green_heart: again

Meanwhile, here in NYC...

dbgrandi avatar Nov 15 '15 02:11 dbgrandi

Can definitely consider this a WIP because I need to update the non-generated model files to include some of the new features that have been added to modern CP. (e.g. plugins, social_media_url, etc.)

dbgrandi avatar Nov 15 '15 02:11 dbgrandi

Getting closer...tests pass, but podspec doesn't lint.

dbgrandi avatar Nov 15 '15 21:11 dbgrandi

Some questionable decisions in those last two commits. I had an issue that I did not fully grok, but managed to get things back to green.

- ERROR | [OSX] xcodebuild:  YAML-Framework/YAMLSerialization.h:11:9: error: include of non-modular header inside framework module 'YAML_Framework.YAMLSerialization' [-Werror,-Wnon-modular-include-in-framework-module]

Quick Solution:

  • added --allow-warnings to pod lint
  • added s.compiler_flags = '-Wno-non-modular-include-in-framework-module' to .podspec

dbgrandi avatar Nov 15 '15 22:11 dbgrandi

Alright, so I feel like this is good enough with a YAGNI sense for what we need for CP.app, this project has been dormant for 2 years so any improvement is :+1: - lets see what else we need as CP.app grows.

orta avatar Nov 16 '15 13:11 orta