This file contains 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
# Xcode Auto-Versioning | |
# | |
# Updates your Info.plist's CFBundleVersion with the current git tag and/or sha. | |
# | |
# based on https://github.com/elliottcable/xcode-git-versioner | |
# | |
# Usage: | |
# 1. Right-click the target you want to add the versioning phase to (usually the target that builds your app) | |
# 2. Select: Add -> New Build Phase -> New Run Script Build Phase | |
# 3. Specify /usr/bin/env ruby as the shell for the script |
This file contains 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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: redis-server | |
# Required-Start: $syslog | |
# Required-Stop: $syslog | |
# Should-Start: $local_fs | |
# Should-Stop: $local_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: redis-server - Persistent key-value db |
This file contains 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
#import <dispatch/dispatch.h> | |
#import <objc/runtime.h> | |
@implementation MySingleton | |
static MySingleton * __singleton = nil; | |
+ (MySingleton *) sharedInstance_accessor | |
{ | |
return ( __singleton ); |
This file contains 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
require 'rubygems' | |
require 'sinatra' | |
require 'dm-core' | |
DataMapper::Logger.new($stdout, :debug) | |
DataMapper.setup(:default, 'sqlite3::memory:') | |
# Don't use this in production code! Extending lots of objects during runtime | |
# will have a negative impact on performance/memory because ruby clears out | |
# the method cache. |
NewerOlder