Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkaplan committed Dec 25, 2014
0 parents commit 6d13da0
Show file tree
Hide file tree
Showing 236 changed files with 12,164 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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

# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
# Pods/
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install: cd Example && pod install && cd -
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/YMBarbwire.xcworkspace -scheme YMBarbwire -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c
12 changes: 12 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
source 'https://github.com/CocoaPods/Specs.git'

target 'YMBarbwire', :exclusive => true do
pod "YMBarbwire", :path => "../"
end

target 'Tests', :exclusive => true do
pod "YMBarbwire", :path => "../"

pod 'Specta', '~> 0.2.1'
pod 'Expecta'
end
31 changes: 31 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
PODS:
- Expecta (0.3.1)
- Specta (0.2.1)
- YMBarbwire (0.0.1):
- YMBarbwire/asm (= 0.0.1)
- YMBarbwire/categories (= 0.0.1)
- YMBarbwire/core (= 0.0.1)
- YMBarbwire/no-arc (= 0.0.1)
- YMBarbwire/asm (0.0.1)
- YMBarbwire/categories (0.0.1):
- YMBarbwire/core
- YMBarbwire/core (0.0.1):
- YMBarbwire/asm
- YMBarbwire/no-arc
- YMBarbwire/no-arc (0.0.1)

DEPENDENCIES:
- Expecta
- Specta (~> 0.2.1)
- YMBarbwire (from `../`)

EXTERNAL SOURCES:
YMBarbwire:
:path: ../

SPEC CHECKSUMS:
Expecta: 03aabd0a89d8dea843baecb19a7fd7466a69a31d
Specta: 9141310f46b1f68b676650ff2854e1ed0b74163a
YMBarbwire: 113e6db23d34b04a60751dcc6d800734d6c9b52e

COCOAPODS: 0.35.0
19 changes: 19 additions & 0 deletions Example/Pods/Expecta/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6d13da0

Please sign in to comment.