public
Description: Ruby on Rails Photo Gallery
Homepage: http://albumdy.rapin.com/
Clone URL: git://github.com/rapind/albumdy.git
albumdy / Rakefile
100644 18 lines (13 sloc) 0.415 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
 
if RUBY_VERSION > "1.9"
  Gem::RubyGemsVersion
  class String
    alias_method :each, :each_line
  end
end
 
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'tasks/rails'