Sha256: 1c645adb2adf69159b3a2770f6a16c02ae36a2e8a3a2bb5518cf51e83ed4a922

Contents?: true

Size: 216 Bytes

Versions: 1

Compression:

Stored size: 216 Bytes

Contents

require 'md5'

class Rack::Bundle::CSSBundle
  attr_accessor :contents, :hash
  def initialize *files
    @contents = files.join "\n"
    @hash = MD5.new(@contents).to_s
  end  
  
  def extension
    'css'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-bundle-0.1.0 lib/rack/bundle/css_bundle.rb