class Inkmake::InkVariant
Attributes
image[R]
name[R]
options[R]
Public Class Methods
new(image, name, options)
click to toggle source
# File lib/inkmake.rb, line 794 def initialize(image, name, options) @image = image @name = name @options = options end
Public Instance Methods
out_path()
click to toggle source
# File lib/inkmake.rb, line 800 def out_path File.expand_path( "#{@image.prefix}#{@name}#{@image.suffix}", @image.inkfile.out_path) end