Sha256: ff6ce9ad7c1c824789eb5d0b60cfb1b8fbd129cba155957ea7aee02f933be0af
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
require "rubygems" VERSION = '2.2.0' AUTHOR = "Gonzalo Garramuno" HOMEPAGE = 'http://ggarra13.github.io/ifmapper/en/start.html' EMAIL = 'ggarra13@gmail.com' gem = Gem::Specification.new do |s| s.name = "ifmapper" s.version = VERSION s.author = AUTHOR s.email = EMAIL s.license = 'GPL-2.0' s.homepage = HOMEPAGE s.summary = 'Interactive Fiction Mapping Tool.' s.require_path = "lib" s.executables = "IFMapper" s.files = ['IFMapper.rbw'] + ['bin/IFMapper'] + ['IFMapper.gemspec'] + ['LICENSE'] + Dir.glob("lib/IFMapper/*.rb") + Dir.glob("lib/IFMapper/locales/*/*.rb") + Dir.glob("lib/IFMapper/locales/*/*.sh") + Dir.glob("maps/*.ifm") + Dir.glob("maps/*.map") + Dir.glob("icons/*") s.description = <<-EOF Interactive Fiction Mapping Tool. EOF s.add_runtime_dependency("rake-compiler", "~> 0.7.1", ">= 0.7.1" ) s.add_runtime_dependency("fxruby", "~> 1.6.0", ">= 1.6.0") s.add_runtime_dependency("pdf-writer", "~> 1.1.1", ">= 1.1.1") s.extra_rdoc_files = ["HISTORY.txt", "TODO.txt"] + Dir.glob("docs/*/*") s.has_rdoc = true s.rubyforge_project = 'ifmapper' s.required_ruby_version = '>= 2.0.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ifmapper-2.2.0 | IFMapper.gemspec |