From 6fd3fec141eee211052842f7775a2793fbb4ac56 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Sun, 26 Oct 2014 16:02:05 +0000 Subject: [PATCH] Remove copyright headers Closes #12 --- Stencil.xcodeproj/project.pbxproj | 2 +- Stencil/Context.swift | 8 -------- Stencil/Lexer.swift | 8 -------- Stencil/Node.swift | 8 -------- Stencil/Parser.swift | 8 -------- Stencil/Result.swift | 8 -------- Stencil/Stencil.h | 3 +-- Stencil/Template.swift | 8 -------- Stencil/Tokenizer.swift | 8 -------- Stencil/Variable.swift | 8 -------- StencilTests/ContextTests.swift | 8 -------- StencilTests/LexerTests.swift | 8 -------- StencilTests/NodeTests.swift | 8 -------- StencilTests/ParserTests.swift | 8 -------- StencilTests/StencilTests.swift | 8 -------- StencilTests/TemplateTests.swift | 8 -------- StencilTests/VariableTests.swift | 8 -------- 17 files changed, 2 insertions(+), 123 deletions(-) diff --git a/Stencil.xcodeproj/project.pbxproj b/Stencil.xcodeproj/project.pbxproj index 57bcf9f..2a702f5 100644 --- a/Stencil.xcodeproj/project.pbxproj +++ b/Stencil.xcodeproj/project.pbxproj @@ -99,12 +99,12 @@ 77FAAE5419F91E480029DC5E /* Stencil */ = { isa = PBXGroup; children = ( + 77FAAE5719F91E480029DC5E /* Stencil.h */, 77FAAE6E19F920750029DC5E /* Context.swift */, 77EB082A19FA8600001870F1 /* Lexer.swift */, 7725B3D419F9438F002CF74B /* Node.swift */, 7725B3D619F94A43002CF74B /* Parser.swift */, 71CE4C0919FD29D000B9E0C5 /* Result.swift */, - 77FAAE5719F91E480029DC5E /* Stencil.h */, 77EB082419F96E88001870F1 /* Template.swift */, 7725B3CE19F94214002CF74B /* Tokenizer.swift */, 7725B3CC19F92B61002CF74B /* Variable.swift */, diff --git a/Stencil/Context.swift b/Stencil/Context.swift index 14746dc..9691a9c 100644 --- a/Stencil/Context.swift +++ b/Stencil/Context.swift @@ -1,11 +1,3 @@ -// -// Context.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation /// A container for template variables. diff --git a/Stencil/Lexer.swift b/Stencil/Lexer.swift index 9d10cd8..3fdf8e0 100644 --- a/Stencil/Lexer.swift +++ b/Stencil/Lexer.swift @@ -1,11 +1,3 @@ -// -// Lexer.swift -// Stencil -// -// Created by Kyle Fuller on 24/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public struct Lexer { diff --git a/Stencil/Node.swift b/Stencil/Node.swift index 31f6212..5cf6466 100644 --- a/Stencil/Node.swift +++ b/Stencil/Node.swift @@ -1,11 +1,3 @@ -// -// Node.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation struct NodeError : Error { diff --git a/Stencil/Parser.swift b/Stencil/Parser.swift index ba88b8e..c2b191d 100644 --- a/Stencil/Parser.swift +++ b/Stencil/Parser.swift @@ -1,11 +1,3 @@ -// -// Parser.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public func until(tags:[String])(parser:TokenParser, token:Token) -> Bool { diff --git a/Stencil/Result.swift b/Stencil/Result.swift index 369387a..915b489 100644 --- a/Stencil/Result.swift +++ b/Stencil/Result.swift @@ -1,11 +1,3 @@ -// -// Result.swift -// Stencil -// -// Created by Marius Rackwitz on 26/10/14. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public protocol Error : Printable { diff --git a/Stencil/Stencil.h b/Stencil/Stencil.h index fcfa5e2..4b357ec 100644 --- a/Stencil/Stencil.h +++ b/Stencil/Stencil.h @@ -4,6 +4,7 @@ // // Created by Kyle Fuller on 23/10/2014. // Copyright (c) 2014 Cocode. All rights reserved. +// See LICENSE for more details. // #import @@ -15,5 +16,3 @@ FOUNDATION_EXPORT double StencilVersionNumber; FOUNDATION_EXPORT const unsigned char StencilVersionString[]; // In this header, you should import all the public headers of your framework using statements like #import - - diff --git a/Stencil/Template.swift b/Stencil/Template.swift index 0407c5b..3f0a3d6 100644 --- a/Stencil/Template.swift +++ b/Stencil/Template.swift @@ -1,11 +1,3 @@ -// -// Template.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public class Template { diff --git a/Stencil/Tokenizer.swift b/Stencil/Tokenizer.swift index 53a1268..83884d2 100644 --- a/Stencil/Tokenizer.swift +++ b/Stencil/Tokenizer.swift @@ -1,11 +1,3 @@ -// -// Tokenizer.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public enum Token : Equatable { diff --git a/Stencil/Variable.swift b/Stencil/Variable.swift index afad9bb..715818f 100644 --- a/Stencil/Variable.swift +++ b/Stencil/Variable.swift @@ -1,11 +1,3 @@ -// -// Variable.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Foundation public struct Variable : Equatable { diff --git a/StencilTests/ContextTests.swift b/StencilTests/ContextTests.swift index 509bf2e..600f329 100644 --- a/StencilTests/ContextTests.swift +++ b/StencilTests/ContextTests.swift @@ -1,11 +1,3 @@ -// -// ContextTests.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/LexerTests.swift b/StencilTests/LexerTests.swift index 83e516a..2691cbe 100644 --- a/StencilTests/LexerTests.swift +++ b/StencilTests/LexerTests.swift @@ -1,11 +1,3 @@ -// -// LexerTests.swift -// Stencil -// -// Created by Kyle Fuller on 24/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/NodeTests.swift b/StencilTests/NodeTests.swift index 10e74c0..452d3ed 100644 --- a/StencilTests/NodeTests.swift +++ b/StencilTests/NodeTests.swift @@ -1,11 +1,3 @@ -// -// NodeTests.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/ParserTests.swift b/StencilTests/ParserTests.swift index 9740061..a326ca3 100644 --- a/StencilTests/ParserTests.swift +++ b/StencilTests/ParserTests.swift @@ -1,11 +1,3 @@ -// -// ParserTests.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/StencilTests.swift b/StencilTests/StencilTests.swift index 1c339fe..9f85f2d 100644 --- a/StencilTests/StencilTests.swift +++ b/StencilTests/StencilTests.swift @@ -1,11 +1,3 @@ -// -// StencilTests.swift -// StencilTests -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/TemplateTests.swift b/StencilTests/TemplateTests.swift index cc1adf1..2a610b2 100644 --- a/StencilTests/TemplateTests.swift +++ b/StencilTests/TemplateTests.swift @@ -1,11 +1,3 @@ -// -// TemplateTests.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil diff --git a/StencilTests/VariableTests.swift b/StencilTests/VariableTests.swift index 97b7134..4db7577 100644 --- a/StencilTests/VariableTests.swift +++ b/StencilTests/VariableTests.swift @@ -1,11 +1,3 @@ -// -// VariableTests.swift -// Stencil -// -// Created by Kyle Fuller on 23/10/2014. -// Copyright (c) 2014 Cocode. All rights reserved. -// - import Cocoa import XCTest import Stencil