diff --git a/FortuneWheel.podspec b/FortuneWheel.podspec index 85bf55a..8d741ac 100644 --- a/FortuneWheel.podspec +++ b/FortuneWheel.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.name = 'FortuneWheel' s.version = '0.1.0' - s.summary = 'A short description of FortuneWheel.' + s.summary = 'A FortuneWheel library for iOS using SwiftUI' # This description is used to generate tags and improve search results. # * Think: What does it do? Why did you write it? What is the focus? @@ -18,25 +18,25 @@ Pod::Spec.new do |s| # * Finally, don't worry about the indent, CocoaPods strips it! s.description = <<-DESC -TODO: Add long description of the pod here. +'A FortuneWheel library for iOS using SwiftUI' DESC s.homepage = 'https://github.com/sameersyd/FortuneWheel' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'sameersyd' => 'sameer.nwaz@gmail.com' } s.source = { :git => 'https://github.com/sameersyd/FortuneWheel.git', :tag => s.version.to_s } - # s.social_media_url = 'https://twitter.com/' - + s.social_media_url = 'https://www.linkedin.com/in/sameer-nawaz-linked/' + s.ios.deployment_target = '13.0' - - s.source_files = 'FortuneWheel/Classes/**/*' - # s.resource_bundles = { - # 'FortuneWheel' => ['FortuneWheel/Assets/*.png'] - # } - - # s.public_header_files = 'Pod/Classes/**/*.h' - # s.frameworks = 'UIKit', 'MapKit' - # s.dependency 'AFNetworking', '~> 2.3' + s.source_files = 'Source/**/**' + s.swift_version = '5.0' + s.platforms = { + "ios": "13.0" + } + + s.resource_bundles = { + 'FortuneWheel' => ['FortuneWheel/**'] + } + end