Class: Pufferfish::PufferfishBuilderInfo
- Inherits:
-
Object
- Object
- Pufferfish::PufferfishBuilderInfo
- Defined in:
- lib/pufferfish.rb
Instance Attribute Summary collapse
-
#html_dir ⇒ Object
Returns the value of attribute html_dir.
-
#minify ⇒ Object
Returns the value of attribute minify.
-
#minify_flags ⇒ Object
Returns the value of attribute minify_flags.
-
#output_dir ⇒ Object
Returns the value of attribute output_dir.
-
#pretty ⇒ Object
Returns the value of attribute pretty.
-
#template_dir ⇒ Object
Returns the value of attribute template_dir.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
-
#initialize ⇒ PufferfishBuilderInfo
constructor
A new instance of PufferfishBuilderInfo.
Constructor Details
#initialize ⇒ PufferfishBuilderInfo
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_dir ⇒ Object
Returns the value of attribute html_dir.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def html_dir @html_dir end |
#minify ⇒ Object
Returns the value of attribute minify.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def minify @minify end |
#minify_flags ⇒ Object
Returns the value of attribute minify_flags.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def minify_flags @minify_flags end |
#output_dir ⇒ Object
Returns the value of attribute output_dir.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def output_dir @output_dir end |
#pretty ⇒ Object
Returns the value of attribute pretty.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def pretty @pretty end |
#template_dir ⇒ Object
Returns the value of attribute template_dir.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def template_dir @template_dir end |
#verbose ⇒ Object
Returns the value of attribute verbose.
69 70 71 |
# File 'lib/pufferfish.rb', line 69 def verbose @verbose end |