Sha256: 64277ca6654b31d936d9a4e9700f13362cb29e58d24e83a08879b3a4167698ea
Contents?: true
Size: 904 Bytes
Versions: 1
Compression:
Stored size: 904 Bytes
Contents
# -*- 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 = ["git@toastymofo.net"] 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_runtime_dependency "thor", "~> 0.19" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubygb-0.1.0 | rubygb.gemspec |