Skip to content

Commit 2346c39

Browse files
authored
Merge pull request #91 from haraldreingruber/addPodspecFile
add .podspec file for installation via CocoaPods
2 parents 2f8a53b + b236ec8 commit 2346c39

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
require "json"
2+
3+
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4+
5+
Pod::Spec.new do |s|
6+
s.name = "react-native-signature-capture"
7+
s.version = package["version"]
8+
s.summary = package["description"]
9+
s.author = package["author"]
10+
s.homepage = package["homepage"]
11+
s.license = package["license"]
12+
s.platform = :ios, "8.4"
13+
s.source = { :git => "https://github.com/RepairShopr/react-native-signature-capture", :tag => "#{s.version}" }
14+
s.source_files = "ios/*.{h,m}"
15+
s.dependency "React"
16+
end

0 commit comments

Comments
 (0)