|
1 | 1 | Gem::Specification.new do |s|
|
2 |
| - s.name = "rubywarrior" |
3 |
| - s.summary = "Game written in Ruby for learning Ruby and artificial intelligence." |
| 2 | + s.name = "rubywarrior" |
| 3 | + s.version = "0.1.2" |
| 4 | + s.author = "Ryan Bates" |
| 5 | + |
| 6 | + s.homepage = "http://github.com/ryanb/ruby-warrior" |
| 7 | + s.summary = "Game written in Ruby for learning Ruby and artificial intelligence." |
4 | 8 | s.description = "You play as a warrior climbing a tall tower. On each floor you need to write a Ruby script to instruct the warrior to battle enemies, rescue captives, and reach the stairs."
|
5 |
| - s.homepage = "http://github.com/ryanb/ruby-warrior" |
6 |
| - |
7 |
| - s.version = "0.1.1" |
8 |
| - s.date = "2010-01-03" |
9 |
| - |
10 |
| - s.authors = ["Ryan Bates"] |
11 |
| - |
12 |
| - |
13 |
| - s.require_paths = ["lib"] |
14 |
| - s.files = Dir["lib/**/*"] + Dir["spec/**/*"] + Dir["features/**/*"] + Dir["towers/**/*"] + Dir["templates/**/*"] + ["bin/rubywarrior", "LICENSE", "README.rdoc", "Rakefile", "CHANGELOG.rdoc"] |
15 |
| - s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"] |
16 |
| - s.executables = ["rubywarrior"] |
17 |
| - |
18 |
| - s.has_rdoc = true |
19 |
| - s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "RubyWarrior", "--main", "README.rdoc"] |
20 |
| - |
21 |
| - s.rubygems_version = "1.3.4" |
22 |
| - s.required_rubygems_version = Gem::Requirement.new(">= 1.2") |
| 9 | + |
| 10 | + s.files = Dir["{lib,spec,features,towers,templates,bin}/**/*", "[A-Z]*", "init.rb"] |
| 11 | + s.require_path = "lib" |
| 12 | + s.executables = ["rubywarrior"] |
| 13 | + |
| 14 | + s.rubyforge_project = s.name |
| 15 | + s.required_rubygems_version = ">= 1.3.4" |
23 | 16 | end
|
0 commit comments