Skip to content

Instantly share code, notes, and snippets.

View brynbellomy's full-sized avatar

Bryn Bellomy brynbellomy

  • Texas, Republic of
View GitHub Profile
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."
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" \
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
#!/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"
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" \
@brynbellomy
brynbellomy / SwiftSets.podspec
Last active August 29, 2015 14:12
SwiftSets.podspec
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'
// 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() {
@brynbellomy
brynbellomy / swiftz.podspec
Created January 2, 2015 11:29
swiftz.podspec
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'
@brynbellomy
brynbellomy / Basis.podspec
Created January 2, 2015 12:38
Basis.podspec
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'
@brynbellomy
brynbellomy / Starscream.podspec
Last active August 29, 2015 14:12
Starscream.podspec
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'