Skip to content

Commit

Permalink
Updated pod version, added comments and a missing import in public he…
Browse files Browse the repository at this point in the history
…ader
  • Loading branch information
j-sid committed Jan 30, 2019
1 parent 0bc545d commit 4f98f3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Classes/GTXChecksCollection.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
#pragma mark - Globals

/**
* The minimum size (width or height) for a given element to be easily accessible.
* Based on Apple's Human Interface Guidelines:
* https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/
* The minimum size (width or height) for a given element to be easily accessible. Please read
* Material design guidelines for more on touch targets:
* https://material.io/design/layout/spacing-methods.html#touch-click-targets
*/
static const float kGTXMinSizeForAccessibleElements = 44.0;

Expand Down
1 change: 1 addition & 0 deletions Classes/GTXiLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ FOUNDATION_EXPORT const unsigned char GTXiLibVersionString[];
#import <GTXiLib/GTXImageAndColorUtils.h>
#import <GTXiLib/GTXLogging.h>
#import <GTXiLib/GTXPluginXCTestCase.h>
#import <GTXiLib/GTXTestEnvironment.h>
#import <GTXiLib/GTXToolKit.h>
#import <GTXiLib/GTXTestSuite.h>
#import <GTXiLib/NSError+GTXAdditions.h>
4 changes: 2 additions & 2 deletions GTXiLib.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "GTXiLib"
s.version = "2.0"
s.version = "2.1"
s.summary = "iOS Accessibility testing library."
s.description = <<-DESC
iOS Accessibility testing library that works with XCTest based frameworks.
Expand All @@ -9,6 +9,6 @@ Pod::Spec.new do |s|
s.license = "Apache License 2.0"
s.author = "j-sid"
s.platform = :ios
s.source = { :git => "https://github.com/google/GTXiLib.git", :tag => "2.0.0" }
s.source = { :git => "https://github.com/google/GTXiLib.git", :tag => "2.1.0" }
s.source_files = "Classes/**/*.{h,m,swift}"
end

0 comments on commit 4f98f3a

Please sign in to comment.