Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraskelton committed May 14, 2015
0 parents commit 3e927fb
Show file tree
Hide file tree
Showing 151 changed files with 6,819 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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

Pods
3 changes: 3 additions & 0 deletions .slather.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
coverage_service: coveralls
xcodeproj: Example/jot.xcodeproj
source_directory: jot
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
osx_image: xcode611
language: objective-c
before_install: gem install cocoapods xcpretty obcd slather -N
cache: cocoapods
podfile: Example/Podfile
env:
- LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
script:
- set -o pipefail && xcodebuild -workspace Example/jot.xcworkspace -scheme jot -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES clean test | xcpretty -c
- pod lib lint --quick
- obcd --path jot find HeaderStyle
after_success: slather
Binary file added Docs/jot-demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/jot-logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
source 'https://github.com/CocoaPods/Specs.git'

xcodeproj 'jot'

platform :ios, '8.0'

def install_pods
pod "jot", :path => "../jot.podspec"
end

target 'jot', :exclusive => true do
install_pods
end

target 'jotTests', :exclusive => true do
install_pods
pod 'Specta'
pod 'Expecta'
pod 'Expecta+Snapshots'
pod 'OCMockito'
end
36 changes: 36 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
PODS:
- Expecta (0.4.2)
- Expecta+Snapshots (1.3.2):
- Expecta (~> 0.3)
- FBSnapshotTestCase (= 1.6)
- FBSnapshotTestCase (1.6)
- jot (0.1.0):
- Masonry (~> 0.6.1)
- Masonry (0.6.1)
- OCHamcrest (4.1.1)
- OCMockito (1.4.0):
- OCHamcrest (~> 4.0)
- Specta (0.5.0)

DEPENDENCIES:
- Expecta
- Expecta+Snapshots
- jot (from `../jot.podspec`)
- OCMockito
- Specta

EXTERNAL SOURCES:
jot:
:path: ../jot.podspec

SPEC CHECKSUMS:
Expecta: 78b4e8b0c8291fa4524d7f74016b6065c2e391ec
Expecta+Snapshots: 40c5ec43b43da3bae957f14fed5dc9177d08ec8b
FBSnapshotTestCase: 9d5fe43b29ae3a0ed8fc829477971b281038f748
jot: a511770e707de67e980043b873a42d50588fadcc
Masonry: 4972309f2f134de9dd312f4dc4a21359b50e6caa
OCHamcrest: 6f03ffa81d12feab872638490a44ab0a6d3aca10
OCMockito: 4981140c9a9ec06c31af40f636e3c0f25f27e6b2
Specta: eb90708ed77569bbda089f8ead10bb99b8e9489e

COCOAPODS: 0.36.3
Loading

0 comments on commit 3e927fb

Please sign in to comment.