Skip to content

Commit

Permalink
Change to single quotes podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyrpy committed Mar 13, 2024
1 parent 173d600 commit d5b80ac
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions ReepayCheckoutSheet.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = "ReepayCheckoutSheet"
s.name = 'ReepayCheckoutSheet'

# Do not update s.version directly.
# Update the VERSION file and run ./ci_scripts/update_version.sh
s.version = "0.0.7"
s.version = '0.0.7'

s.summary = "Reepay's prebuilt Checkout UI"
s.license = { type: 'MIT', file: 'LICENSE' }
Expand All @@ -12,14 +12,14 @@ Pod::Spec.new do |s|
CheckoutSheet is a prebuilt UI that contains the steps to pay in Reepay Checkout window - collecting payment details and confirming the payment.
The checkout is placed into a sheet or a fullscreen cover that displays on top of your app's UI.
DESC
s.homepage = "https://www.billwerk.plus/"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.homepage = 'https://www.billwerk.plus/'
# s.screenshots = 'www.example.com/screenshots_1.gif', 'www.example.com/screenshots_2.gif'
s.authors = { 'Reepay' => 'contact@billwerk.com' }
s.social_media_url = "https://www.linkedin.com/company/billwerkplus"
s.platform = :ios, "15.0"
s.source = { :git => "https://github.com/reepay/reepay-ios.git", :tag => s.version.to_s }
s.frameworks = "Foundation", "Combine", "UIKit", "WebKit"
s.vendored_frameworks = "ReepayCheckoutSheet/ReepayCheckoutSheet.xcframework"
s.social_media_url = 'https://www.linkedin.com/company/billwerkplus'
s.platform = :ios, '15.0'
s.source = { :git => 'https://github.com/reepay/reepay-ios.gi', :tag => s.version.to_s }
s.frameworks = 'Foundation', 'Combine', 'UIKit', 'WebKit'
s.vendored_frameworks = 'ReepayCheckoutSheet/ReepayCheckoutSheet.xcframework'
s.requires_arc = true
s.swift_version = "5.0"
s.swift_version = '5.0'
end

0 comments on commit d5b80ac

Please sign in to comment.