Skip to content

Instantly share code, notes, and snippets.

View bartvandendriessche's full-sized avatar

Bart Vandendriessche bartvandendriessche

  • http://www.astrangeloop.com
  • Belgium
View GitHub Profile
Pod::Spec.new do |s|
s.name = "SortedSet"
s.version = "1.0.1"
s.summary = "A Swift implementation of a SortedSet."
s.description = <<-DESC
A collection of unique hashable elements that maintains comparable order.
A fork of OrderedSet and heavily influenced by SortedArray.
Inspiration to fork due to this failed pull request.
DESC
@bartvandendriessche
bartvandendriessche / Mantle2.0.podspec.json
Created January 29, 2015 06:56
Podspec for Mantle 2.0-development
{
"name": "Mantle",
"version": "2.0",
"summary": "Model framework for Cocoa and Cocoa Touch.",
"homepage": "https://github.com/Mantle/Mantle",
"license": "MIT",
"authors": {
"GitHub": "support@github.com"
},
"source": {
//
// ViewController.m
// UIScrollViewAutoLayout
//
// Created by Bart Vandendriessche on 11/10/14.
// Copyright (c) 2014 Bart Vandendriessche. Copy freely and of your own will.
//
#import "ViewController.h"
@bartvandendriessche
bartvandendriessche / Mantle.podspec
Created January 20, 2014 11:23
Temporary podspec to use Mantle v2.0
Pod::Spec.new do |s|
s.name = "Mantle"
s.version = "2.0-development"
s.summary = "Model framework for Cocoa and Cocoa Touch."
s.homepage = "https://github.com/github/Mantle"
s.license = 'MIT'
s.author = { "GitHub" => "support@github.com" }
s.source = { :git => "https://github.com/github/Mantle.git", :branch => "2.0-development" }
Pod::Spec.new do |s|
s.name = "MHPrettyDate"
s.version = "1.0.1"
s.summary = "An iOS framework that provides a simple mechanism to get \"Pretty Dates\" (\"Yesterday\", \"Today\", etc.) from NSDate objects."
s.homepage = "https://github.com/bobjustbob/MHPrettyDate"
s.license = 'MIT'
s.author = { "Bobby Williams" => "bjackw@mac.com" }
s.source = { :git => "https://github.com/bobjustbob/MHPrettyDate.git", :head }
s.platform = :ios, '5.0'
s.source_files = 'MHPrettyDate/**/*.{h,m}'
Pod::Spec.new do |s|
s.name = 'CocoaHTTPServer'
s.version = '2.2.1'
s.license = 'BSD'
s.summary = 'A small, lightweight, embeddable HTTP server for Mac OS X or iOS applications.'
s.homepage = 'https://github.com/robbiehanson/CocoaHTTPServer'
s.authors = { 'Robbie Hanson' => 'cocoahttpserver@googlegroups.com' }
s.source = { :git => 'https://github.com/robbiehanson/CocoaHTTPServer.git', :tag => '2.2.1' }
s.source_files = '{Core,Extensions}/**/*.{h,m}'
Pod::Spec.new do |s|
s.name = 'TouchXML'
s.version = '0.1'
s.license = 'Simplified BSD License'
s.summary = "TouchXML is a lightweight replacement for Cocoa's NSXML* cluster of classes."
s.homepage = 'https://github.com/TouchCode/TouchXML'
s.author = { 'Jonathan Wight' => 'schwa@toxicsoftware.com' }
s.source = { :git => 'https://github.com/TouchCode/TouchXML.git', :commit => '7bd9f17adb5642b75bb0ebe381c18ec93c406832' }
s.source_files = 'Source/**/*.{h,m}'
s.requires_arc = true
Pod::Spec.new do |s|
s.name = 'Objective-Zip'
s.version = '0.0.1'
s.license = 'Copyright (c) 2009-2012, Flying Dolphin Studio All rights reserved.'
'Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:'
'Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.'
'Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.'
'Neither the name of Flying Dolphin Studio nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.'
'THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILI
@bartvandendriessche
bartvandendriessche / Simple-KML.podspec
Created December 10, 2012 07:56
Simple-KML podspec
Pod::Spec.new do |s|
s.name = "Simple-KML"
s.version = '0.0.1'
s.license = 'Copyright (c) 2010-2012, Code Sorcery Workshop, LLC and Development Seed, Inc. All rights reserved.'
'Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:'
'* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.'
'* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.'
@bartvandendriessche
bartvandendriessche / gist:4139300
Created November 24, 2012 11:38
Short list of steps followed to create a OpenElec Raspberry Pi SDCard on OSX Mountain Lion
  1. Download the most recent image from http://openelec.thestateofme.com/ Scroll towards the bottom, it should be the last file.
  2. Unzip the image somewhere
  3. Plug in a SDCard for the RaspberryPi, run diskutil list to find out what disk your SDCard is mounted as.
  4. Use Disk Utility to format your SDCard as FAT32
  5. Unmount your SDCard, run diskutil unmountDisk /dev/<id_of_your_sd_card>
  6. Put the image on your disk dd if=//r12563.img of=/dev/\ bs=1m