-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
36 lines (34 loc) · 921 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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.
#$: << File.dirname(__FILE__)
require File.expand_path('../config/application', __FILE__)
Openphin::Application.load_tasks
#
# require 'rake'
# require 'rake/testtask'
# require 'rdoc/task'
#
# require 'tasks/rails'
# # require 'hydra'
# # require 'hydra/tasks'
#
# begin
# require 'jslint/tasks'
# JSLint.config_path = "config/jslint.yml"
# rescue LoadError
# end
#
# task :build => %w(db:migrate spec cucumber)
# task :db => %w(db:migrate db:test:prepare)
#
# begin
# require 'thinking_sphinx/tasks'
# rescue LoadError
# puts "You can't load Thinking Sphinx tasks unless the thinking-sphinx gem is installed."
# end
#
# begin
# require 'delayed/tasks'
# rescue LoadError
# STDERR.puts "Run `rake gems:install` to install delayed_job"
# end