Merge pull request #182 from negativetwelve/mark/fix-podspec-url

[Podspec] Set podspec version from the package.json and fix git source in the Podspec
This commit is contained in:
Brent Vatne 2016-04-12 14:14:42 -04:00
commit 86ced65577

View File

@ -1,16 +1,21 @@
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-video"
s.version = "0.7.1"
s.version = package["version"]
s.summary = "A <Video /> element for react-native"
s.author = "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)"
s.homepage = "https://github.com:brentvatne/react-native-video"
s.homepage = "https://github.com/brentvatne/react-native-video"
s.license = "MIT"
s.platform = :ios, "8.0"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com:brentvatne/react-native-video" }
s.source = { :git => "https://github.com/brentvatne/react-native-video.git", :tag => "#{s.version}" }
s.source_files = "*.{h,m}"
s.dependency 'React'
s.dependency "React"
end