-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspitewaste.gemspec
More file actions
22 lines (18 loc) · 811 Bytes
/
spitewaste.gemspec
File metadata and controls
22 lines (18 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative 'lib/spitewaste/version'
Gem::Specification.new do |s|
s.name = 'spitewaste'
s.version = Spitewaste::VERSION
s.author = 'Collided Scope (collidedscope)'
s.summary = 'Make programming in Whitespace even better.'
s.description = 'Spitewaste is a collection of tools that makes it almost too easy to read and write Whitespace programs.'
s.homepage = 'https://github.com/collidedscope/spitewaste'
s.license = 'WTFPL'
s.add_dependency 'rake', '~> 13.0.1'
s.add_dependency 'minitest', '~> 5.14.2'
s.add_dependency 'thor', '~> 1.0.1'
s.add_dependency 'oily_png', '~> 1.2.1'
s.files = `git ls-files`.split.reject { |f| f[/^(test|demo)/] }
s.bindir = 'bin'
s.executables = ['spw']
s.require_paths = ['lib']
end