Skip to content

Commit 553da18

Browse files
committed
Added right podspec
1 parent a13979e commit 553da18

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

ios/RNImageManipulator.podspec

-17
This file was deleted.
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
require 'json'
2+
3+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4+
5+
Pod::Spec.new do |s|
6+
s.name = package['name']
7+
s.version = package['version']
8+
s.summary = package['description']
9+
s.license = package['license']
10+
11+
s.authors = package['author']
12+
s.homepage = package['homepage']
13+
s.platform = :ios, "9.0"
14+
15+
s.source = { :git => "https://github.com/skrafft/react-native-image-manipulator.git", :tag => "v#{s.version}" }
16+
s.source_files = 'ios/**/*.{h,m}'
17+
18+
s.dependency 'React'
19+
end

0 commit comments

Comments
 (0)