rhodgkins / fh-ios-sdk

FeedHenry iOS SDK

Home Page:http://www.feedhenry.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FeedHenry iOS SDK Build Status

The iOS Software Development Kit to connect to the FeedHenry platform.

Release Process

The project relies on Cocoapods and it's respective plugins 'cocoapods-packager' and 'cocoapods-appledoc', so please ensure that are installed in your system. If not, please execute the following:

[sudo] gem install cocoapods cocoapods-packager cocoapods-appledoc

Common Actions

  • Update the VERSION.txt and fh-ios-sdk/FHDefines.h with the new version number.
  • Update ```CHANGELOG.md`` with the new release and content.

a) Release on Cocoapods [Required Step]

  • Update FH.podspec, s.version attribute with the new version number.
  • Tag the repository with the new version number:
git tag -s -a {VERSION} -m 'version {VERSION}'   // e.g. {VERSION} format is  '2.2.5'
  • Push the new release tag on GitHub:
git push origin {TAG}
  • Publish the FH.podspec on the Cocoapods repo with:
 	pod trunk push --allow-warnings

--allow-warnings is required to skip some deprecation warnings from a underlying dependency library. This will be circumvented in a future release.

b) Release on GitHub

  • Once you have published on Cocoapods it's time to do a GitHub release. To do so run the script:
./github-release.sh

This will produce two files in the Releases-{version} directory. You can then attach them on the GitHub release page.

c) Generate API Documentation

To generate API documentation and sync with the GitHub pages placeholder, switch to 'gh-pages' branch and follow the instructions there.

Usage

See iOS SDK Guide.

Links

About

FeedHenry iOS SDK

http://www.feedhenry.com

License:Other


Languages

Language:Objective-C 99.0%Language:Ruby 0.8%Language:Shell 0.2%