blob: 47b6c3f576766a18e58e0f33901ee9e1f8cd3b91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env rake
# 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.
RAKE=true # let environment initialization code know if we are running via rake or not.
require 'rake/packagetask'
require 'rubygems/package_task'
spec = eval(File.read('leap_web.gemspec'))
Gem::PackageTask.new(spec) do |p|
p.gem_spec = spec
end
require File.expand_path('../config/application', __FILE__)
LeapWeb::Application.load_tasks
|