Skip to content

Commit

Permalink
fix: Fix podspec version
Browse files Browse the repository at this point in the history
Fixes #97
  • Loading branch information
Rapsssito committed Feb 25, 2021
1 parent 009cf99 commit f808cfe
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions react-native-tcp-socket.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,12 @@ package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "react-native-tcp-socket"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-tcp-socket
DESC
s.homepage = "https://github.com/Rapsssito/react-native-tcp-socket"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Rapsssito" => "contact@rodrigomartin.dev" }
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.authors = package['author']
s.platforms = { :ios => "9.0", :tvos => "10.0", :osx => "10.14" }
s.source = { :git => "https://github.com/Rapsssito/react-native-tcp-socket.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/Rapsssito/react-native-tcp-socket.git", :tag => "#v{s.version}" }

s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
Expand All @@ -23,4 +18,3 @@ Pod::Spec.new do |s|
s.dependency "CocoaAsyncSocket"

end

0 comments on commit f808cfe

Please sign in to comment.