Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flutter用のpodspecがlintが壊れて配布できていなかったのを修正 #88

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PAYJPFlutterCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require './podspec'
Pod::Spec.new do |s|
s.name = 'PAYJPFlutterCore'
s.version = PAYJPSDK::VERSION
s.summary = 'PAY.JP iOS SDK for Flutter distribution'
s.summary = 'PAY.JP iOS SDK for Flutter'
s.description = 'PAY.JP iOS SDK https://pay.jp/docs'

s.homepage = PAYJPSDK::HOMEPAGE_URL
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ platform :ios do

desc "Lint podspec"
lane :lint_podspec do
sh('pod lib lint ../PAYJP.podspec --allow-warnings')
sh('pod lib lint ../PAYJPFlutterCore.podspec --allow-warnings')
sh('pod lib lint ../PAYJP.podspec')
sh('pod lib lint ../PAYJPFlutterCore.podspec')
pod_version = PAYJPSDK::VERSION
info_version = get_version_number
unless pod_version == info_version then
Expand Down