Blame view

RNSpringScrollView.podspec 683 Bytes
75c87a8d   张志伟   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  require "json"
  
  package = JSON.parse(File.read(File.join(__dir__, "package.json")))
  
  Pod::Spec.new do |s|
    s.name         = "RNSpringScrollView"
    s.version      = package["version"]
    s.summary      = package["description"]
    s.homepage     = "https://github.com/bolan9999/react-native-spring-scrollview"
    s.license      = package["license"]
    s.author       = { "bolan9999" => "shanshang130@gmail.com" }
    s.platforms    = { :ios => "7.0", :tvos => "9.0" }
    s.source       = { :git => "https://github.com/bolan9999/react-native-spring-scrollview.git", :tag => s.version }
    s.source_files  = "ios/SpringScrollView/**/*.{h,m}"
    s.requires_arc = true
  
    s.dependency "React"
  end