19 lines
683 B
Ruby
19 lines
683 B
Ruby
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "react-native-blur"
|
|
s.version = package["version"]
|
|
s.source_files = "ios/*.{h,m}"
|
|
s.ios.deployment_target = '8.0'
|
|
s.tvos.deployment_target = '9.0'
|
|
s.authors = { "Alexey Kureev" => "kureev-mail@ya.ru" }
|
|
s.license = "MIT"
|
|
s.summary = "Component implementation for UIVisualEffectView's blur and vibrancy effect."
|
|
s.homepage = "https://github.com/react-native-community/react-native-blur"
|
|
s.source = { :git => "https://github.com/react-native-community/react-native-blur.git" }
|
|
|
|
s.dependency 'React'
|
|
end
|