class Preseason::Config::Bourbon

Attributes

library[RW]

Public Instance Methods

ask_user() click to toggle source
# 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?() click to toggle source
# File lib/preseason/config/bourbon.rb, line 14
def bourbon?
  library == :bourbon
end