Method: BberReader.stylesheet

Defined in:
lib/b_ber_reader.rb

.stylesheetObject



25
26
27
28
29
30
31
32
33
# File 'lib/b_ber_reader.rb', line 25

def stylesheet
  stylesheet = ''
  stylesheets_dir = File.expand_path('../../app/assets/stylesheets',  __FILE__)
  Dir.glob("#{stylesheets_dir}/*.css") do |f|
    stylesheet = File.basename(f)
  end

  stylesheet
end