Skip to content

Commit

Permalink
Release 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JDongKhan committed Jul 27, 2017
1 parent a3611a2 commit 3e70cca
Showing 1 changed file with 100 additions and 19 deletions.
119 changes: 100 additions & 19 deletions JDRouter.podspec
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,27 +1,108 @@
Pod::Spec.new do |spec|
spec.name = 'JDRouter'
spec.version = '1.2.3'
spec.summary = 'JD'
spec.description = <<-DESC


Pod::Spec.new do |s|

s.name = "JDRouter"
s.version = "1.2.4"
s.summary = "JDRouter"

s.description = <<-DESC
JDRouter
DESC
DESC

s.homepage = "https://github.com/wangjindong/JDRouter.git"

# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Licensing your code is important. See http://choosealicense.com for more info.
# CocoaPods will detect a license file if there is a named LICENSE*
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
#

s.license = { :type => 'MIT', :file => 'LICENSE' }
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }


# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the authors of the library, with email addresses. Email addresses
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
# accepts just a name if you'd rather not provide an email address.
#
# Specify a social_media_url where others can refer to, for example a twitter
# profile URL.
#

s.author = { "wangjindong" => "419591321@qq.com" }
s.platform = :ios, "6.0"

# When using multiple platforms
# s.ios.deployment_target = "5.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"


spec.homepage = "https://github.com/wangjindong"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "wangjindong" => "419591321@qq.com" }
spec.social_media_url = "http://twitter.com/wjd"
spec.source = { :git => "https://github.com/wangjindong/JDRouter.git", :tag => s.version.to_s }
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#

spec.platform = :ios,'7.0'
s.source = { :git => "https://github.com/wangjindong/JDRouter.git", :tag => s.version.to_s }

spec.source_files = 'Framework/**/*.{h,m,mm}'
#spec.resource = 'Framework/**/*.{png,xib,plist}'

spec.requires_arc = true
spec.ios.deployment_target = '7.0'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#

s.source_files = "Framework/**/*.{h,m}"
#s.exclude_files = "Classes/Exclude"

s.public_header_files = "Framework/**/*.h"


# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# A list of resources included with the Pod. These are copied into the
# target bundle with a build phase script. Anything else will be cleaned.
# You can preserve files from being cleaned, please don't preserve
# non-essential files like tests, examples and documentation.
#

# s.resource = "icon.png"
# s.resources = "Resources/*.png"

# s.preserve_paths = "FilesToSave", "MoreFilesToSave"


# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Link your library with frameworks, or libraries. Libraries do not include
# the lib prefix of their name.
#

# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"

# s.library = "iconv"
# s.libraries = "iconv", "xml2"

s.frameworks = 'Foundation', 'UIKit'

spec.public_header_files = 'Framework/**/*.h'

#依赖关系,该项目所依赖的其他库,如果有多个需要填写多个spec.dependency
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.

s.requires_arc = true

end
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }

end

0 comments on commit 3e70cca

Please sign in to comment.