Gem::Specification.new do |spec| spec.name = "PlayRockPaperScissorsGame" spec.version = "1.7.0" spec.date = "2017-04-01" spec.summary = "A Rock Paper Scissors Ruby Gem" spec.description = "A Ruby-programmed rock paper scissors game. To install: gem install PlayRockPaperScissorsGame; To run: rps; or: PlayRockPaperScissorsGame; For issues: https://github.com/bag3318/RockPaperScissors/issues" spec.author = "bag3318" spec.platform = Gem::Platform::RUBY spec.require_paths = ["lib", "lib/ref", "lib/rps", "test", "exec", "bin"] spec.files = ["lib/rps.rb", "lib/ref/PrivateMethods.rb", "lib/ref/Constants.rb", "lib/rps/version.rb", "exec/run.bat", "exec/rps.bash", "exec/uninstall.sh", "rps.gemspec", "Rakefile", "Gemfile", "LICENSE", "README.md"] spec.test_files = ["test/test_rps.rb"] spec.bindir = "bin" spec.executables << "rps" spec.executables << "PlayRockPaperScissorsGame" spec.license = "MIT" spec.homepage = "https://rubygems.org/gems/PlayRockPaperScissorsGame/" spec.extra_rdoc_files = "README.md" spec.required_ruby_version = ">= 2.0.0" spec.required_rubygems_version = ">= 2.6.10" spec.requirements << "A Windows or Mac computer." spec.metadata = { "issue_tracker" => "https://github.com/bag3318/RockPaperScissors/issues", "source_code" => "https://github.com/bag3318/RockPaperScissors", "releases" => "https://github.com/bag3318/RockPaperScissors/releases" } spec.post_install_message = "Thanks for installing! I hope you have fun playing rock paper scissors! :)" spec.add_runtime_dependency "bundler" , "~> 1.14.6" spec.add_runtime_dependency "colorize", "~> 0.8.1" spec.add_runtime_dependency "rake" , "~> 12.0.0" spec.add_runtime_dependency "rvm" , "~> 1.11.3.9" end