Sha256: 6bc1ac7b51f3a9cf2d55958fb51335d8bc9cabf12d7763fdc2f1a41ae20eeead
Contents?: true
Size: 779 Bytes
Versions: 3
Compression:
Stored size: 779 Bytes
Contents
# -*- coding: utf-8 -*- require 'rake' require 'rake/testtask' require "rake/clean" begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "sinatra-static-assets" s.summary = "Sinatra extension providing helper methods to output tags for static assets." s.email = "matwb@univ.gda.pl" s.homepage = "http://github.com/wbzyl/sinatra-static-assets" s.description = s.summary s.authors = ["Włodek Bzyl"] s.add_dependency 'emk-sinatra-url-for', '>=0.2.1' end rescue LoadError puts "Jeweler not available." puts "Install it with:" puts " sudo gem install technicalpickles-jeweler -s http://gems.github.com" end Rake::TestTask.new(:test) do |t| t.libs << 'lib' << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
wbzyl-sinatra-static-assets-0.0.5 | Rakefile |
wbzyl-sinatra-static-assets-0.0.6 | Rakefile |
wbzyl-sinatra-static-assets-0.0.7 | Rakefile |