-
Notifications
You must be signed in to change notification settings - Fork 3
/
abalone.gemspec
30 lines (27 loc) · 1.09 KB
/
abalone.gemspec
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 'date'
Gem::Specification.new do |s|
s.name = "abalone"
s.version = '0.4.2'
s.date = Date.today.to_s
s.summary = "Simple Sinatra based web terminal."
s.homepage = "https://github.com/binford2k/abalone/"
s.email = "[email protected]"
s.authors = ["Ben Ford"]
s.license = "Apache-2.0"
s.has_rdoc = false
s.require_path = "lib"
s.executables = %w( abalone )
s.files = %w( README.md LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("doc/**/*")
s.files += Dir.glob("views/**/*")
s.files += Dir.glob("public/**/*")
s.add_dependency "sinatra", "~> 1.3"
s.add_dependency "sinatra-websocket"
s.description = <<-desc
Simply exposes a login shell to a web browser. This is currently
nowhere near to production quality, so don't actually use it.
This uses https://github.com/chromium/hterm for the terminal emulator.
desc
end