fix adding RNFS with CocoaPods (#264)

`v` from version has to be removed due to Malformed version number error
This commit is contained in:
Michał Mokijewski
2017-04-24 08:53:22 +01:00
committed by Ben Clayton
parent 07017bb142
commit 6ef5dae4c2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
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 = { :git => "https://github.com/johanneslumpe/react-native-fs", :tag => "v#{s.version}" }
s.source_files = '*.{h,m}'
s.preserve_paths = "**/*.js"