Skip to content

Instantly share code, notes, and snippets.

View thecb4's full-sized avatar
🏳️‍🌈
All the things

thecb4 thecb4

🏳️‍🌈
All the things
View GitHub Profile
@thecb4
thecb4 / CRUD Example
Last active August 29, 2015 14:15
Setup Swift app for CRUD
// Create
let id = Test.create();
// Read One
let crudID = NSNumber(integer: 1)
let entity:Test? = Test.readOne(crudID);
// Read All
let entities = Test.readAll()
@thecb4
thecb4 / CRUD Example
Created February 22, 2015 05:00
Swift CoreData CRUD
// Create
let id = Test.create();
// Read One
let crudID = NSNumber(integer: 1)
let entity:Test? = Test.readOne(crudID);
// Read All
let entities = Test.readAll()
@thecb4
thecb4 / COMMIT_MSG.md
Created June 4, 2016 14:48
Standardized commit message for projects.

Standardized commit message

Added

Changed

Deprecated

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

[version],

Added

Changed

### https://raw.github.com/github/gitignore/32da2f83412ad9aeaaf5316338c50521a6bfd5df/Swift.gitignore
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData/

[App Name]

Developed by TheCB4

# Customise this file, documentation can be found here:
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md
# can also be listed using the `fastlane actions` command
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`
# If you want to automatically update fastlane if a new version is available:
# update_fastlane
github "CocoaLumberjack/CocoaLumberjack"
github "radex/SwiftyUserDefaults"
module Fastlane
module Actions
module SharedValues
GIT_DOCUMENTED_COMMIT_CUSTOM_VALUE = :GIT_DOCUMENTED_COMMIT_CUSTOM_VALUE
end
# To share this integration with the other fastlane users:
# - Fork https://github.com/fastlane/fastlane/tree/master/fastlane
# - Clone the forked repository
# - Move this integration into lib/fastlane/actions
---
folder:
name: "Project"
folderItems:
- folder:
name: "Framework"
folderItems:
- folder:
name: "Sources"
folderItems: