Skip to content

Commit

Permalink
Fix more validation errors/warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Jul 20, 2012
1 parent e574b0f commit 48666c6
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 18 deletions.
1 change: 0 additions & 1 deletion AKSemanticView/0.0.1/AKSemanticView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/indiebrain/AKSemanticView'
s.author = { 'Aaron Kuehler' => '[email protected]' }
s.source = { :git => 'https://github.com/indiebrain/AKSemanticView.git', :tag => '0.0.1' }
s.description = 'An optional longer description of AKSemanticView.'

s.source_files = 'AKSemanticView/src/**/*.{h,m}'
s.requires_arc = true
Expand Down
1 change: 0 additions & 1 deletion ARTableViewPager/1.0.0/ARTableViewPager.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/arconsis/ARTableViewPager'
s.author = { 'arconsis IT-Solutions GmbH' => '[email protected]' }
s.source = { :git => 'https://github.com/arconsis/ARTableViewPager.git', :tag => '1.0.0' }
s.description = 'An optional longer description of ARTableViewPager.'
s.platform = :ios
s.source_files = 'Classes/*.{h,m}'
s.requires_arc = true
Expand Down
3 changes: 1 addition & 2 deletions ActiveSupportInflector/0.0.1/ActiveSupportInflector.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ Pod::Spec.new do |s|
s.author = { "Tom Ward" => "[email protected]" }
s.source = { :git => "https://github.com/tomafro/ActiveSupportInflector.git", :commit => "c281b5d8432f12ad59c86195fbd583cc228822b7" }

# TODO uncomment once CocoaPods 0.6 is released
# s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }

s.description = "An Objective-C implementation of ActiveSupport's Inflector."

Expand Down
3 changes: 3 additions & 0 deletions PunchScrollView/1.0.0/PunchScrollView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/tapwork/PunchScrollView'
s.author = { 'Christian Menschel' => 'http://www.tapwork.de' }

# TODO please add a license
s.license = 'UNKNOWN!'

s.source = { :git => 'https://github.com/tapwork/PunchScrollView.git', :tag => '1.0.0' }

s.platform = :ios
Expand Down
8 changes: 2 additions & 6 deletions ReactiveCocoa/0.0.1/ReactiveCocoa.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ Pod::Spec.new do |s|
"5. A lovely API on top of KVO.\n"

files = FileList['ReactiveCocoaFramework/ReactiveCocoa/*.{h,m}']
if config.ios?
files.exclude(/NSButton/, /AppKit/)
else
files.exclude(/UIControl/, /UITextField/)
end
s.source_files = files
s.ios.source_files = files.dup.exclude(/NSButton/, /AppKit/)
s.osx.source_files = files.dup.exclude(/UIControl/, /UITextField/)
s.requires_arc = true
end
8 changes: 2 additions & 6 deletions ReactiveCocoa/0.5.0/ReactiveCocoa.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ Pod::Spec.new do |s|
"5. A lovely API on top of KVO.\n"

files = FileList['ReactiveCocoaFramework/ReactiveCocoa/*.{h,m}']
if config.ios?
files.exclude(/NSButton/, /AppKit/)
else
files.exclude(/UIControl/, /UITextField/)
end
s.source_files = files
s.ios.source_files = files.dup.exclude(/NSButton/, /AppKit/)
s.osx.source_files = files.dup.exclude(/UIControl/, /UITextField/)
s.requires_arc = true
end
5 changes: 3 additions & 2 deletions UIDeviceAddition/1.0/UIDeviceAddition.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ Pod::Spec.new do |s|
s.summary = 'Apple stopped supporting a unique identifier for iOS. This source code solves the problem. It generates a unique identifier based on the mac address of the device in combination with the bundle identifier.'
s.homepage = 'https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5'
s.author = 'Georg Kitz'

s.license = 'MIT'

s.source = { :git => 'https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5.git', :tag => 'v1.0' }

s.source_files = 'Classes/*.{h,m}'
end

0 comments on commit 48666c6

Please sign in to comment.