-
Notifications
You must be signed in to change notification settings - Fork 1
/
smc-get.gemspec
28 lines (28 loc) · 1.07 KB
/
smc-get.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
GEMSPEC = Gem::Specification.new do |spec|
spec.name = "smc-get"
spec.summary = "Manages Secret Maryo Chronicles levels."
spec.description =<<DESCRIPTION
smc-get is a apt-get like tool to manage levels that have
been uploaded to the Secret Maryo Chronicles contributed
levels repository. You can install, remove and list the
levels you have installed and search for new ones that
are available online.
DESCRIPTION
spec.version = File.read("VERSION.txt").chomp
spec.author = "Luiji Maryo"
spec.email = "[email protected]"
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 1.9.2"
spec.requirements = ["Secret Maryo Chronicles"]
spec.files = [Dir["bin/*"],
Dir["lib/**/*.rb"],
Dir["test/*.rb"],
Dir["config/*"],
"COPYING", "README.rdoc", "VERSION.txt"].flatten
spec.executables = ["smc-get"]
spec.has_rdoc = true
spec.extra_rdoc_files = %w[README.rdoc COPYING]
spec.rdoc_options << "-t" << "smc-get RDocs" << "-m" << "README.rdoc"
spec.test_files = Dir["test/test_*.rb"]
spec.homepage = "https://github.com/Luiji/smc-get"
end