82 lines
3.6 KiB
Ruby
82 lines
3.6 KiB
Ruby
class Swiftgen < Formula
|
|
desc "Swift code generator for assets, storyboards, Localizable.strings, …"
|
|
homepage "https://github.com/SwiftGen/SwiftGen"
|
|
url "https://github.com/SwiftGen/SwiftGen.git",
|
|
:tag => "5.3.0",
|
|
:revision => "73ac0e487dda941eb4e52ed3b96b652515f1bee5"
|
|
head "https://github.com/SwiftGen/SwiftGen.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "289c9b93cedd45b74dd2202c19e5cbc6216e52936f0d8f7c6a3875a43dda562a" => :high_sierra
|
|
sha256 "446700f3feb9651d8a7817f7d28a0f9e4a3990c33d358bfb006724a47431944f" => :sierra
|
|
end
|
|
|
|
depends_on "ruby" => :build if MacOS.version <= :sierra
|
|
depends_on :xcode => ["9.2", :build]
|
|
|
|
def install
|
|
# Disable swiftlint build phase to avoid build errors if versions mismatch
|
|
ENV["NO_CODE_LINT"] = "1"
|
|
|
|
# Install bundler, then use it to `rake cli:install` SwiftGen
|
|
ENV["GEM_HOME"] = buildpath/"gem_home"
|
|
system "gem", "install", "bundler"
|
|
ENV.prepend_path "PATH", buildpath/"gem_home/bin"
|
|
system "bundle", "install", "--without", "development", "release"
|
|
system "bundle", "exec", "rake", "cli:install[#{bin},#{lib},#{pkgshare}/templates]"
|
|
|
|
fixtures = {
|
|
"Tests/Fixtures/Resources/XCAssets/Images.xcassets" => "Images.xcassets",
|
|
"Tests/Fixtures/Resources/XCAssets/Colors.xcassets" => "Colors.xcassets",
|
|
"Tests/Fixtures/Resources/Colors/colors.xml" => "colors.xml",
|
|
"Tests/Fixtures/Resources/Strings/Localizable.strings" => "Localizable.strings",
|
|
"Tests/Fixtures/Resources/Storyboards-iOS" => "Storyboards-iOS",
|
|
"Tests/Fixtures/Resources/Fonts" => "Fonts",
|
|
"Tests/Fixtures/Generated/XCAssets/swift3-context-all.swift" => "xcassets.swift",
|
|
"Tests/Fixtures/Generated/Colors/swift3-context-defaults.swift" => "colors.swift",
|
|
"Tests/Fixtures/Generated/Strings/structured-swift3-context-localizable.swift" => "strings.swift",
|
|
"Tests/Fixtures/Generated/Storyboards-iOS/swift3-context-all.swift" => "storyboards.swift",
|
|
"Tests/Fixtures/Generated/Fonts/swift3-context-defaults.swift" => "fonts.swift",
|
|
}
|
|
(pkgshare/"fixtures").install fixtures
|
|
end
|
|
|
|
test do
|
|
system bin/"swiftgen", "--version"
|
|
|
|
fixtures = pkgshare/"fixtures"
|
|
template_args = "--templatePath #{pkgshare}/templates"
|
|
|
|
output = shell_output("#{bin}/swiftgen xcassets
|
|
#{template_args}/xcassets/swift3.stencil
|
|
#{fixtures}/Images.xcassets
|
|
#{fixtures}/Colors.xcassets").strip
|
|
assert_equal output, (fixtures/"xcassets.swift").read.strip,
|
|
"swiftgen xcassets failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen colors
|
|
#{template_args}/colors/swift3.stencil
|
|
#{fixtures}/colors.xml").strip
|
|
assert_equal output, (fixtures/"colors.swift").read.strip,
|
|
"swiftgen colors failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen strings
|
|
#{template_args}/strings/structured-swift3.stencil
|
|
#{fixtures}/Localizable.strings").strip
|
|
assert_equal output, (fixtures/"strings.swift").read.strip,
|
|
"swiftgen strings failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen storyboards
|
|
#{template_args}/storyboards/swift3.stencil
|
|
#{fixtures}/Storyboards-iOS").strip
|
|
assert_equal output, (fixtures/"storyboards.swift").read.strip,
|
|
"swiftgen storyboards failed"
|
|
|
|
output = shell_output("#{bin}/swiftgen fonts
|
|
#{template_args}/fonts/swift3.stencil
|
|
#{fixtures}/Fonts").strip
|
|
assert_equal output, (fixtures/"fonts.swift").read.strip,
|
|
"swiftgen fonts failed"
|
|
end
|
|
end
|