Skip to content

Commit

Permalink
releasing v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed Sep 24, 2010
1 parent 2dd76f6 commit c90e181
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,5 @@
0.1.2 (September 23, 2010)

* Adding intermediate level 9 with distance_of ability

* Adding intermediate level 8 with look and detonate abilities
Expand Down
33 changes: 13 additions & 20 deletions rubywarrior.gemspec
@@ -1,23 +1,16 @@
Gem::Specification.new do |s|
s.name = "rubywarrior"
s.summary = "Game written in Ruby for learning Ruby and artificial intelligence."
s.name = "rubywarrior"
s.version = "0.1.2"
s.author = "Ryan Bates"
s.email = "ryan@railscasts.com"
s.homepage = "http://github.com/ryanb/ruby-warrior"
s.summary = "Game written in Ruby for learning Ruby and artificial intelligence."
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."
s.homepage = "http://github.com/ryanb/ruby-warrior"

s.version = "0.1.1"
s.date = "2010-01-03"

s.authors = ["Ryan Bates"]
s.email = "ryan@railscasts.com"

s.require_paths = ["lib"]
s.files = Dir["lib/**/*"] + Dir["spec/**/*"] + Dir["features/**/*"] + Dir["towers/**/*"] + Dir["templates/**/*"] + ["bin/rubywarrior", "LICENSE", "README.rdoc", "Rakefile", "CHANGELOG.rdoc"]
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
s.executables = ["rubywarrior"]

s.has_rdoc = true
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "RubyWarrior", "--main", "README.rdoc"]

s.rubygems_version = "1.3.4"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2")

s.files = Dir["{lib,spec,features,towers,templates,bin}/**/*", "[A-Z]*", "init.rb"]
s.require_path = "lib"
s.executables = ["rubywarrior"]

s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
end

0 comments on commit c90e181

Please sign in to comment.