react-native-video/react-native-video.podspec
Gil Birman 595bc19c87 Update react-native-video.podspec (#408)
When directory structure was refactored, source files were moved to `ios/` dir, but the podspec wasn't updated to reflect this.
2016-12-06 13:41:07 -05:00

22 lines
632 B
Ruby

require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-video"
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.license = "MIT"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/brentvatne/react-native-video.git", :tag => "#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.dependency "React"
end