-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathRNStoreReview.podspec
More file actions
24 lines (20 loc) · 785 Bytes
/
RNStoreReview.podspec
File metadata and controls
24 lines (20 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "json"
version = JSON.parse(File.read("./package.json"))["version"]
Pod::Spec.new do |s|
s.name = "RNStoreReview"
s.version = version
s.summary = "App Store Ratings for React Native."
s.homepage = "https://github.com/oblador/react-native-store-review"
s.license = "MIT"
s.author = { "Joel Arvidsson" => "[email protected]" }
s.platform = :ios, "12.4"
s.source = { :git => "https://github.com/oblador/react-native-store-review.git", :tag => "v#{s.version}" }
s.source_files = "ios/*.{h,m,mm}"
s.preserve_paths = "**/*.js"
s.ios.framework = 'StoreKit'
s.requires_arc = true
s.dependency "React-Core"
if defined? install_modules_dependencies
install_modules_dependencies(s)
end
end