-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add .podspec file for installation via CocoaPods
- Loading branch information
Harald Reingruber
committed
Oct 26, 2017
1 parent
811a4e1
commit b236ec8
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |