summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 8b583161651f87dd99c8ab106957e0e9dcd97276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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.

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