Skip to content

Commit

Permalink
Upload version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dana Brooks committed Nov 29, 2017
0 parents commit ba47b2c
Show file tree
Hide file tree
Showing 84 changed files with 51,579 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
@@ -0,0 +1,13 @@
# Xcode
/Example/build
*.xcworkspace
*.xcscmblueprint
*.xcuserstate
*.xcbkptlist
*.pbxuser
*.mode1v3
*.xcuserdatad/
*.xccheckout
*.xcscmblueprint
xcschememanagement.plist
Breakpoints.xcbkptlist
1 change: 1 addition & 0 deletions .swift-version
@@ -0,0 +1 @@
3.2
14 changes: 14 additions & 0 deletions .travis.yml
@@ -0,0 +1,14 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/CircuitSDK.xcworkspace -scheme CircuitSDK-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
23 changes: 23 additions & 0 deletions CircuitSDK.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = 'CircuitSDK'
s.version = '0.1.0'
s.summary = 'Circuit iOS SDK to build a text or media mobile application for iOS'
s.description = <<-DESC
'The iOS SDK is the Circuit client, exposing a clear abstracted API for Circuit PaaS.
The iOS SDK is built upon the Circuit JS SDK.'
DESC
s.homepage = 'https://github.com/circuit/circuit-ios-sdk'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Unify Inc.' => 'https://www.unify.com' }
s.source = { :git => 'https://github.com/circuit/circuit-ios-sdk.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/unifyco'
s.ios.deployment_target = '10.0'
s.source_files = 'Source/Classes/**/*'
s.public_header_files = 'Source/Classes/**/*.h'
s.resource_bundles = {
'CircuitSDK' => ['Source/scripts/**']
}
s.frameworks = 'JavaScriptCore'
s.dependency 'SocketRocket', '~> 0.4.2'
end

0 comments on commit ba47b2c

Please sign in to comment.