Skip to content

Commit c90e181

Browse files
committed
releasing v0.1.2
1 parent 2dd76f6 commit c90e181

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

CHANGELOG.rdoc

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.1.2 (September 23, 2010)
2+
13
* Adding intermediate level 9 with distance_of ability
24

35
* Adding intermediate level 8 with look and detonate abilities

rubywarrior.gemspec

+13-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,16 @@
11
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+
s.email = "[email protected]"
6+
s.homepage = "http://github.com/ryanb/ruby-warrior"
7+
s.summary = "Game written in Ruby for learning Ruby and artificial intelligence."
48
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-
s.email = "[email protected]"
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"
2316
end

0 commit comments

Comments
 (0)