Skip to content

Commit

Permalink
Update RNFS.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
grabbou committed May 14, 2016
1 parent 01d43a0 commit 202b4b1
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions RNFS.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
require 'json'
pjson = JSON.parse(File.read('package.json'))

Pod::Spec.new do |s|

s.name = "RNFS"
s.version = "1.3.0"
s.homepage = "https://github.com/johanneslumpe/react-native-fs"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/johanneslumpe/react-native-fs.git" }
s.source_files = '*.{h,m}'
s.preserve_paths = "**/*.js"
s.dependency 'React/Core'
s.name = "RNFS"
s.version = pjson["version"]
s.homepage = "https://github.com/johanneslumpe/react-native-fs"
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = { "Johannes Lumpe" => "johannes@lum.pe" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/johanneslumpe/react-native-fs", :tag => "#{s.version}" }
s.source_files = '*.{h,m}'
s.preserve_paths = "**/*.js"

s.dependency 'React/Core'

end

0 comments on commit 202b4b1

Please sign in to comment.