This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "ReactiveCocoaLayout-HEAD" | |
| s.version = "5.3.2" | |
| s.summary = "Reactive layout framework built on top of ReactiveCocoa." | |
| s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaLayout" | |
| s.author = { "ReactiveCocoa" => "ReactiveCocoa" } | |
| s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "ReactiveCocoa" | |
| s.version = "2.0.0dev" | |
| s.summary = "A framework for composing and transforming sequences of values." | |
| s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source" | |
| s.author = { "Josh Abernathy" => "josh@github.com" } | |
| s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoa offers:\n" \ | |
| "1. The ability to compose operations on future data.\n" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "libextobjc" | |
| s.version = "0.3" | |
| s.summary = "A Cocoa library to extend the Objective-C programming language." | |
| s.homepage = "https://github.com/jspahrsummers/libextobjc" | |
| s.author = { "Justin Spahr-Summers" => "jspahrsummers@github.com" } | |
| s.source = { :git => "https://github.com/jspahrsummers/libextobjc.git", :tag => s.version.to_s } | |
| s.requires_arc = true | |
| # Provided as a convenience but not requiring all the subspecs because it would be redundant |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'semver' | |
| semver = SemVer.find | |
| plistFile = "Merle/Merle-Info.plist" | |
| currentVersion = semver.format "%M.%m.%p" # => "2.0.6" | |
| semver.patch += 1 | |
| newVersion = semver.format "%M.%m.%p" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "ReactiveCocoa" | |
| s.version = "1.9.7" | |
| s.summary = "A framework for composing and transforming sequences of values." | |
| s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source" | |
| s.author = { "Josh Abernathy" => "josh@github.com" } | |
| s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git", :tag => "v#{s.version}" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoa offers:\n" \ | |
| "1. The ability to compose operations on future data.\n" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'SwiftSets' | |
| s.version = '0.0.1' | |
| s.license = 'MIT' | |
| s.summary = 'Set types built for Swift' | |
| s.authors = { 'Nate Cook' => '' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/natecook1000/SwiftSets' | |
| s.ios.deployment_target = '8.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Set.swift | |
| // Copyright (c) 2014 Nate Cook, licensed under the MIT License | |
| import Foundation | |
| public struct Set<T: Hashable> : Equatable { | |
| typealias Element = T | |
| private var contents: [Element: Bool] | |
| public init() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'swiftz' | |
| s.version = '0.0.1' | |
| s.license = 'MIT' | |
| s.summary = '' | |
| s.authors = { 'Maxwell Swadling' => '' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/typelift/swiftz' | |
| s.ios.deployment_target = '8.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'Basis' | |
| s.version = '0.0.1' | |
| s.license = 'MIT' | |
| s.summary = '' | |
| s.authors = { 'Maxwell Swadling' => '' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/typelift/Basis' | |
| s.ios.deployment_target = '8.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'Starscream' | |
| s.version = '0.0.1' | |
| s.license = 'WTFPL' | |
| s.summary = 'Logging. In Swift.' | |
| s.authors = { 'Dalton and Austin Cherry' => '' } | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = 'https://github.com/daltoniam/Starscream' | |
| s.ios.deployment_target = '8.0' |