Skip to content

Commit

Permalink
Add missed source file in podspec declarations, remove unnecessary s.…
Browse files Browse the repository at this point in the history
…ios.deployment_target declaration since Clue supports only single platform – iOS with minimum version 9.0
  • Loading branch information
Geek-1001 committed Apr 9, 2017
1 parent 9aabf26 commit ce532c1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Clue.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ Pod::Spec.new do |s|
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ahmed Sulaiman" => "ahmed.sulajman@gmail.com" }
s.social_media_url = "http://twitter.com/ahmed_sulajman"
s.platform = :ios
s.ios.deployment_target = "9.0"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/Geek-1001/Clue.git", :tag => "#{s.version}" }
s.source_files = "Clue/Classes/**/*.{h,m}", "Clue/*.{h,m}"
s.source_files = "Clue/Classes/**/*.{h,m}", "Clue/*.{h,m}", "Clue/Frameworks/**/*.{h,m,c}"
s.public_header_files = "Clue/*.h", "Clue/Classes/Models/CLUOptions.h"
s.module_name = "Clue"
s.frameworks = "Foundation", "UIKit", "MessageUI", "AVFoundation"
Expand Down

0 comments on commit ce532c1

Please sign in to comment.