-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz80.gemspec
49 lines (44 loc) · 1.45 KB
/
z80.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require_relative 'lib/z80/version'
Gem::Specification.new do |s|
s.name = 'z80'
s.version = Z80::VERSION
s.author = 'Manuel Sainz de Baranda y Goñi'
s.email = '[email protected]'
s.homepage = 'https://zxe.io/software/Z80-Ruby'
s.license = '0BSD'
s.summary = "Ruby binding for the Z80 library."
s.description = <<~EOS
Z80-Ruby is a Ruby binding for the Zilog Z80 CPU emulator \
(https://github.com/redcode/Z80). It is ideal for analysis, \
hacking, testing and debugging. All from the comfort of Ruby.
EOS
s.metadata = {
'bug_tracker_uri' => "https://github.com/redcode/Z80-Ruby/issues",
'changelog_uri' => 'https://github.com/redcode/Z80-Ruby/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://zxe.io/software/Z80/documentation/latest',
'github_repo' => 'ssh://github.com/redcode/Z80-Ruby',
'homepage_uri' => 'https://zxe.io/software/Z80-Ruby',
'source_code_uri' => 'https://github.com/redcode/Z80-Ruby'
}
s.files = [
# `git ls-files | sort`.split("\n")
'.editorconfig',
'.github/FUNDING.yml',
'.github/workflows/build-and-test-extension.yml',
'.github/workflows/publish-gem.yml',
'.gitignore',
'CHANGELOG.md',
'CITATION.cff',
'Gemfile',
'LICENSE-0BSD',
'README.md',
'Rakefile',
'ext/z80/extconf.rb',
'ext/z80/z80.c',
'lib/z80.rb',
'lib/z80/version.rb',
'z80.gemspec'
]
s.extensions = %w(ext/z80/extconf.rb)
s.add_development_dependency 'rake-compiler', '~> 1.2', '>= 1.2.0'
end