diff --git a/Aardvark.podspec b/Aardvark.podspec index 1a1003b2..18a4b99a 100644 --- a/Aardvark.podspec +++ b/Aardvark.podspec @@ -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' => 'federman@squareup.com' } - 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' diff --git a/README.md b/README.md index 064959a6..49928ddd 100644 --- a/README.md +++ b/README.md @@ -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 git@github.com: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 git@github.com: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!