Class: Pufferfish::PufferfishBuilderInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/pufferfish.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePufferfishBuilderInfo

Returns a new instance of PufferfishBuilderInfo.



70
71
72
73
74
75
76
77
78
# File 'lib/pufferfish.rb', line 70

def initialize
    @html_dir = "."
    @template_dir = "."
    @output_dir = "."
    @pretty = false
    @minify = false
    @minify_flags = ""
    @verbose = false
end

Instance Attribute Details

#html_dirObject

Returns the value of attribute html_dir.



69
70
71
# File 'lib/pufferfish.rb', line 69

def html_dir
  @html_dir
end

#minifyObject

Returns the value of attribute minify.



69
70
71
# File 'lib/pufferfish.rb', line 69

def minify
  @minify
end

#minify_flagsObject

Returns the value of attribute minify_flags.



69
70
71
# File 'lib/pufferfish.rb', line 69

def minify_flags
  @minify_flags
end

#output_dirObject

Returns the value of attribute output_dir.



69
70
71
# File 'lib/pufferfish.rb', line 69

def output_dir
  @output_dir
end

#prettyObject

Returns the value of attribute pretty.



69
70
71
# File 'lib/pufferfish.rb', line 69

def pretty
  @pretty
end

#template_dirObject

Returns the value of attribute template_dir.



69
70
71
# File 'lib/pufferfish.rb', line 69

def template_dir
  @template_dir
end

#verboseObject

Returns the value of attribute verbose.



69
70
71
# File 'lib/pufferfish.rb', line 69

def verbose
  @verbose
end