module Interage::BootstrapGridHelper

Constants

BS_COLUMNS_CLASSES

Public Instance Methods

bs_columns(*columns) click to toggle source
# File lib/interage/bootstrap_grid_helper.rb, line 7
def bs_columns(*columns)
  BS_COLUMNS_CLASSES.each_with_index.map do |klass, key|
    "#{klass}-#{columns[key]}"
  end.join(' ')
end