-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from square/federman/swift_support_2.0
[3.0] Swift!
- Loading branch information
Showing
82 changed files
with
1,545 additions
and
2,012 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
language: objective-c | ||
osx_image: xcode7 | ||
osx_image: xcode8 | ||
before_script: | ||
- bundle install | ||
script: | ||
- xcodebuild -project Aardvark.xcodeproj -scheme Aardvark -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build test | ||
- xcodebuild -project Aardvark.xcodeproj -scheme "Aardvark-iOS" -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build | ||
- bundle exec pod repo update --silent | ||
- bundle exec pod lib lint --verbose --fail-fast | ||
- bundle exec pod lib lint --verbose --fail-fast CoreAardvark.podspec | ||
- bundle exec pod lib lint --verbose --fail-fast Aardvark.podspec | ||
- xcodebuild -project Aardvark.xcodeproj -scheme Aardvark -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone SE" test | ||
- xcodebuild -project AardvarkSample/AardvarkSample.xcodeproj -scheme AardvarkSample -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Aardvark' | ||
s.version = '2.0.0' | ||
s.version = '3.0.0' | ||
s.license = 'Apache License, Version 2.0' | ||
s.summary = 'Aardvark is a library that makes it dead simple to create actionable bug reports.' | ||
s.homepage = 'https://github.com/square/Aardvark' | ||
s.authors = 'Square' | ||
s.source = { :git => 'https://github.com/square/Aardvark.git', :tag => s.version } | ||
s.ios.deployment_target = '6.0' | ||
s.source_files = 'Aardvark/**/*.{h,m}' | ||
s.ios.deployment_target = '8.0' | ||
s.source_files = 'Aardvark/**/*.{h,m,swift}' | ||
s.private_header_files = 'Aardvark/*_Testing.h', 'Aardvark/Private Categories/*.h' | ||
|
||
s.dependency 'CoreAardvark', '~> 1.0' | ||
s.dependency 'CoreAardvark', '~> 2.0' | ||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 0 additions & 99 deletions
99
Aardvark.xcodeproj/xcshareddata/xcschemes/CoreAardvark-iOS.xcscheme
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.