Skip to content

Commit

Permalink
fixed validation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Feghal committed Aug 15, 2017
1 parent ce73355 commit 303149d
Show file tree
Hide file tree
Showing 8 changed files with 196 additions and 189 deletions.
5 changes: 5 additions & 0 deletions Example/FGRoute.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,11 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "FGRoute/FGRoute-Prefix.pch";
INFOPLIST_FILE = "FGRoute/FGRoute-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
VALID_ARCHS = "arm64 armv7 armv7s";
WRAPPER_EXTENSION = app;
};
name = Debug;
Expand All @@ -547,9 +549,12 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "FGRoute/FGRoute-Prefix.pch";
INFOPLIST_FILE = "FGRoute/FGRoute-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
MODULE_NAME = ExampleApp;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
VALID_ARCHS = "arm64 armv7 armv7s";
WRAPPER_EXTENSION = app;
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
FGRoute: 87e5e0db75b3e43431238ba3aa2cfd675ffb61b9
FGRoute: 82d0a55fba73c2e0323cfa5d99b6a8fb04db8c34

PODFILE CHECKSUM: 70a1a6c7368f87c148555ea7409afb4c813f28d1

Expand Down
18 changes: 9 additions & 9 deletions Example/Pods/Local Podspecs/FGRoute.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

342 changes: 172 additions & 170 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions Example/Pods/Target Support Files/FGRoute/FGRoute-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions FGRoute.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
Pod::Spec.new do |s|
s.name = 'FGRoute'
s.version = '0.1.0'
s.summary = 'A short description of FGRoute.'
s.summary = 'FGRoute is library to help developers get info from wifi interfaces.'
s.platform = :ios, '8.3'

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
Expand All @@ -18,14 +19,14 @@ Pod::Spec.new do |s|
# * Finally, don't worry about the indent, CocoaPods strips it!

s.description = <<-DESC
TODO: Add long description of the pod here.
FGRoute is library to help developers get info from wifi interfaces, such as get connected wifi SSID, route ip address, device local ip address etc.
DESC

s.homepage = 'https://github.com/Feghal/FGRoute'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'arturshakyan1996@gmail.com' => 'arturshakyan1996@gmail.com' }
s.source = { :git => 'https://github.com/Feghal/FGRoute', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/Feghal/FGRoute.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.ios.deployment_target = '8.0'
Expand All @@ -36,7 +37,7 @@ TODO: Add long description of the pod here.
# 'FGRoute' => ['FGRoute/Assets/*.png']
# }

s.public_header_files = 'Pod/Classes/**/*.h'
s.public_header_files = 'FGRoute/Classes/**/FGRoute.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end

0 comments on commit 303149d

Please sign in to comment.