Skip to content

Commit

Permalink
Merge pull request goodatlas#16 from MarcelBreasWAY/patch-1
Browse files Browse the repository at this point in the history
Added podspec file
  • Loading branch information
is343 authored Oct 24, 2019
2 parents b5a32de + 6bdfc27 commit 14b8a48
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions RNAudioRecord.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
require 'json'

package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = "RNAudioRecord"
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = "https://github.com/goodatlas/react-native-audio-record"
s.source = { :git => 'https://github.com/goodatlas/react-native-audio-record.git' }

s.requires_arc = true
s.platform = :ios, '7.0'

s.preserve_paths = 'README.md', 'package.json', 'index.js'
s.source_files = 'iOS/*.{h,m}'

s.dependency 'React'
end

0 comments on commit 14b8a48

Please sign in to comment.