public
Description: Cache render calls in Rails controllers.
Homepage:
Clone URL: git://github.com/ryanb/render-caching.git
render-caching / Rakefile
100644 22 lines (17 sloc) 0.678 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
 
begin
  require 'echoe'
 
  Echoe.new('render-caching', '0.1.1') do |p|
    p.summary = "Cache render calls in Rails controllers."
    p.description = "Cache render calls in Rails controllers."
    p.url = "http://github.com/ryanb/render-caching"
    p.author = 'Ryan Bates'
    p.email = "ryan (at) railscasts (dot) com"
    p.ignore_pattern = ["script/*"]
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }