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:
Packaging for rubyforge
JackDanger (author)
Mon May 26 23:06:00 -0700 2008
commit  8847045fd2c37abb4fe083bc74d0ed51616a438d
tree    f2294f125e007d56dba34f730748770b0fc525e3
parent  12c8639c19ad2745f0536ed953c8fbf46213d391
...
 
1
2
3
...
1
2
3
4
0
@@ -1,3 +1,4 @@
0
+History.txt
0
 MIT-LICENSE
0
 Manifest.txt
0
 README.txt
...
1
2
 
3
4
5
6
7
 
8
9
10
...
 
 
1
2
3
4
 
 
5
6
7
8
0
@@ -1,10 +1,8 @@
0
-SweetAssets
0
-===============
0
+= SweetAssets
0
 
0
   Automate adding stylesheets and javascripts to your controller actions
0
 
0
-Example
0
-=======
0
+== Example
0
 
0
   Any controller will include the stylesheet and javascript source files named after named after the contorller if the file exists:
0
   
...
1
2
3
 
4
5
6
 
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
22
 
 
...
 
 
 
1
2
 
 
3
4
 
 
 
 
 
 
5
 
 
 
 
 
 
 
6
7
8
9
10
11
12
13
14
15
0
@@ -1,22 +1,15 @@
0
-require 'rake'
0
-require 'rake/testtask'
0
-require 'rake/rdoctask'
0
+# -*- ruby -*-
0
 
0
-desc 'Default: run unit tests.'
0
-task :default => :test
0
+$:.unshift(File.dirname(__FILE__) + '/lib')
0
 
0
-desc 'Test the sweet_assets plugin.'
0
-Rake::TestTask.new(:test) do |t|
0
- t.libs << 'lib'
0
- t.pattern = 'test/**/*_test.rb'
0
- t.verbose = true
0
-end
0
 
0
-desc 'Generate documentation for the sweet_assets plugin.'
0
-Rake::RDocTask.new(:rdoc) do |rdoc|
0
- rdoc.rdoc_dir = 'rdoc'
0
- rdoc.title = 'SweetAssets'
0
- rdoc.options << '--line-numbers' << '--inline-source'
0
- rdoc.rdoc_files.include('README')
0
- rdoc.rdoc_files.include('lib/**/*.rb')
0
+require 'rubygems'
0
+require 'hoe'
0
+require "sweet_assets"
0
+
0
+Hoe.new('sweet_assets', SweetAssets::VERSION) do |p|
0
+ p.rubyforge_name = 'objectproxy' # if different than lowercase project name
0
+ p.developer('Jack Danger Canty', 'sweet_assets_gem@6brand.com')
0
 end
0
+
0
+# vim: syntax=Ruby

Comments

    No one has commented yet.