Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
fix(podspec): Fix podspec (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Esemesek authored Jun 18, 2019
1 parent ecb777b commit 7b06771
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ART.podspec → ReactNativeART.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "@react-native-community/art"
s.name = "ReactNativeART"
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.authors = package['author']
s.homepage = package['homepage']
s.platforms = { :ios => "9.0", :tvos => "9.2" }

s.source = { :git => https://github.com/react-native-community/art.git, :tag => "v#{s.version}" }
s.source = { :git => "https://github.com/react-native-community/art.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"

s.dependency "React-Core"
s.dependency "React"
end

0 comments on commit 7b06771

Please sign in to comment.