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
{ | |
"name": "activation-uplift-input", | |
"namespace": "growth-analytics", | |
"type": "record", | |
"fields": [ | |
{ | |
"name": "city", | |
"type": "string" | |
}, | |
{ |
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
jenkins: | |
clouds: | |
- docker: | |
name: "docker" | |
dockerApi: | |
dockerHost: | |
uri: "tcp://docker:2376" | |
templates: | |
- labelString: "docker-agent" | |
dockerTemplateBase: |
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
jenkins: | |
systemMessage: "Jenkins configured automatically by Jenkins Configuration as Code plugin\n\n" | |
globalNodeProperties: | |
- envVars: | |
env: | |
- key: VARIABLE1 | |
value: foo | |
- key: VARIABLE2 | |
value: bar | |
securityRealm: |
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
extension NSManagedObject{ | |
static func createItem(moc: NSManagedObjectContext, entityName: String) -> NSManagedObject { | |
return NSEntityDescription.insertNewObjectForEntityForName( entityName, inManagedObjectContext: moc) | |
} | |
static func getListOfItems(moc: NSManagedObjectContext, entityName: String) -> [NSManagedObject]? { | |
let fetchRequest = NSFetchRequest(entityName: entityName) | |
do { |