Sha256: e751b5bd28d4102c14a62c37a57b3e715456d5ebb8018b7b36fbc6daeada687d
Contents?: true
Size: 434 Bytes
Versions: 4
Compression:
Stored size: 434 Bytes
Contents
require 'rdoc/task' task :default => [:test, :PlayRockPaperScissorsGame, :rps] file_path = "./test/test_rps.rb" # rps = Regexp.new(/\A((PlayRockPaperScissorsGame)(\-)(\d\.\d\.\d)(\.gem))\z/) task :test do ruby file_path end task :PlayRockPaperScissorsGame do ruby file_path end task :rps do ruby file_path end RDoc::Task.new do |rdoc| rdoc.main = "README.md" rdoc.rdoc_files.include(`git ls-files -z`.split("\x0")) end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
PlayRockPaperScissorsGame-2.1.3 | Rakefile |
PlayRockPaperScissorsGame-2.1.2 | Rakefile |
PlayRockPaperScissorsGame-2.1.1 | Rakefile |
PlayRockPaperScissorsGame-2.1.0 | Rakefile |