forked from wowmaking/react-native-image-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNImageTools.podspec
More file actions
25 lines (20 loc) · 821 Bytes
/
RNImageTools.podspec
File metadata and controls
25 lines (20 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "json"
version = JSON.parse(File.read("package.json"))["version"]
Pod::Spec.new do |s|
s.name = "RNImageTools"
s.version = version
s.summary = "RNImageTools"
s.description = <<-DESC
A collection of image processing tools for React Native
DESC
s.homepage = "https://github.com/wowmaking/react-native-image-tools"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "Dmitry Kazlouski" => "dkazlouski@wowmaking.net" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/wowmaking/react-native-image-tools", tag: "v" + s.version.to_s }
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true
s.dependency "React"
#s.dependency "others"
end