-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppcurses.gemspec
More file actions
executable file
·30 lines (27 loc) · 866 Bytes
/
ppcurses.gemspec
File metadata and controls
executable file
·30 lines (27 loc) · 866 Bytes
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
Gem::Specification.new do |s|
s.name = 'ppcurses'
s.version = '0.1.3'
s.required_ruby_version = '>= 2.1.5'
s.date = Time.new.strftime('%Y-%m-%d')
s.summary = 'Convenience classes when using curses'
s.description = 'A curses abstraction layer.'
s.authors = ['Matthieu Cormier']
s.email = 'mcormier@preenandprune.com'
s.homepage = 'https://github.com/mcormier/ppcurses'
s.files = Dir.glob('{lib,test}/**/*') + %w(LICENCE.txt README.rdoc)
s.require_path = 'lib'
s.license = 'MIT'
s.post_install_message = <<END_MSG
( ) ( ) )
) ( ) ( (
( ) ( ) )
_____________
<_____________> ___
| |/ _ \\
| mmm | | |
| coffee |_| |
___| |\\___/
/ \\___________/ \\
\\_____________________/
END_MSG
end