Sha256: 20f8b7191812105f53f95437a89bede9638083afaadac6a3f257cee89b14be21

Contents?: true

Size: 796 Bytes

Versions: 6

Compression:

Stored size: 796 Bytes

Contents

require_relative '../swift_template_generator' 

module Redbreast
  module TemplateGenerator
    module Color
      # Used for creating colors in swift.
      class Swift < TemplateGenerator::Swift
        include ERB::Util
        def template
          <<~TEMPLATE
            import UIKit

            // THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
            // swiftlint:disable file_length type_body_length line_length superfluous_disable_command extension_access_modifier
            <%= generate_extension('UIColor', app_name) %>
            <%= generate_file_swift(names: asset_names, variable: 'public static var %s: UIColor { return UIColor(named: "%s", in: %s, compatibleWith: nil)! }', bundle: bundle) %>
            }
          TEMPLATE
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
redbreast-1.4.2 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb
redbreast-1.4.1 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb
redbreast-1.4.0 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb
redbreast-1.3.1 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb
redbreast-1.3.0 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb
redbreast-1.2.5 lib/redbreast/template_generators/colors/swift_colors_template_generator.rb