mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-28 10:22:38 +03:00
22 lines
620 B
Bash
22 lines
620 B
Bash
|
echo "Create podspec for realm"
|
||
|
cat > ./node_modules/realm/realm.podspec << ENDOFFILE
|
||
|
require 'json'
|
||
|
|
||
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
||
|
|
||
|
Pod::Spec.new do |s|
|
||
|
s.name = package['name']
|
||
|
s.version = package['version']
|
||
|
s.summary = package['description']
|
||
|
s.license = package['license']
|
||
|
|
||
|
s.authors = package['author']
|
||
|
s.homepage = package['homepage']
|
||
|
s.platform = :ios, "7.0"
|
||
|
|
||
|
s.source = { :git => "https://github.com/realm/realm-js.git", :tag => "#{s.version}" }
|
||
|
s.source_files = "ios/*.{h,m}"
|
||
|
|
||
|
s.dependency 'React'
|
||
|
end
|
||
|
ENDOFFILE
|