Skip to content

Commit

Permalink
Fix warnings from pods
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarm committed Oct 15, 2020
1 parent 14dc3e9 commit 9780cab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,7 @@ DerivedData
.bundle

Carthage
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#

Example/Pods/

# Swift Package Manager
Expand Down
10 changes: 8 additions & 2 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
inhibit_all_warnings!

def betterSegmentedControl
pod 'BetterSegmentedControl', :path => '../', :inhibit_warnings => false
end

target 'BetterSegmentedControl_Example' do
pod 'BetterSegmentedControl', :path => '../'
betterSegmentedControl
end

target 'BetterSegmentedControl_Tests' do
pod 'BetterSegmentedControl', :path => '../'
betterSegmentedControl

pod 'Quick', '~> 2.2'
pod 'Nimble', '~> 7.3'
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ SPEC CHECKSUMS:
Nimble-Snapshots: bbd1ab264bacc24a9ce24a8363bc05aac783aeb0
Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e

PODFILE CHECKSUM: a84635a977f3d0e6850e7888935f489adb8fd939
PODFILE CHECKSUM: 24128d495f1ac0c32d7296557c3319254ca517c7

COCOAPODS: 1.8.4
COCOAPODS: 1.9.3

0 comments on commit 9780cab

Please sign in to comment.