-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchitin.gemspec
31 lines (26 loc) · 895 Bytes
/
chitin.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
$:.push File.expand_path("../lib", __FILE__)
require "chitin/version"
Gem::Specification.new do |s|
# Metadata
s.name = "chitin"
s.version = Chitin::VERSION
s.authors = ["Ari Brown"]
s.email = ["[email protected]"]
s.homepage = "http://bitbucket.org/seydar/chitin"
s.summary = %q{A shell! In Ruby!}
s.description = <<DESC
The point of Chitin is that you should be able to use Ruby in your shell. Bash
is too old. Time for the new wave of shell environments.
DESC
s.rubyforge_project = "chitin"
# Manifest
s.files = `hg manifest`.split("\n")
s.executables = ["chitin"]
s.require_paths = ["lib"]
# Dependencies
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
s.add_runtime_dependency "wirble"
s.add_runtime_dependency "coolline", ">= 0.4.0"
s.add_runtime_dependency "coderay"
end