Skip to content

Commit

Permalink
chore: improve project metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejpeters committed Oct 10, 2019
1 parent 0848055 commit bbf3349
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
29 changes: 16 additions & 13 deletions CapacitorBranchDeepLinks.podspec
@@ -1,14 +1,17 @@
require 'json'

Pod::Spec.new do |s|
s.name = 'CapacitorBranchDeepLinks'
s.version = '0.0.1'
s.summary = 'Capacitor plugin for Branch.io deep links'
s.license = 'MIT'
s.homepage = 'none'
s.author = 'Bound State Software'
s.source = { :git => 'none', :tag => s.version.to_s }
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '11.0'
s.dependency 'Capacitor'
s.dependency 'Branch'
end
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = 'CapacitorBranchDeepLinks'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = package['homepage']
s.author = package['author']
s.source = { :git => 'https://github.com/boundstate/capacitor-branch-deep-links', :tag => s.version.to_s }
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '11.0'
.dependency 'Capacitor'
s.dependency 'Branch'
end
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -10,7 +10,8 @@
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"author": "Bound State Software",
"author": "Bound State Software <info@boundstatesoftware.com>",
"homepage": "https://github.com/boundstate/capacitor-branch-deep-links",
"license": "MIT",
"dependencies": {
"@capacitor/core": "latest"
Expand All @@ -27,11 +28,10 @@
"CapacitorBranchDeepLinks.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native",
"branch.io",
"deep link"
"capacitor",
"capacitor-plugin",
"deep-links"
],
"capacitor": {
"ios": {
Expand Down

0 comments on commit bbf3349

Please sign in to comment.