-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrass.gemspec
More file actions
23 lines (18 loc) · 884 Bytes
/
brass.gemspec
File metadata and controls
23 lines (18 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'brass'
s.version = '1.3.0'
s.summary = 'Bare-metal Ruby Assertion System Standard'
s.description = 'BRASS stands for Bare-Metal Ruby Assertion System Standard. It is a very ' \
'basic foundational assertions framework for other assertion and test frameworks ' \
'to make use so they can all work together harmoniously.'
s.authors = ['Thomas Sawyer']
s.email = ['transfire@gmail.com']
s.homepage = 'https://github.com/rubyworks/brass'
s.license = 'BSD-2-Clause'
s.required_ruby_version = '>= 3.1'
s.files = Dir['lib/**/*', 'LICENSE.txt', 'README.md', 'VERSIONS.md']
s.require_paths = ['lib']
s.add_development_dependency 'rake', '>= 13'
s.add_development_dependency 'lemon', '>= 0.9'
s.add_development_dependency 'rubytest', '>= 0.8'
end