-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
23 lines (20 loc) · 832 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "rev-websocket"
gemspec.summary = "WebSocket server based on Rev"
gemspec.description = "Rev-WebSocket is a WebSocket server implementation based on Rev, a high performance event-driven I/O library for Ruby. This library conforms to WebSocket draft-75 and draft-76."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/frsyuki/rev-websocket"
gemspec.authors = ["FURUHASHI Sadayuki"]
gemspec.files.include "examples/**/*"
gemspec.files.exclude ".gitignore"
gemspec.add_dependency("rev", ">= 0.3.2")
gemspec.add_dependency("thin", '>= 1.2.7')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
task :default => :build