Skip to content

Commit

Permalink
add .podspec file for installation via CocoaPods
Browse files Browse the repository at this point in the history
  • Loading branch information
Harald Reingruber committed Oct 26, 2017
1 parent 811a4e1 commit b236ec8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions react-native-signature-capture.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
require "json"

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "react-native-signature-capture"
s.version = package["version"]
s.summary = package["description"]
s.author = package["author"]
s.homepage = package["homepage"]
s.license = package["license"]
s.platform = :ios, "8.4"
s.source = { :git => "https://github.com/RepairShopr/react-native-signature-capture", :tag => "#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.dependency "React"
end

0 comments on commit b236ec8

Please sign in to comment.