-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
30 lines (28 loc) · 873 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
require 'rubygems'
require 'rake'
require 'rake/rdoctask'
GEM_NAME = "app-racket"
AUTHORS = ["John Manoogian III", "Erik Michaels-Ober"]
EMAIL = "[email protected]"
HOMEPAGE = "http://github.com/jm3/racket"
SUMMARY = "Listen to your app."
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = GEM_NAME
gemspec.summary = SUMMARY
gemspec.description = gemspec.summary
gemspec.authors = AUTHORS
gemspec.email = EMAIL
gemspec.homepage = HOMEPAGE
gemspec.bindir = "bin"
gemspec.executables = ["app-racket"]
gemspec.default_executable = "app-racket"
gemspec.add_dependency("rsdl", ">= 0.1.2")
gemspec.add_dependency("rubygame", ">= 2.6.2")
gemspec.add_dependency("file-tail", ">= 1.0.4")
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end