Skip to content

Commit

Permalink
v0.5.3: Fixes in podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
birdofpreyru committed Jan 27, 2022
1 parent 5dce01f commit 64e9fec
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dr.pogodin/react-native-static-server",
"version": "0.5.2",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "git+https://github.com/birdofpreyru/react-native-static-server.git",
Expand Down
12 changes: 9 additions & 3 deletions react-native-static-server.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'react-native-static-server'
s.version = package['version']
s.summary = package['description']
s.summary = package['title']
s.description = package['description']
s.license = package['license']
s.author = package['author']['name']
s.authors = {
'Dr. Sergey Pogodin' => '[email protected]',
'Fred Chasen' => '[email protected]'
}
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/birdofpreyru/react-native-static-server.git' }
s.source = {
:git => 'https://github.com/birdofpreyru/react-native-static-server.git',
:tag => 'v' + package['version']
}

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

0 comments on commit 64e9fec

Please sign in to comment.