-
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 #1 from square/bp/1.0.0-podspec
Update podspec for 1.0.0 release.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 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 |
---|---|---|
|
@@ -3,9 +3,9 @@ Pod::Spec.new do |s| | |
s.version = '1.0.0' | ||
s.license = 'Apache' | ||
s.summary = 'Aardvark is a library that makes it dead simple to create actionable bug reports.' | ||
s.homepage = 'https://stash.corp.squareup.com/projects/IOS/repos/aardvark/browse' | ||
s.authors = { 'Dan Federman' => '[email protected]' } | ||
s.source = { :git => 'https://stash.corp.squareup.com/scm/ios/aardvark.git', :tag => s.version } | ||
s.homepage = 'https://github.com/square/Aardvark' | ||
s.authors = 'Square' | ||
s.source = { :git => 'https://github.com/square/Aardvark.git', :tag => s.version } | ||
s.source_files = 'Aardvark/*.{h,m}', 'Categories/*.{h,m}', 'Other/*.{h,m}', 'Logging/*.{h,m}', 'Log Viewing/*.{h,m}', 'Bug Reporting/*.{h,m}' | ||
s.private_header_files = 'Categories/*.h', '**/*_Testing.h' | ||
s.ios.deployment_target = '6.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 |
---|---|---|
|
@@ -12,7 +12,7 @@ There are only three steps to get Aardvark logging and bug reporting up and runn | |
platform :ios, '6.0' | ||
pod 'Aardvark' | ||
``` | ||
Or manually checkout the submodule with `git submodule add [email protected]:Square/objc-Aardvark.git`, drag Aardvark.xcodeproj to your project, and add Aardvark as a build dependency. | ||
Or manually checkout the submodule with `git submodule add [email protected]:Square/Aardvark.git`, drag Aardvark.xcodeproj to your project, and add Aardvark as a build dependency. | ||
|
||
2) Call `[Aardvark addDefaultBugReportingGestureWithEmailBugReporterWithRecipient:]` to enable the creation of email bug reports. It is best to do this when you load your application’s UI. | ||
|
||
|
@@ -53,6 +53,6 @@ We’re glad you’re interested in Aardvark, and we’d love to see where you t | |
|
||
Any contributors to the master Aardvark repository must sign the [Individual Contributor License Agreement (CLA)](https://spreadsheets.google.com/spreadsheet/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1). It’s a short form that covers our bases and makes sure you’re eligible to contribute. | ||
|
||
When you have a change you’d like to see in the master repository, [send a pull request](https://github.com/square/objc-Aardvark/pulls). Before we merge your request, we’ll make sure you’re in the list of people who have signed a CLA. | ||
When you have a change you’d like to see in the master repository, [send a pull request](https://github.com/square/Aardvark/pulls). Before we merge your request, we’ll make sure you’re in the list of people who have signed a CLA. | ||
|
||
Thanks, and happy logging! |