theappbusiness / ConfigGenerator

Configuration file code generator for use in Xcode projects
MIT License
157 stars 19 forks source link

Wraps string values in quotes when using a string array #41

Closed SoftwareEngineerChris closed 4 years ago

SoftwareEngineerChris commented 4 years ago

This PR is related to PR #39. But, now string values in an array are wrapped in quotes.

What was generated before:

static let arrayOfHashes: [String] = [abcdefg] // Won't compile

Generated after fix:

static let arrayOfHashes: [String] = ["abcdefg"]
SoftwareEngineerChris commented 4 years ago

Actually, I'm not sure I've got that quite right. Going to close it for now.

theblixguy commented 4 years ago

This is now fixed by #42. You can grab the latest release from https://github.com/theappbusiness/ConfigGenerator/releases

SoftwareEngineerChris commented 4 years ago

This is now fixed by #42. You can grab the latest release from https://github.com/theappbusiness/ConfigGenerator/releases

Cheers dude!