-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrepl.gemspec
More file actions
23 lines (20 loc) · 771 Bytes
/
repl.gemspec
File metadata and controls
23 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.unshift 'lib'
require "repl/version"
Gem::Specification.new do |s|
s.name = "repl"
s.version = Repl::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "sometimes you need a repl"
s.homepage = "http://github.com/defunkt/repl"
s.email = "chris@ozmm.org"
s.authors = [ "Chris Wanstrath" ]
s.has_rdoc = false
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.executables = %w( repl )
s.description = <<desc
repl is an interactive program which tenderly wraps another,
non-interactive program, providing you with a repl shell.
desc
end