forked from sbmsuite/depalma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
46 lines (42 loc) · 1.69 KB
/
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
37
38
39
40
41
42
43
44
45
46
# Rakefile
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "depalma"
gemspec.summary = "A simple but powerful dispatcher."
gemspec.description = "Configure simple dispatch rules and have data dispatched over a group of receivers."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/crankin/depalma"
gemspec.authors = ["Christopher Rankin"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler -s http://gemcutter.org"
end
# depalma.gemspec
Gem::Specification.new do |s|
s.name = %q{depalma}
s.version = "0.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Christopher Rankin"]
s.date = %q{2010-01-08}
s.description = %q{Configure simple dispatch rules and have data dispatched over a group of receivers.}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["lib/dispatcher.rb", "lib/dispatch_rule.rb", "README.rdoc"]
s.files = ["lib/dispatcher.rb", "lib/dispatch_rule.rb", "Rakefile", "README.rdoc", "Manifest", "depalma.gemspec"]
s.has_rdoc = true
s.homepage = %q{http://github.com/crankin/depalma}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "depalma", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{depalma}
s.rubygems_version = %q{1.2.0}
s.summary = %q{A simple but powerful dispatcher.}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
else
end
else
end
end