# -*- encoding: utf-8 -*- # stub: basic101 0.2.0 ruby lib Gem::Specification.new do |s| s.name = "basic101".freeze s.version = "0.2.0".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Wayne Conrad".freeze] s.date = "2014-12-13" s.description = "[![Gem Version](https://badge.fury.io/rb/basic101.png)](http://badge.fury.io/rb/basic101) [![Dependency Status](https://gemnasium.com/wconrad/basic101.svg)](https://gemnasium.com/wconrad/basic101) [![Code Climate](https://codeclimate.com/github/wconrad/basic101.png)](https://codeclimate.com/github/wconrad/basic101) [![Build Status](https://travis-ci.org/wconrad/basic101.png)](https://travis-ci.org/wconrad/basic101) basic101 is a circa 1980 BASIC interpreter written in Ruby. It supports a modified subset of Microsoft's BASIC-80 v. 5 and runs the games published in Basic Computer Games, Microcomputer Edition by David H. Ahl".freeze s.email = "wconrad@yagni.com".freeze s.executables = ["basic101".freeze] s.extra_rdoc_files = ["LICENSE.md".freeze, "README.md".freeze] s.files = [".rspec".freeze, ".simplecov".freeze, ".travis.yml".freeze, ".yardopts".freeze, "Changelog.md".freeze, "Gemfile".freeze, "Gemfile.lock".freeze, "LICENSE.md".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "basic101.gemspec".freeze, "bin/basic101".freeze, "lib/basic101.rb".freeze, "lib/basic101/abs_function.rb".freeze, "lib/basic101/argument_checker.rb".freeze, "lib/basic101/arguments.rb".freeze, "lib/basic101/array_reference.rb".freeze, "lib/basic101/asc_function.rb".freeze, "lib/basic101/basic_array.rb".freeze, "lib/basic101/basic_comparisons.rb".freeze, "lib/basic101/basic_float.rb".freeze, "lib/basic101/basic_integer.rb".freeze, "lib/basic101/basic_math.rb".freeze, "lib/basic101/basic_numeric.rb".freeze, "lib/basic101/basic_object.rb".freeze, "lib/basic101/basic_string.rb".freeze, "lib/basic101/binary_operation.rb".freeze, "lib/basic101/binary_operations.rb".freeze, "lib/basic101/built_in_functions.rb".freeze, "lib/basic101/chr_function.rb".freeze, "lib/basic101/cos_function.rb".freeze, "lib/basic101/data_statement.rb".freeze, "lib/basic101/define_function_statement.rb".freeze, "lib/basic101/dim_statement.rb".freeze, "lib/basic101/else_statement.rb".freeze, "lib/basic101/end_statement.rb".freeze, "lib/basic101/endif_statement.rb".freeze, "lib/basic101/errors.rb".freeze, "lib/basic101/exp_function.rb".freeze, "lib/basic101/for_stack.rb".freeze, "lib/basic101/for_statement.rb".freeze, "lib/basic101/function.rb".freeze, "lib/basic101/function_call.rb".freeze, "lib/basic101/function_identifier.rb".freeze, "lib/basic101/functions.rb".freeze, "lib/basic101/gosub_statement.rb".freeze, "lib/basic101/goto_statement.rb".freeze, "lib/basic101/identifier.rb".freeze, "lib/basic101/identity.rb".freeze, "lib/basic101/if_statement.rb".freeze, "lib/basic101/input.rb".freeze, "lib/basic101/input_reader.rb".freeze, "lib/basic101/input_statement.rb".freeze, "lib/basic101/int_function.rb".freeze, "lib/basic101/left_function.rb".freeze, "lib/basic101/len_function.rb".freeze, "lib/basic101/let_statement.rb".freeze, "lib/basic101/line.rb".freeze, "lib/basic101/log_function.rb".freeze, "lib/basic101/main.rb".freeze, "lib/basic101/mid_function.rb".freeze, "lib/basic101/negate_operation.rb".freeze, "lib/basic101/next_statement.rb".freeze, "lib/basic101/not_operation.rb".freeze, "lib/basic101/null_prompt_delimeter.rb".freeze, "lib/basic101/null_transcript.rb".freeze, "lib/basic101/numeric_identifier.rb".freeze, "lib/basic101/on_goto_statement.rb".freeze, "lib/basic101/output.rb".freeze, "lib/basic101/parser.rb".freeze, "lib/basic101/parser/data_statement.rb".freeze, "lib/basic101/parser/define_function_statement.rb".freeze, "lib/basic101/parser/dim_statement.rb".freeze, "lib/basic101/parser/end_statement.rb".freeze, "lib/basic101/parser/expression.rb".freeze, "lib/basic101/parser/for_statement.rb".freeze, "lib/basic101/parser/function_call.rb".freeze, "lib/basic101/parser/gosub_statement.rb".freeze, "lib/basic101/parser/goto_statement.rb".freeze, "lib/basic101/parser/identifier.rb".freeze, "lib/basic101/parser/if_statement.rb".freeze, "lib/basic101/parser/input_statement.rb".freeze, "lib/basic101/parser/let_statement.rb".freeze, "lib/basic101/parser/next_statement.rb".freeze, "lib/basic101/parser/numeric.rb".freeze, "lib/basic101/parser/on_goto_statement.rb".freeze, "lib/basic101/parser/print_statement.rb".freeze, "lib/basic101/parser/program.rb".freeze, "lib/basic101/parser/randomize_statement.rb".freeze, "lib/basic101/parser/read_statement.rb".freeze, "lib/basic101/parser/reference.rb".freeze, "lib/basic101/parser/remark_statement.rb".freeze, "lib/basic101/parser/restore_statement.rb".freeze, "lib/basic101/parser/return_statement.rb".freeze, "lib/basic101/parser/space.rb".freeze, "lib/basic101/parser/statements.rb".freeze, "lib/basic101/parser/stop_statement.rb".freeze, "lib/basic101/parser/string.rb".freeze, "lib/basic101/power_operation.rb".freeze, "lib/basic101/print_comma.rb".freeze, "lib/basic101/print_semicolon.rb".freeze, "lib/basic101/print_statement.rb".freeze, "lib/basic101/program.rb".freeze, "lib/basic101/program_counter.rb".freeze, "lib/basic101/prompt_delimeter.rb".freeze, "lib/basic101/randomize_statement.rb".freeze, "lib/basic101/read_statement.rb".freeze, "lib/basic101/reference.rb".freeze, "lib/basic101/remark_statement.rb".freeze, "lib/basic101/restore_statement.rb".freeze, "lib/basic101/return_statement.rb".freeze, "lib/basic101/right_function.rb".freeze, "lib/basic101/rnd_function.rb".freeze, "lib/basic101/runtime.rb".freeze, "lib/basic101/scalar_reference.rb".freeze, "lib/basic101/sgn_function.rb".freeze, "lib/basic101/sin_function.rb".freeze, "lib/basic101/sqr_function.rb".freeze, "lib/basic101/statement.rb".freeze, "lib/basic101/stop_statement.rb".freeze, "lib/basic101/str_function.rb".freeze, "lib/basic101/string_identifier.rb".freeze, "lib/basic101/tab.rb".freeze, "lib/basic101/tab_function.rb".freeze, "lib/basic101/tan_function.rb".freeze, "lib/basic101/transcript.rb".freeze, "lib/basic101/transform.rb".freeze, "lib/basic101/user_defined_function.rb".freeze, "lib/basic101/val_function.rb".freeze, "rake_tasks/default.rake".freeze, "rake_tasks/integration.rake".freeze, "rake_tasks/jeweler.rake".freeze, "rake_tasks/spec.rake".freeze, "rake_tasks/test.rake".freeze, "rake_tasks/yard.rake".freeze, "test/integration/arguments.rb".freeze, "test/integration/errors.rb".freeze, "test/integration/integration_test.rb".freeze, "test/integration/main.rb".freeze, "test/integration/output_file.rb".freeze, "test/integration/test.rb".freeze, "test/integration/tests/basic_computer_games/23-match.bas".freeze, "test/integration/tests/basic_computer_games/23-match.input".freeze, "test/integration/tests/basic_computer_games/23-match.output".freeze, "test/integration/tests/basic_computer_games/3dplot.bas".freeze, "test/integration/tests/basic_computer_games/3dplot.input".freeze, "test/integration/tests/basic_computer_games/3dplot.output".freeze, "test/integration/tests/basic_computer_games/aceyducy.bas".freeze, "test/integration/tests/basic_computer_games/aceyducy.input".freeze, "test/integration/tests/basic_computer_games/aceyducy.output".freeze, "test/integration/tests/basic_computer_games/amazing.bas".freeze, "test/integration/tests/basic_computer_games/amazing.input".freeze, "test/integration/tests/basic_computer_games/amazing.output".freeze, "test/integration/tests/basic_computer_games/animal.bas".freeze, "test/integration/tests/basic_computer_games/animal.input".freeze, "test/integration/tests/basic_computer_games/animal.output".freeze, "test/integration/tests/basic_computer_games/awari.bas".freeze, "test/integration/tests/basic_computer_games/awari.input".freeze, "test/integration/tests/basic_computer_games/awari.output".freeze, "test/integration/tests/basic_computer_games/bagels.bas".freeze, "test/integration/tests/basic_computer_games/bagels.input".freeze, "test/integration/tests/basic_computer_games/bagels.output".freeze, "test/integration/tests/basic_computer_games/banner.bas".freeze, "test/integration/tests/basic_computer_games/banner.input".freeze, "test/integration/tests/basic_computer_games/banner.output".freeze, "test/integration/tests/basic_computer_games/basketbl.bas".freeze, "test/integration/tests/basic_computer_games/basketbl.input".freeze, "test/integration/tests/basic_computer_games/basketbl.output".freeze, "test/integration/tests/basic_computer_games/batnum.bas".freeze, "test/integration/tests/basic_computer_games/batnum.input".freeze, "test/integration/tests/basic_computer_games/batnum.output".freeze, "test/integration/tests/basic_computer_games/battle.bas".freeze, "test/integration/tests/basic_computer_games/battle.input".freeze, "test/integration/tests/basic_computer_games/battle.output".freeze, "test/integration/tests/basic_computer_games/blackjck.bas".freeze, "test/integration/tests/basic_computer_games/blackjck.input".freeze, "test/integration/tests/basic_computer_games/blackjck.output".freeze, "test/integration/tests/basic_computer_games/bombard.bas".freeze, "test/integration/tests/basic_computer_games/bombard.input".freeze, "test/integration/tests/basic_computer_games/bombard.output".freeze, "test/integration/tests/basic_computer_games/bounce.bas".freeze, "test/integration/tests/basic_computer_games/bounce.input".freeze, "test/integration/tests/basic_computer_games/bounce.output".freeze, "test/integration/tests/basic_computer_games/bowling.bas".freeze, "test/integration/tests/basic_computer_games/bowling.input".freeze, "test/integration/tests/basic_computer_games/bowling.output".freeze, "test/integration/tests/basic_computer_games/boxing.bas".freeze, "test/integration/tests/basic_computer_games/boxing.input".freeze, "test/integration/tests/basic_computer_games/boxing.output".freeze, "test/integration/tests/basic_computer_games/bug.bas".freeze, "test/integration/tests/basic_computer_games/bug.input".freeze, "test/integration/tests/basic_computer_games/bug.output".freeze, "test/integration/tests/basic_computer_games/bullfght.bas".freeze, "test/integration/tests/basic_computer_games/bullfght.input".freeze, "test/integration/tests/basic_computer_games/bullfght.output".freeze, "test/integration/tests/basic_computer_games/bullseye.bas".freeze, "test/integration/tests/basic_computer_games/bullseye.input".freeze, "test/integration/tests/basic_computer_games/bullseye.output".freeze, "test/integration/tests/basic_computer_games/bunny.bas".freeze, "test/integration/tests/basic_computer_games/bunny.input".freeze, "test/integration/tests/basic_computer_games/bunny.output".freeze, "test/integration/tests/basic_computer_games/buzzword.bas".freeze, "test/integration/tests/basic_computer_games/buzzword.input".freeze, "test/integration/tests/basic_computer_games/buzzword.output".freeze, "test/integration/tests/basic_computer_games/calendar.bas".freeze, "test/integration/tests/basic_computer_games/calendar.input".freeze, "test/integration/tests/basic_computer_games/calendar.output".freeze, "test/integration/tests/basic_computer_games/change.bas".freeze, "test/integration/tests/basic_computer_games/change.input".freeze, "test/integration/tests/basic_computer_games/change.output".freeze, "test/integration/tests/basic_computer_games/checkers.bas".freeze, "test/integration/tests/basic_computer_games/checkers.input".freeze, "test/integration/tests/basic_computer_games/checkers.output".freeze, "test/integration/tests/basic_computer_games/chemist.bas".freeze, "test/integration/tests/basic_computer_games/chemist.input".freeze, "test/integration/tests/basic_computer_games/chemist.output".freeze, "test/integration/tests/basic_computer_games/chief.bas".freeze, "test/integration/tests/basic_computer_games/chief.input".freeze, "test/integration/tests/basic_computer_games/chief.output".freeze, "test/integration/tests/basic_computer_games/chomp.bas".freeze, "test/integration/tests/basic_computer_games/chomp.input".freeze, "test/integration/tests/basic_computer_games/chomp.output".freeze, "test/integration/tests/basic_computer_games/combat.bas".freeze, "test/integration/tests/basic_computer_games/combat.input".freeze, "test/integration/tests/basic_computer_games/combat.output".freeze, "test/integration/tests/basic_computer_games/craps.bas".freeze, "test/integration/tests/basic_computer_games/craps.input".freeze, "test/integration/tests/basic_computer_games/craps.output".freeze, "test/integration/tests/basic_computer_games/cube.bas".freeze, "test/integration/tests/basic_computer_games/cube.input".freeze, "test/integration/tests/basic_computer_games/cube.output".freeze, "test/integration/tests/basic_computer_games/depthchg.bas".freeze, "test/integration/tests/basic_computer_games/depthchg.input".freeze, "test/integration/tests/basic_computer_games/depthchg.output".freeze, "test/integration/tests/basic_computer_games/diamond.bas".freeze, "test/integration/tests/basic_computer_games/diamond.input".freeze, "test/integration/tests/basic_computer_games/diamond.output".freeze, "test/integration/tests/basic_computer_games/dice.bas".freeze, "test/integration/tests/basic_computer_games/dice.input".freeze, "test/integration/tests/basic_computer_games/dice.output".freeze, "test/integration/tests/basic_computer_games/digits.bas".freeze, "test/integration/tests/basic_computer_games/digits.input".freeze, "test/integration/tests/basic_computer_games/digits.output".freeze, "test/integration/tests/basic_computer_games/evenwin1.bas".freeze, "test/integration/tests/basic_computer_games/evenwin1.input".freeze, "test/integration/tests/basic_computer_games/evenwin1.output".freeze, "test/integration/tests/basic_computer_games/evenwin2.bas".freeze, "test/integration/tests/basic_computer_games/evenwin2.input".freeze, "test/integration/tests/basic_computer_games/evenwin2.output".freeze, "test/integration/tests/basic_computer_games/flipflop.bas".freeze, "test/integration/tests/basic_computer_games/flipflop.input".freeze, "test/integration/tests/basic_computer_games/flipflop.output".freeze, "test/integration/tests/basic_computer_games/footbal1.bas".freeze, "test/integration/tests/basic_computer_games/footbal1.input".freeze, "test/integration/tests/basic_computer_games/footbal1.output".freeze, "test/integration/tests/basic_computer_games/footbal2.bas".freeze, "test/integration/tests/basic_computer_games/footbal2.input".freeze, "test/integration/tests/basic_computer_games/footbal2.output".freeze, "test/integration/tests/basic_computer_games/furtradr.bas".freeze, "test/integration/tests/basic_computer_games/furtradr.input".freeze, "test/integration/tests/basic_computer_games/furtradr.output".freeze, "test/integration/tests/basic_computer_games/golf.bas".freeze, "test/integration/tests/basic_computer_games/golf.input".freeze, "test/integration/tests/basic_computer_games/golf.output".freeze, "test/integration/tests/basic_computer_games/gomoko.bas".freeze, "test/integration/tests/basic_computer_games/gomoko.input".freeze, "test/integration/tests/basic_computer_games/gomoko.output".freeze, "test/integration/tests/basic_computer_games/guess.bas".freeze, "test/integration/tests/basic_computer_games/guess.input".freeze, "test/integration/tests/basic_computer_games/guess.output".freeze, "test/integration/tests/basic_computer_games/gunner.bas".freeze, "test/integration/tests/basic_computer_games/gunner.input".freeze, "test/integration/tests/basic_computer_games/gunner.output".freeze, "test/integration/tests/basic_computer_games/hamurabi.bas".freeze, "test/integration/tests/basic_computer_games/hamurabi.input".freeze, "test/integration/tests/basic_computer_games/hamurabi.output".freeze, "test/integration/tests/basic_computer_games/hangman.bas".freeze, "test/integration/tests/basic_computer_games/hangman.input".freeze, "test/integration/tests/basic_computer_games/hangman.output".freeze, "test/integration/tests/basic_computer_games/hello.bas".freeze, "test/integration/tests/basic_computer_games/hello.input".freeze, "test/integration/tests/basic_computer_games/hello.output".freeze, "test/integration/tests/basic_computer_games/hexapawn.bas".freeze, "test/integration/tests/basic_computer_games/hexapawn.input".freeze, "test/integration/tests/basic_computer_games/hexapawn.output".freeze, "test/integration/tests/basic_computer_games/hi-q.bas".freeze, "test/integration/tests/basic_computer_games/hi-q.input".freeze, "test/integration/tests/basic_computer_games/hi-q.output".freeze, "test/integration/tests/basic_computer_games/hilo.bas".freeze, "test/integration/tests/basic_computer_games/hilo.input".freeze, "test/integration/tests/basic_computer_games/hilo.output".freeze, "test/integration/tests/basic_computer_games/hockey.bas".freeze, "test/integration/tests/basic_computer_games/hockey.input".freeze, "test/integration/tests/basic_computer_games/hockey.output".freeze, "test/integration/tests/basic_computer_games/horsrace.bas".freeze, "test/integration/tests/basic_computer_games/horsrace.input".freeze, "test/integration/tests/basic_computer_games/horsrace.output".freeze, "test/integration/tests/basic_computer_games/hurkle.bas".freeze, "test/integration/tests/basic_computer_games/hurkle.input".freeze, "test/integration/tests/basic_computer_games/hurkle.output".freeze, "test/integration/tests/basic_computer_games/kinema.bas".freeze, "test/integration/tests/basic_computer_games/kinema.input".freeze, "test/integration/tests/basic_computer_games/kinema.output".freeze, "test/integration/tests/basic_computer_games/king.bas".freeze, "test/integration/tests/basic_computer_games/king.input".freeze, "test/integration/tests/basic_computer_games/king.output".freeze, "test/integration/tests/basic_computer_games/lem.bas".freeze, "test/integration/tests/basic_computer_games/lem.input".freeze, "test/integration/tests/basic_computer_games/lem.output".freeze, "test/integration/tests/basic_computer_games/letter.bas".freeze, "test/integration/tests/basic_computer_games/letter.input".freeze, "test/integration/tests/basic_computer_games/letter.output".freeze, "test/integration/tests/basic_computer_games/life.bas".freeze, "test/integration/tests/basic_computer_games/life.input".freeze, "test/integration/tests/basic_computer_games/life.options".freeze, "test/integration/tests/basic_computer_games/life.output".freeze, "test/integration/tests/basic_computer_games/life2.bas".freeze, "test/integration/tests/basic_computer_games/life2.input".freeze, "test/integration/tests/basic_computer_games/life2.output".freeze, "test/integration/tests/basic_computer_games/litquiz.bas".freeze, "test/integration/tests/basic_computer_games/litquiz.input".freeze, "test/integration/tests/basic_computer_games/litquiz.output".freeze, "test/integration/tests/basic_computer_games/love.bas".freeze, "test/integration/tests/basic_computer_games/love.input".freeze, "test/integration/tests/basic_computer_games/love.output".freeze, "test/integration/tests/basic_computer_games/lunar.bas".freeze, "test/integration/tests/basic_computer_games/lunar.input".freeze, "test/integration/tests/basic_computer_games/lunar.output".freeze, "test/integration/tests/basic_computer_games/mastrmnd.bas".freeze, "test/integration/tests/basic_computer_games/mastrmnd.input".freeze, "test/integration/tests/basic_computer_games/mastrmnd.output".freeze, "test/integration/tests/basic_computer_games/mathdice.bas".freeze, "test/integration/tests/basic_computer_games/mathdice.input".freeze, "test/integration/tests/basic_computer_games/mathdice.output".freeze, "test/integration/tests/basic_computer_games/mugwump.bas".freeze, "test/integration/tests/basic_computer_games/mugwump.input".freeze, "test/integration/tests/basic_computer_games/mugwump.output".freeze, "test/integration/tests/basic_computer_games/name.bas".freeze, "test/integration/tests/basic_computer_games/name.input".freeze, "test/integration/tests/basic_computer_games/name.output".freeze, "test/integration/tests/basic_computer_games/nicoma.bas".freeze, "test/integration/tests/basic_computer_games/nicoma.input".freeze, "test/integration/tests/basic_computer_games/nicoma.output".freeze, "test/integration/tests/basic_computer_games/nim.bas".freeze, "test/integration/tests/basic_computer_games/nim.input".freeze, "test/integration/tests/basic_computer_games/nim.output".freeze, "test/integration/tests/basic_computer_games/number.bas".freeze, "test/integration/tests/basic_computer_games/number.input".freeze, "test/integration/tests/basic_computer_games/number.output".freeze, "test/integration/tests/basic_computer_games/onecheck.bas".freeze, "test/integration/tests/basic_computer_games/onecheck.input".freeze, "test/integration/tests/basic_computer_games/onecheck.output".freeze, "test/integration/tests/basic_computer_games/orbit.bas".freeze, "test/integration/tests/basic_computer_games/orbit.input".freeze, "test/integration/tests/basic_computer_games/orbit.output".freeze, "test/integration/tests/basic_computer_games/pizza.bas".freeze, "test/integration/tests/basic_computer_games/pizza.input".freeze, "test/integration/tests/basic_computer_games/pizza.output".freeze, "test/integration/tests/basic_computer_games/poetry.bas".freeze, "test/integration/tests/basic_computer_games/poetry.input".freeze, "test/integration/tests/basic_computer_games/poetry.options".freeze, "test/integration/tests/basic_computer_games/poetry.output".freeze, "test/integration/tests/basic_computer_games/poker.bas".freeze, "test/integration/tests/basic_computer_games/poker.input".freeze, "test/integration/tests/basic_computer_games/poker.output".freeze, "test/integration/tests/basic_computer_games/queen.bas".freeze, "test/integration/tests/basic_computer_games/queen.input".freeze, "test/integration/tests/basic_computer_games/queen.output".freeze, "test/integration/tests/basic_computer_games/reverse.bas".freeze, "test/integration/tests/basic_computer_games/reverse.input".freeze, "test/integration/tests/basic_computer_games/reverse.output".freeze, "test/integration/tests/basic_computer_games/rocket.bas".freeze, "test/integration/tests/basic_computer_games/rocket.input".freeze, "test/integration/tests/basic_computer_games/rocket.output".freeze, "test/integration/tests/basic_computer_games/rocksp.bas".freeze, "test/integration/tests/basic_computer_games/rocksp.input".freeze, "test/integration/tests/basic_computer_games/rocksp.output".freeze, "test/integration/tests/basic_computer_games/roulette.bas".freeze, "test/integration/tests/basic_computer_games/roulette.input".freeze, "test/integration/tests/basic_computer_games/roulette.output".freeze, "test/integration/tests/basic_computer_games/rusrou.bas".freeze, "test/integration/tests/basic_computer_games/rusrou.input".freeze, "test/integration/tests/basic_computer_games/rusrou.output".freeze, "test/integration/tests/basic_computer_games/salvo.bas".freeze, "test/integration/tests/basic_computer_games/salvo.input".freeze, "test/integration/tests/basic_computer_games/salvo.output".freeze, "test/integration/tests/basic_computer_games/sinewave.bas".freeze, "test/integration/tests/basic_computer_games/sinewave.input".freeze, "test/integration/tests/basic_computer_games/sinewave.output".freeze, "test/integration/tests/basic_computer_games/slalom.bas".freeze, "test/integration/tests/basic_computer_games/slalom.input".freeze, "test/integration/tests/basic_computer_games/slalom.output".freeze, "test/integration/tests/basic_computer_games/slots.bas".freeze, "test/integration/tests/basic_computer_games/slots.input".freeze, "test/integration/tests/basic_computer_games/slots.output".freeze, "test/integration/tests/basic_computer_games/splat.bas".freeze, "test/integration/tests/basic_computer_games/splat.input".freeze, "test/integration/tests/basic_computer_games/splat.output".freeze, "test/integration/tests/basic_computer_games/stars.bas".freeze, "test/integration/tests/basic_computer_games/stars.input".freeze, "test/integration/tests/basic_computer_games/stars.output".freeze, "test/integration/tests/basic_computer_games/stock.bas".freeze, "test/integration/tests/basic_computer_games/stock.input".freeze, "test/integration/tests/basic_computer_games/stock.output".freeze, "test/integration/tests/basic_computer_games/superstartrek.bas".freeze, "test/integration/tests/basic_computer_games/superstartrek.input".freeze, "test/integration/tests/basic_computer_games/superstartrek.output".freeze, "test/integration/tests/basic_computer_games/superstartrekins.bas".freeze, "test/integration/tests/basic_computer_games/superstartrekins.input".freeze, "test/integration/tests/basic_computer_games/superstartrekins.output".freeze, "test/integration/tests/basic_computer_games/synonym.bas".freeze, "test/integration/tests/basic_computer_games/synonym.input".freeze, "test/integration/tests/basic_computer_games/synonym.output".freeze, "test/integration/tests/basic_computer_games/target.bas".freeze, "test/integration/tests/basic_computer_games/target.input".freeze, "test/integration/tests/basic_computer_games/target.output".freeze, "test/integration/tests/basic_computer_games/tictac1.bas".freeze, "test/integration/tests/basic_computer_games/tictac1.input".freeze, "test/integration/tests/basic_computer_games/tictac1.output".freeze, "test/integration/tests/basic_computer_games/tictac2.bas".freeze, "test/integration/tests/basic_computer_games/tictac2.input".freeze, "test/integration/tests/basic_computer_games/tictac2.output".freeze, "test/integration/tests/basic_computer_games/towers.bas".freeze, "test/integration/tests/basic_computer_games/towers.input".freeze, "test/integration/tests/basic_computer_games/towers.output".freeze, "test/integration/tests/basic_computer_games/train.bas".freeze, "test/integration/tests/basic_computer_games/train.input".freeze, "test/integration/tests/basic_computer_games/train.output".freeze, "test/integration/tests/basic_computer_games/trap.bas".freeze, "test/integration/tests/basic_computer_games/trap.input".freeze, "test/integration/tests/basic_computer_games/trap.output".freeze, "test/integration/tests/basic_computer_games/war.bas".freeze, "test/integration/tests/basic_computer_games/war.input".freeze, "test/integration/tests/basic_computer_games/war.output".freeze, "test/integration/tests/basic_computer_games/weekday.bas".freeze, "test/integration/tests/basic_computer_games/weekday.input".freeze, "test/integration/tests/basic_computer_games/weekday.output".freeze, "test/integration/tests/basic_computer_games/word.bas".freeze, "test/integration/tests/basic_computer_games/word.input".freeze, "test/integration/tests/basic_computer_games/word.output".freeze, "test/integration/tests/fast/abs.bas".freeze, "test/integration/tests/fast/abs.input".freeze, "test/integration/tests/fast/abs.output".freeze, "test/integration/tests/fast/add.bas".freeze, "test/integration/tests/fast/add.input".freeze, "test/integration/tests/fast/add.output".freeze, "test/integration/tests/fast/and.bas".freeze, "test/integration/tests/fast/and.input".freeze, "test/integration/tests/fast/and.output".freeze, "test/integration/tests/fast/array.bas".freeze, "test/integration/tests/fast/array.input".freeze, "test/integration/tests/fast/array.output".freeze, "test/integration/tests/fast/asc.bas".freeze, "test/integration/tests/fast/asc.input".freeze, "test/integration/tests/fast/asc.output".freeze, "test/integration/tests/fast/chr.bas".freeze, "test/integration/tests/fast/chr.input".freeze, "test/integration/tests/fast/chr.output".freeze, "test/integration/tests/fast/cos.bas".freeze, "test/integration/tests/fast/cos.input".freeze, "test/integration/tests/fast/cos.output".freeze, "test/integration/tests/fast/def_fn.bas".freeze, "test/integration/tests/fast/def_fn.input".freeze, "test/integration/tests/fast/def_fn.output".freeze, "test/integration/tests/fast/divide.bas".freeze, "test/integration/tests/fast/divide.input".freeze, "test/integration/tests/fast/divide.output".freeze, "test/integration/tests/fast/end.bas".freeze, "test/integration/tests/fast/end.input".freeze, "test/integration/tests/fast/end.output".freeze, "test/integration/tests/fast/eq.bas".freeze, "test/integration/tests/fast/eq.input".freeze, "test/integration/tests/fast/eq.output".freeze, "test/integration/tests/fast/exp.bas".freeze, "test/integration/tests/fast/exp.input".freeze, "test/integration/tests/fast/exp.output".freeze, "test/integration/tests/fast/float.bas".freeze, "test/integration/tests/fast/float.input".freeze, "test/integration/tests/fast/float.output".freeze, "test/integration/tests/fast/for_next.bas".freeze, "test/integration/tests/fast/for_next.input".freeze, "test/integration/tests/fast/for_next.output".freeze, "test/integration/tests/fast/ge.bas".freeze, "test/integration/tests/fast/ge.input".freeze, "test/integration/tests/fast/ge.output".freeze, "test/integration/tests/fast/gosub_return.bas".freeze, "test/integration/tests/fast/gosub_return.input".freeze, "test/integration/tests/fast/gosub_return.output".freeze, "test/integration/tests/fast/goto.bas".freeze, "test/integration/tests/fast/goto.input".freeze, "test/integration/tests/fast/goto.output".freeze, "test/integration/tests/fast/gt.bas".freeze, "test/integration/tests/fast/gt.input".freeze, "test/integration/tests/fast/gt.output".freeze, "test/integration/tests/fast/if.bas".freeze, "test/integration/tests/fast/if.input".freeze, "test/integration/tests/fast/if.output".freeze, "test/integration/tests/fast/input.bas".freeze, "test/integration/tests/fast/input.input".freeze, "test/integration/tests/fast/input.output".freeze, "test/integration/tests/fast/int.bas".freeze, "test/integration/tests/fast/int.input".freeze, "test/integration/tests/fast/int.output".freeze, "test/integration/tests/fast/integer_plus_string.bas".freeze, "test/integration/tests/fast/integer_plus_string.input".freeze, "test/integration/tests/fast/integer_plus_string.output".freeze, "test/integration/tests/fast/invalid_argument.bas".freeze, "test/integration/tests/fast/invalid_argument.input".freeze, "test/integration/tests/fast/invalid_argument.output".freeze, "test/integration/tests/fast/le.bas".freeze, "test/integration/tests/fast/le.input".freeze, "test/integration/tests/fast/le.output".freeze, "test/integration/tests/fast/left.bas".freeze, "test/integration/tests/fast/left.input".freeze, "test/integration/tests/fast/left.output".freeze, "test/integration/tests/fast/len.bas".freeze, "test/integration/tests/fast/len.input".freeze, "test/integration/tests/fast/len.output".freeze, "test/integration/tests/fast/let.bas".freeze, "test/integration/tests/fast/let.input".freeze, "test/integration/tests/fast/let.output".freeze, "test/integration/tests/fast/log.bas".freeze, "test/integration/tests/fast/log.input".freeze, "test/integration/tests/fast/log.output".freeze, "test/integration/tests/fast/lt.bas".freeze, "test/integration/tests/fast/lt.input".freeze, "test/integration/tests/fast/lt.output".freeze, "test/integration/tests/fast/math.output".freeze, "test/integration/tests/fast/mid.bas".freeze, "test/integration/tests/fast/mid.input".freeze, "test/integration/tests/fast/mid.output".freeze, "test/integration/tests/fast/multiply.bas".freeze, "test/integration/tests/fast/multiply.input".freeze, "test/integration/tests/fast/multiply.output".freeze, "test/integration/tests/fast/ne.bas".freeze, "test/integration/tests/fast/ne.input".freeze, "test/integration/tests/fast/ne.output".freeze, "test/integration/tests/fast/negate.bas".freeze, "test/integration/tests/fast/negate.input".freeze, "test/integration/tests/fast/negate.output".freeze, "test/integration/tests/fast/not.bas".freeze, "test/integration/tests/fast/not.input".freeze, "test/integration/tests/fast/not.output".freeze, "test/integration/tests/fast/on_goto.bas".freeze, "test/integration/tests/fast/on_goto.input".freeze, "test/integration/tests/fast/on_goto.output".freeze, "test/integration/tests/fast/or.bas".freeze, "test/integration/tests/fast/or.input".freeze, "test/integration/tests/fast/or.output".freeze, "test/integration/tests/fast/parentheses.bas".freeze, "test/integration/tests/fast/parentheses.input".freeze, "test/integration/tests/fast/parentheses.output".freeze, "test/integration/tests/fast/power.bas".freeze, "test/integration/tests/fast/power.input".freeze, "test/integration/tests/fast/power.output".freeze, "test/integration/tests/fast/print.bas".freeze, "test/integration/tests/fast/print.input".freeze, "test/integration/tests/fast/print.output".freeze, "test/integration/tests/fast/read_data.bas".freeze, "test/integration/tests/fast/read_data.input".freeze, "test/integration/tests/fast/read_data.output".freeze, "test/integration/tests/fast/rem.bas".freeze, "test/integration/tests/fast/rem.input".freeze, "test/integration/tests/fast/rem.output".freeze, "test/integration/tests/fast/right.bas".freeze, "test/integration/tests/fast/right.input".freeze, "test/integration/tests/fast/right.output".freeze, "test/integration/tests/fast/rnd.bas".freeze, "test/integration/tests/fast/rnd.input".freeze, "test/integration/tests/fast/rnd.output".freeze, "test/integration/tests/fast/sgn.bas".freeze, "test/integration/tests/fast/sgn.input".freeze, "test/integration/tests/fast/sgn.output".freeze, "test/integration/tests/fast/sin.bas".freeze, "test/integration/tests/fast/sin.input".freeze, "test/integration/tests/fast/sin.output".freeze, "test/integration/tests/fast/sqr.bas".freeze, "test/integration/tests/fast/sqr.input".freeze, "test/integration/tests/fast/sqr.output".freeze, "test/integration/tests/fast/stop.bas".freeze, "test/integration/tests/fast/stop.input".freeze, "test/integration/tests/fast/stop.output".freeze, "test/integration/tests/fast/str.bas".freeze, "test/integration/tests/fast/str.input".freeze, "test/integration/tests/fast/str.output".freeze, "test/integration/tests/fast/string_addition.bas".freeze, "test/integration/tests/fast/string_addition.input".freeze, "test/integration/tests/fast/string_addition.output".freeze, "test/integration/tests/fast/string_comparisons.bas".freeze, "test/integration/tests/fast/string_comparisons.input".freeze, "test/integration/tests/fast/string_comparisons.output".freeze, "test/integration/tests/fast/string_plus_integer.bas".freeze, "test/integration/tests/fast/string_plus_integer.input".freeze, "test/integration/tests/fast/string_plus_integer.output".freeze, "test/integration/tests/fast/subtract.bas".freeze, "test/integration/tests/fast/subtract.input".freeze, "test/integration/tests/fast/subtract.output".freeze, "test/integration/tests/fast/tab.bas".freeze, "test/integration/tests/fast/tab.input".freeze, "test/integration/tests/fast/tab.output".freeze, "test/integration/tests/fast/tan.bas".freeze, "test/integration/tests/fast/tan.input".freeze, "test/integration/tests/fast/tan.output".freeze, "test/integration/tests/fast/val.bas".freeze, "test/integration/tests/fast/val.input".freeze, "test/integration/tests/fast/val.output".freeze, "test/spec/argument_checker_spec.rb".freeze, "test/spec/basic_array_spec.rb".freeze, "test/spec/basic_float_spec.rb".freeze, "test/spec/basic_integer_spec.rb".freeze, "test/spec/basic_numeric_spec.rb".freeze, "test/spec/basic_object_spec.rb".freeze, "test/spec/basic_string_spec.rb".freeze, "test/spec/for_stack_spec.rb".freeze, "test/spec/input_reader_spec.rb".freeze, "test/spec/input_spec.rb".freeze, "test/spec/line_spec.rb".freeze, "test/spec/output_spec.rb".freeze, "test/spec/parser_spec.rb".freeze, "test/spec/program_spec.rb".freeze, "test/spec/spec_helper.rb".freeze, "test/spec/support/basic_numeric_helpers.rb".freeze, "test/spec/support/basic_object_helpers.rb".freeze, "test/spec/transcript_spec.rb".freeze, "test/spec/transform_spec.rb".freeze] s.homepage = "http://github.com/wconrad/basic101".freeze s.licenses = ["MIT".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "Circa 1980 basic intepreter".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, ["~> 1.5".freeze]) s.add_development_dependency(%q.freeze, ["~> 2.0".freeze]) s.add_development_dependency(%q.freeze, ["~> 10.4".freeze]) s.add_development_dependency(%q.freeze, ["~> 3.2".freeze]) s.add_development_dependency(%q.freeze, ["~> 3.1".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.1".freeze]) s.add_development_dependency(%q.freeze, ["~> 0.9".freeze]) s.add_development_dependency(%q.freeze, ["~> 0.8.7".freeze]) end