-
Notifications
You must be signed in to change notification settings - Fork 2
/
rubygb.gemspec
26 lines (21 loc) · 1009 Bytes
/
rubygb.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
# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + "/lib/rubygb/version"
Gem::Specification.new do |gem|
gem.name = "rubygb"
gem.version = Rubygb::VERSION
gem.summary = "Create gameboy roms on osx"
gem.description = "A stupid gem that comes bundled with an osx compatible version of rgbds"
gem.authors = ["Donald Hutchison"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/rkachowski/rubygb"
gem.license = "MIT"
gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = "~> 2.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "pry-byebug", "~> 3"
gem.add_runtime_dependency "thor", "~> 0.19"
gem.add_runtime_dependency "rmagick", "~> 2.15"
end