Sha256: cc81fc97980b376c6514f87a7409a311ea837d550a50a52d84142b209ef5e003

Contents?: true

Size: 268 Bytes

Versions: 3

Compression:

Stored size: 268 Bytes

Contents

module ApplicationHelper
  def title(title)
    content_for(:title) { title }
  end
  
  def javascript(*files)
    content_for(:head) { javascript_include_tag(*files) }
  end
  
  def stylesheet(*files)
    content_for(:head) { styleshee_link_tag(*files) }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
drogus-blue-ridge-0.0.3 spec/fixtures/rails_project/app/helpers/application_helper.rb
drogus-blue-ridge-0.0.2 spec/fixtures/rails_project/app/helpers/application_helper.rb
drogus-blue-ridge-0.0.1 spec/fixtures/rails_project/app/helpers/application_helper.rb