public
Description: A tool for controlling and configuring Merb applications
Homepage: http://crazycool.co.uk/2008/04/16/manage-your-merb
Clone URL: git://github.com/eldiablo/merb-manage.git
merb-manage / Rakefile
100644 26 lines (24 sloc) 0.783 kb
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
#
# Copyright (c) 2008 El Draper, el@eldiablo.co.uk
#
# Rakefile Defines the Gem package specification
#
require "rubygems"
require "rake/gempackagetask"
 
# Define the merb-manage gem spec
spec = Gem::Specification.new do |s|
  s.name = "merb-manage"
  s.version = "0.5"
  s.author = "El Draper"
  s.email = "el@eldiablo.co.uk"
  s.homepage = "http://github.com/eldiablo/merb-manage"
  s.platform = Gem::Platform::RUBY
  s.summary = "Provides easy configuration and management of Merb applications, including multiple servers and different adapters"
  s.files = FileList["{bin,config,resources}/**/*"].to_a
  s.executables << "merb-manage-ctl"
  s.add_dependency("merb", ">= 0.9.2")
end
 
# Setup the package task
Rake::GemPackageTask.new(spec) do |pkg|
  pkg.need_tar = true
end