Sha256: 63633c5d8b8ba5a251233442b953ee3fc9765cafa8bb544a159985f81a55de0b
Contents?: true
Size: 611 Bytes
Versions: 2
Compression:
Stored size: 611 Bytes
Contents
task :default => :spec require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) do |t| t.rspec_opts = '--backtrace --color' end task :run do exec "./bin/tic_tac_toe" end begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'tic_tac_toe' gem.summary = "Play Tic-Tac-Toe using Curses" gem.email = "michael@grosser.it" gem.homepage = "http://github.com/grosser/#{gem.name}" gem.authors = ["Michael Grosser"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler, or one of its dependencies, is not available. Install it with: gem install jeweler" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tic_tac_toe-0.2.0 | Rakefile |
tic_tac_toe-0.1.0 | Rakefile |