Authored by 郁健超

[Update] YH_Router (1.3.1)

  1 +#
  2 +# Be sure to run `pod lib lint YH_Router.podspec' to ensure this is a
  3 +# valid spec before submitting.
  4 +#
  5 +# Any lines starting with a # are optional, but their use is encouraged
  6 +# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  7 +#
  8 +
  9 +Pod::Spec.new do |s|
  10 + s.name = 'YH_Router'
  11 + s.version = '1.3.1'
  12 + s.summary = '平台级router方案'
  13 +
  14 + s.description = <<-DESC
  15 + 平台级router方案,快速注册服务,免发现
  16 + 大量快捷方法
  17 + 高度灵活,自主接入自定义router,自主接入url改写
  18 +
  19 + js rewrite 震撼登场。主要思路为使用js脚本编写rewrite实体对象,参照模板RewriterTemplate.js
  20 + DESC
  21 +
  22 + s.homepage = 'http://git.yoho.cn/ios/YH_Router'
  23 + s.license = { :type => 'MIT', :file => 'LICENSE' }
  24 + s.author = { 'willice9527' => 'jinlin.liu@yoho.cn' }
  25 + s.source = { :git => 'http://git.yoho.cn/ios/YH_Router.git', :tag => s.version.to_s }
  26 +
  27 + s.ios.deployment_target = '8.0'
  28 +
  29 + s.source_files = 'YH_Router/Classes/**/*'
  30 +
  31 + s.resource_bundles = {
  32 + 'YH_Router' => ['YH_Router/Assets/YH_Router.bundle/**/*']
  33 + }
  34 +
  35 + # s.public_header_files = 'Pod/Classes/**/*.h'
  36 + s.frameworks = 'Foundation'
  37 + # s.dependency 'AFNetworking', '~> 2.3'
  38 +end