public
Rubygem
Description: Rails Plugin - a Ruby way to manage your stylesheets and javascripts. Don't put all your assets in your layout; define what you need where you need them.
Homepage: http://6brand.com
Clone URL: git://github.com/JackDanger/sweet_assets.git
Search Repo:
sweet_assets / Rakefile
100644 15 lines (10 sloc) 0.34 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- ruby -*-
 
$:.unshift(File.dirname(__FILE__) + '/lib')
 
 
require 'rubygems'
require 'hoe'
require "sweet_assets"
 
Hoe.new('sweet_assets', SweetAssets::VERSION) do |p|
  p.rubyforge_name = 'objectproxy' # if different than lowercase project name
  p.developer('Jack Danger Canty', 'sweet_assets_gem@6brand.com')
end
 
# vim: syntax=Ruby