Skip to content

Commit cde7249

Browse files
committed
Initial commit
0 parents  commit cde7249

File tree

21 files changed

+1006
-0
lines changed

21 files changed

+1006
-0
lines changed

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# OS X
2+
.DS_Store
3+
4+
# Xcode
5+
build/
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata
15+
*.xccheckout
16+
profile
17+
*.moved-aside
18+
DerivedData
19+
*.hmap
20+
*.ipa
21+
22+
# Bundler
23+
.bundle
24+
25+
Carthage
26+
# We recommend against adding the Pods directory to your .gitignore. However
27+
# you should judge for yourself, the pros and cons are mentioned at:
28+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
29+
#
30+
# Note: if you ignore the Pods directory, make sure to uncomment
31+
# `pod install` in .travis.yml
32+
#
33+
# Pods/

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# references:
2+
# * http://www.objc.io/issue-6/travis-ci.html
3+
# * https://github.com/supermarin/xcpretty#usage
4+
5+
language: objective-c
6+
# cache: cocoapods
7+
# podfile: Example/Podfile
8+
# before_install:
9+
# - gem install cocoapods # Since Travis is not always on latest version
10+
# - pod install --project-directory=Example
11+
script:
12+
- set -o pipefail && xcodebuild test -workspace Example/ActionCableClient.xcworkspace -scheme ActionCableClient-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
13+
- pod lib lint

ActionCableClient.podspec

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#
2+
# Be sure to run `pod lib lint ActionCableClient.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = "ActionCableClient"
11+
s.version = "0.1.0"
12+
s.summary = "A short description of ActionCableClient."
13+
14+
# This description is used to generate tags and improve search results.
15+
# * Think: What does it do? Why did you write it? What is the focus?
16+
# * Try to keep it short, snappy and to the point.
17+
# * Write the description between the DESC delimiters below.
18+
# * Finally, don't worry about the indent, CocoaPods strips it!
19+
s.description = <<-DESC
20+
DESC
21+
22+
s.homepage = "https://github.com/<GITHUB_USERNAME>/ActionCableClient"
23+
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
24+
s.license = 'MIT'
25+
s.author = { "Daniel Rhodes" => "[email protected]" }
26+
s.source = { :git => "https://github.com/<GITHUB_USERNAME>/ActionCableClient.git", :tag => s.version.to_s }
27+
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
28+
29+
s.platform = :ios, '8.0'
30+
s.requires_arc = true
31+
32+
s.source_files = 'Pod/Classes/**/*'
33+
s.resource_bundles = {
34+
'ActionCableClient' => ['Pod/Assets/*.png']
35+
}
36+
37+
# s.public_header_files = 'Pod/Classes/**/*.h'
38+
# s.frameworks = 'UIKit', 'MapKit'
39+
# s.dependency 'AFNetworking', '~> 2.3'
40+
end

0 commit comments

Comments
 (0)