Class: Preseason::Config::Bourbon

Inherits:
Object
  • Object
show all
Includes:
Preseason::Config
Defined in:
lib/preseason/config/bourbon.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Preseason::Colorize

#ask, #readme, #yes?

Methods included from GeneratorContext

#method_missing

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Preseason::GeneratorContext

Instance Attribute Details

#libraryObject

Returns the value of attribute library.



6
7
8
# File 'lib/preseason/config/bourbon.rb', line 6

def library
  @library
end

Instance Method Details

#ask_userObject



8
9
10
11
12
# File 'lib/preseason/config/bourbon.rb', line 8

def ask_user
  if yes? "Would you like to use Bourbon and Neat? [y/n]"
    self.library = :bourbon
  end
end

#bourbon?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/preseason/config/bourbon.rb', line 14

def bourbon?
  library == :bourbon
end