-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenrubyrmk-backend.gemspec
32 lines (28 loc) · 1.21 KB
/
openrubyrmk-backend.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
# -*- ruby -*-
ORR_BACKEND_GEMSPEC = Gem::Specification.new do |spec|
# Project information
spec.name = "openrubyrmk-backend"
spec.summary = "The OpenRubyRMK's backend library"
spec.description =<<-DESCRIPTION
This is the backend library of the OpenRubyRMK, the free
and open-source RPG creation program written in Ruby. It
does the heavy work of what is exposed through GUI frontends.
DESCRIPTION
spec.version = File.read("VERSION").strip.gsub("-", ".")
spec.author = "The OpenRubyRMK team"
spec.email = "[email protected]"
# Requirements
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 1.9.2"
spec.add_dependency("ruby-tmx")
spec.add_dependency("nokogiri")
spec.add_development_dependency("turn")
spec.add_development_dependency("paint")
# Gem contents
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.has_rdoc = true
spec.extra_rdoc_files = ["README.rdoc", "COPYING"]
spec.rdoc_options << "-t" << "The Backend's RDocs" << "-m" << "README.rdoc"
end