Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of github.com:CocoaPods/Specs
# By Fabio Pelosin
# Via Fabio Pelosin
* 'master' of github.com:CocoaPods/Specs:
  [Update] DSFavIconManager (0.10.1)
  [Fix] ReactiveCocoa.
  • Loading branch information
Kevin Renskers committed Oct 5, 2012
2 parents 57ce18d + 1112ba7 commit 8edd2ad
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
22 changes: 22 additions & 0 deletions DSFavIconManager/0.10.1/DSFavIconManager.podspec
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = "DSFavIconManager"
s.version = "0.10.1"
s.summary = "DSFavIconManager is a complete solution for displaying favicons."
s.homepage = "https://github.com/Discontinuity-srl/DSFavIconManager"
s.author = { 'Fabio A. Pelosin' => 'fabio@discontinuity.it' }
s.source = { :git => "https://github.com/Discontinuity-srl/DSFavIconManager.git", :tag => s.version.to_s }
s.source_files = 'Classes'
s.requires_arc = true
s.license = "MIT"
s.description = <<-DESC
DSFavIconManager is a complete solution for displaying favicons.
Features:
- Download a favicon from the URL.
- Fast and concurrent.
- Cache icons in memory and in disk.
- It doesn't uses a full blown HTML parser.
- Optional fall-back to apple touch icons for retina displays.C
DESC
end
24 changes: 18 additions & 6 deletions ReactiveCocoa/0.8.0/ReactiveCocoa.podspec
Expand Up @@ -11,12 +11,24 @@ Pod::Spec.new do |s|
"2. An approach to minimizing state and mutability.\n" \
"3. A declarative way to define behaviors and the relationships between properties.\n" \
"4. A unified, high-level interface for asynchronous operations.\n" \
"5. A lovely API on top of KVO.\n"
"5. A lovely API on top of KVO."

files = FileList['ReactiveCocoaFramework/ReactiveCocoa/*.{h,m}']
s.ios.source_files = files.dup.exclude(/NSButton/, /AppKit/,/NSTask/)
s.osx.source_files = files.dup.exclude(/UIControl/, /UIText/, /Event/, /DelegateProxy/)
s.requires_arc = true
s.dependency 'JRSwizzle', '~> 1.0'
s.dependency 'libextobjc/EXTConcreteProtocol', '~> 0.1.0'

s.subspec 'Core' do |sp|
files = FileList['ReactiveCocoaFramework/ReactiveCocoa/*.{h,m}']
sp.ios.source_files = files.dup.exclude(/NSButton/, /AppKit/)
sp.osx.source_files = files.dup.exclude(/UIControl/, /UIText/, /Event/, /DelegateProxy/)
sp.header_dir = 'ReactiveCocoa'

sp.dependency 'JRSwizzle', '~> 1.0'
sp.dependency 'libextobjc/EXTConcreteProtocol', '~> 0.1.0'
end

s.subspec 'RACExtensions' do |sp|
files = FileList['RACExtensions/*.{h,m}']
sp.ios.source_files = files.dup.exclude(/NSTask/)
sp.osx.source_files = files
sp.dependency 'ReactiveCocoa/Core'
end
end

0 comments on commit 8edd2ad

Please sign in to comment.