Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial #1

Merged
merged 2 commits into from
May 16, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
AuthSamples/Sample/GoogleService-Info_multi.plist
AuthSamples/Sample/AuthCredentials.h
AuthSamples/Sample/GoogleService-Info.plist
AuthSamples/Sample/Application.plist
AuthSamples/SwiftSample/GoogleService-Info.plist
AuthSamples/SwiftSample/Info.plist
AuthSamples/SwiftSample/AuthCredentials.swift

Example/Database/App/GoogleService-Info.plist

Example/Storage/App/GoogleService-Info.plist

# OS X
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# Bundler
.bundle

Carthage
# Cocoapods recommends against adding the Pods directory to your .gitignore. See
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control

# Since Firebase is building libraries, not apps, we should not check in Pods.
# Pods are only used in the Examples and tests and doing a 'pod install' better
# matches our customers' environments.
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
Pods/
Podfile.lock
*.xcworkspace
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
osx_image: xcode8.1
language: objective-c
# cache: cocoapods
podfile: Example/Podfile
xcode_workspace: Example/Firebase.xcworkspace
xcode_scheme: AllTests

rvm: 2.3.1
before_install:
- gem uninstall cocoapods -a
- gem install cocoapods -v 1.2.0 # Since Travis is not always on latest version
- gem install xcpretty
- pod install --project-directory=Example --repo-update

script:
- ./test.sh
- pod lib lint FirebaseDev.podspec
Loading