49 lines
2.2 KiB
Ruby
49 lines
2.2 KiB
Ruby
class Swiftgen < Formula
|
|
desc "Collection of Swift tools to generate Swift code"
|
|
homepage "https://github.com/AliSoftware/SwiftGen"
|
|
url "https://github.com/AliSoftware/SwiftGen/archive/0.7.5.tar.gz"
|
|
sha256 "4c1acf1090b4a3eb31bfd6c4c3bcb56cbcaa58d030cb301ea7b6846e6edebd8a"
|
|
head "https://github.com/AliSoftware/SwiftGen.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "4edff31c82012a02830d62989acb9402c21534ce9d7d59ad3b94bf443bcd78b1" => :el_capitan
|
|
sha256 "899344291b32da3cfd6ff79ce5bc3cffe74c7398f9d86f6e23058214ac27aa31" => :yosemite
|
|
end
|
|
|
|
depends_on :xcode => "7.0"
|
|
|
|
def install
|
|
rake "install[#{bin},#{lib},#{pkgshare}/templates]"
|
|
|
|
fixtures = %w[
|
|
UnitTests/fixtures/Images.xcassets
|
|
UnitTests/fixtures/colors.txt
|
|
UnitTests/fixtures/Localizable.strings
|
|
UnitTests/fixtures/Message.storyboard
|
|
UnitTests/expected/Images-File-Defaults.swift.out
|
|
UnitTests/expected/Colors-File-Defaults.swift.out
|
|
UnitTests/expected/Strings-File-Defaults.swift.out
|
|
UnitTests/expected/Storyboards-Message-Defaults.swift.out
|
|
]
|
|
(pkgshare/"fixtures").install fixtures
|
|
end
|
|
|
|
test do
|
|
system bin/"swiftgen", "--version"
|
|
|
|
fixtures = pkgshare/"fixtures"
|
|
|
|
output = shell_output("#{bin}/swiftgen images --templatePath #{pkgshare/"templates/images-default.stencil"} #{fixtures}/Images.xcassets").strip
|
|
assert_equal output, (fixtures/"Images-File-Defaults.swift.out").read.strip, "swiftgen images failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen colors --templatePath #{pkgshare/"templates/colors-default.stencil"} #{fixtures}/colors.txt").strip
|
|
assert_equal output, (fixtures/"Colors-File-Defaults.swift.out").read.strip, "swiftgen colors failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen strings --templatePath #{pkgshare/"templates/strings-default.stencil"} #{fixtures}/Localizable.strings").strip
|
|
assert_equal output, (fixtures/"Strings-File-Defaults.swift.out").read.strip, "swiftgen strings failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen storyboards --templatePath #{pkgshare/"templates/storyboards-default.stencil"} #{fixtures}/Message.storyboard").strip
|
|
assert_equal output, (fixtures/"Storyboards-Message-Defaults.swift.out").read.strip, "swiftgen storyboards failed"
|
|
end
|
|
end
|