Skip to content

Commit

Permalink
Update pod specs
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrePerrin committed Aug 2, 2017
1 parent 13cab10 commit 06e720b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
16 changes: 8 additions & 8 deletions ShadowView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "ShadowView"
s.version = "1.0.1"
s.version = '1.0.2'
s.summary = "ShadowView makes view's shadow implementation easy and sweet"

# This description is used to generate tags and improve search results.
Expand All @@ -25,8 +25,8 @@ Pod::Spec.new do |s|
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Add simple shadows or add a gaussian blurred projection (as a shadow) to any UIView.
DESC
Add simple shadows or add a gaussian blurred projection (as a shadow) to any UIView.
DESC

s.homepage = "https://github.com/PierrePerrin/ShadowView"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
Expand Down Expand Up @@ -65,7 +65,7 @@ Pod::Spec.new do |s|
#

# s.platform = :ios
s.platform = :ios, "9.0"
s.platform = :ios, "8.0"

# When using multiple platforms
# s.ios.deployment_target = "5.0"
Expand All @@ -80,7 +80,7 @@ Pod::Spec.new do |s|
# Supports git, hg, bzr, svn and HTTP.
#

s.source = { :git => "https://github.com/PierrePerrin/ShadowView.git", :tag => "#{s.version}" }
s.source = { :git => 'https://github.com/PierrePerrin/ShadowView.git', :tag => s.version.to_s }


# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand All @@ -91,7 +91,7 @@ Pod::Spec.new do |s|
# Not including the public_header_files will make all headers public.
#

s.source_files = "Sources", "ShadowView/ShadowView/"
s.source_files = 'Sources", "ShadowView/ShadowView/*.swift'
#s.exclude_files = "Classes/Exclude"

# s.public_header_files = "Classes/**/*.h"
Expand Down Expand Up @@ -119,7 +119,7 @@ Pod::Spec.new do |s|

# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
s.frameworks = 'Foundation', 'UIKit'
# s.frameworks = 'Foundation', 'UIKit'

# s.library = "iconv"
# s.libraries = "iconv", "xml2"
Expand All @@ -136,7 +136,7 @@ Pod::Spec.new do |s|
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"

s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.1' }
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0'}
s.requires_arc = true

end
4 changes: 4 additions & 0 deletions ShadowView/ShadowView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = ShadowView/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.ShadowView;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -520,6 +521,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = ShadowView/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.ShadowView;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -561,6 +563,7 @@
CLANG_ENABLE_MODULES = YES;
DEVELOPMENT_TEAM = PCKYQNTV3N;
INFOPLIST_FILE = ShadowViewExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.ShadowViewExample;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -576,6 +579,7 @@
CLANG_ENABLE_MODULES = YES;
DEVELOPMENT_TEAM = PCKYQNTV3N;
INFOPLIST_FILE = ShadowViewExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.ShadowViewExample;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion ShadowView/ShadowView/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
1 change: 0 additions & 1 deletion ShadowView/ShadowViewExample/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
Expand Down

0 comments on commit 06e720b

Please sign in to comment.