Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
username0x0a committed Aug 4, 2017
2 parents 356c69f + beca75e commit 33b7d8c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ We build it as a generic platform project available on all Apple platforms.

For further details see [Full SDK documentation](http://docs.sygictravelapi.com/apple-sdk/latest/).

## Getting the SDK

### Installing via CocoaPods

Simply add a `TravelKit` pod to your `Podfile`. Then run `pod update` to fetch the SDK automatically.

### Getting the framework from GitHub

You can grab a released compiled SDK package or its source code on [GitHub](https://github.com/sygic-travel/apple-sdk). Check out the repository or grab it from the _Releases_ section.

## Development Requirements

All development requirements are actually recommendations as it reflects the environment we use to develop and distribute the code.
Expand Down
20 changes: 20 additions & 0 deletions TravelKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Pod::Spec.new do |spec|
spec.name = 'TravelKit'
spec.version = '1.0.3'
spec.license = 'MIT'
spec.homepage = 'https://github.com/sygic-travel/apple-sdk'
spec.authors = 'Tripomatic s.r.o.', 'Michal Zelinka'
spec.summary = 'Travel SDK for travelling projects'
spec.source = { :http => 'https://github.com/sygic-travel/apple-sdk/releases/download/v1.0.3/TravelKit-1.0.3-iOS.zip' }
spec.documentation_url = 'http://docs.sygictravelapi.com/apple-sdk/latest'
spec.module_name = 'TravelKit'

spec.platform = :ios
spec.ios.deployment_target = '8.2'

spec.framework = 'SystemConfiguration'
spec.ios.framework = 'CoreTelephony'
spec.ios.library = 'sqlite3'

spec.ios.vendored_frameworks = 'TravelKit.framework'
end

0 comments on commit 33b7d8c

Please sign in to comment.