-
Notifications
You must be signed in to change notification settings - Fork 57
/
optcarrot.gemspec
26 lines (22 loc) · 1006 Bytes
/
optcarrot.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "optcarrot"
Gem::Specification.new do |spec|
spec.name = "optcarrot"
spec.version = Optcarrot::VERSION
spec.authors = ["Yusuke Endoh"]
spec.email = ["[email protected]"]
spec.summary = "A NES emulator written in Ruby."
spec.description =
'An "enjoyable" benchmark for Ruby implementation. The goal of this project is to drive Ruby3x3.'
spec.homepage = "https://github.com/mame/optcarrot"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^tmp/|^tools/|^examples/|^\.}) }
spec.bindir = "bin"
spec.executables = ["optcarrot"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "ffi", "~> 1.9"
spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "stackprof", "~> 0.2"
end