Skip to content

Instantly share code, notes, and snippets.

@Igor-Palaguta
Created July 22, 2016 12:21
Show Gist options
  • Save Igor-Palaguta/e7626dfd98c3dfc34cb2cc85fd7c0411 to your computer and use it in GitHub Desktop.
Save Igor-Palaguta/e7626dfd98c3dfc34cb2cc85fd7c0411 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'Rex'
s.module_name = 'Rex'
s.version = '0.10.0'
s.summary = 'ReactiveCocoa Extensions'
s.description = <<-DESC
Extensions for ReactiveCocoa that may not fit in the core framework.
DESC
s.homepage = 'https://github.com/neilpa/Rex'
s.license = 'MIT'
s.author = { 'Neil Pankey' => 'npankey@gmail.com' }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => 'https://github.com/neilpa/Rex.git', :commit => 'fcad2fbe2e6c95d471c0fd1526c1a0ef785a412f' }
s.dependency 'ReactiveCocoa', '~> 4.2.2'
s.ios.framework = 'UIKit'
s.tvos.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.source_files = 'Source/**/*.swift'
s.ios.exclude_files = 'Source/AppKit/*'
s.tvos.exclude_files = 'Source/AppKit/*', 'Source/UIKit/UIDatePicker.swift', 'Source/UIKit/UISwitch.swift', 'Source/UIKit/UISegmentedControl.swift'
s.watchos.exclude_files = 'Source/AppKit/*', 'Source/UIKit/*'
s.osx.exclude_files = 'Source/UIKit/*'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment