groue / GRMustache.swift

Flexible Mustache templates for Swift
http://mustache.github.com/
MIT License
601 stars 154 forks source link

Error building with Swift 3.0.2 on Sierra (10.12.2) #41

Open ikester opened 7 years ago

ikester commented 7 years ago

Running swift package results in:

error: the module at Tests/Carthage has an invalid name ('Carthage'): the name of a test module has no ‘Tests’ suffix
fix: rename the module at ‘Tests/Carthage’ to have a ‘Tests’ suffix

Contents of the Package.swift file:


import PackageDescription

let package = Package(
    name: "FCPXShotExporter",
    targets: [],
    dependencies: [
        .Package(url: "https://github.com/groue/GRMustache.swift", majorVersion: 2, minor: 0),
        ]
)```
eonil commented 7 years ago

This also happens with Apple Swift version 3.1 (swiftlang-802.0.53 clang-802.0.42) on Sierra 10.12.5 (16F73).

kuhippo commented 7 years ago

I want to use inheritance this new feature, but will have the above mentioned problem, hope the author took the time to solve