Skip to content
This repository was archived by the owner on May 26, 2019. It is now read-only.

Commit 456cb05

Browse files
committed
take podspec values from package.json
1 parent a163624 commit 456cb05

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RNCallKit.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
44

55
Pod::Spec.new do |s|
66
s.name = "RNCallKit"
7-
s.version = "1.1.3"
7+
s.version = package['version']
88
s.summary = package['description']
9-
s.homepage = "https://github.com/ianlin/react-native-callkit"
10-
s.license = "ISC"
11-
s.author = "ianlin"
9+
s.homepage = package['homepage]
10+
s.license = package['license']
11+
s.author = package['author']
1212
s.source = { :git => package['repository']['url'], :tag => "v#{s.version}" }
1313
s.requires_arc = true
1414
s.platform = :ios, "8.0"

0 commit comments

Comments
 (0)