Files

19 lines
623 B
Ruby
Raw Permalink Normal View History

2017-10-11 17:27:00 +01:00
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
2017-10-11 19:33:26 +01:00
s.name = "RNSecureRandom"
2017-10-11 17:27:00 +01:00
s.version = package["version"]
2017-10-11 19:33:26 +01:00
s.summary = "RNSecureRandom"
2017-10-11 17:27:00 +01:00
s.description = package["description"]
s.homepage = package["homepage"]
s.license = "MIT"
s.author = { "Rob Hogan" => "roberthogan@blueyonder.co.uk" }
s.platform = :ios, "7.0"
2017-10-11 19:33:26 +01:00
s.source = { :git => "https://github.com/author/RNSecureRandom.git", :tag => "master" }
s.source_files = "RNSecureRandom/**/*.{h,m}"
2017-10-11 17:27:00 +01:00
s.requires_arc = true
s.dependency "React"
end