├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── appveyor.yml ├── assets └── tty-option-usage.png ├── bin ├── console └── setup ├── examples ├── errors.rb ├── map.rb ├── nested.rb ├── network.rb └── run.rb ├── lib ├── tty-option.rb └── tty │ ├── option.rb │ └── option │ ├── aggregate_errors.rb │ ├── const.rb │ ├── conversions.rb │ ├── converter.rb │ ├── deep_dup.rb │ ├── dsl.rb │ ├── dsl │ ├── arity.rb │ └── conversion.rb │ ├── error_aggregator.rb │ ├── errors.rb │ ├── formatter.rb │ ├── inflection.rb │ ├── param_conversion.rb │ ├── param_permitted.rb │ ├── param_validation.rb │ ├── parameter.rb │ ├── parameter │ ├── argument.rb │ ├── environment.rb │ ├── keyword.rb │ └── option.rb │ ├── parameters.rb │ ├── params.rb │ ├── parser.rb │ ├── parser │ ├── arguments.rb │ ├── arity_check.rb │ ├── environments.rb │ ├── keywords.rb │ ├── options.rb │ ├── param_types.rb │ └── required_check.rb │ ├── pipeline.rb │ ├── result.rb │ ├── section.rb │ ├── sections.rb │ ├── usage.rb │ ├── usage_wrapper.rb │ └── version.rb ├── spec ├── perf │ └── parse_spec.rb ├── spec_helper.rb └── unit │ ├── aggregate_errors_spec.rb │ ├── conversions_spec.rb │ ├── converter_spec.rb │ ├── deep_dup_spec.rb │ ├── error_aggregator_spec.rb │ ├── help_spec.rb │ ├── inflection_spec.rb │ ├── param_conversion_spec.rb │ ├── param_permitted_spec.rb │ ├── param_validation_spec.rb │ ├── parameter │ ├── argument_spec.rb │ ├── environment_spec.rb │ ├── keyword_spec.rb │ └── option_spec.rb │ ├── parameters_spec.rb │ ├── params_spec.rb │ ├── parse_spec.rb │ ├── parser │ ├── arguments_spec.rb │ ├── arity_check_spec.rb │ ├── environments_spec.rb │ ├── keywords_spec.rb │ ├── options_spec.rb │ ├── param_types_spec.rb │ └── required_check_spec.rb │ ├── pipeline_spec.rb │ ├── result_spec.rb │ ├── sections_spec.rb │ ├── subclass_spec.rb │ ├── usage_spec.rb │ └── usage_wrapper_spec.rb ├── tasks ├── console.rake ├── coverage.rake └── spec.rake └── tty-option.gemspec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: piotrmurach 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --warnings 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/tty-option-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/assets/tty-option-usage.png -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/examples/errors.rb -------------------------------------------------------------------------------- /examples/map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/examples/map.rb -------------------------------------------------------------------------------- /examples/nested.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/examples/nested.rb -------------------------------------------------------------------------------- /examples/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/examples/network.rb -------------------------------------------------------------------------------- /examples/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/examples/run.rb -------------------------------------------------------------------------------- /lib/tty-option.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative "tty/option" 4 | -------------------------------------------------------------------------------- /lib/tty/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option.rb -------------------------------------------------------------------------------- /lib/tty/option/aggregate_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/aggregate_errors.rb -------------------------------------------------------------------------------- /lib/tty/option/const.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/const.rb -------------------------------------------------------------------------------- /lib/tty/option/conversions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/conversions.rb -------------------------------------------------------------------------------- /lib/tty/option/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/converter.rb -------------------------------------------------------------------------------- /lib/tty/option/deep_dup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/deep_dup.rb -------------------------------------------------------------------------------- /lib/tty/option/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/dsl.rb -------------------------------------------------------------------------------- /lib/tty/option/dsl/arity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/dsl/arity.rb -------------------------------------------------------------------------------- /lib/tty/option/dsl/conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/dsl/conversion.rb -------------------------------------------------------------------------------- /lib/tty/option/error_aggregator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/error_aggregator.rb -------------------------------------------------------------------------------- /lib/tty/option/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/errors.rb -------------------------------------------------------------------------------- /lib/tty/option/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/formatter.rb -------------------------------------------------------------------------------- /lib/tty/option/inflection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/inflection.rb -------------------------------------------------------------------------------- /lib/tty/option/param_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/param_conversion.rb -------------------------------------------------------------------------------- /lib/tty/option/param_permitted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/param_permitted.rb -------------------------------------------------------------------------------- /lib/tty/option/param_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/param_validation.rb -------------------------------------------------------------------------------- /lib/tty/option/parameter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameter.rb -------------------------------------------------------------------------------- /lib/tty/option/parameter/argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameter/argument.rb -------------------------------------------------------------------------------- /lib/tty/option/parameter/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameter/environment.rb -------------------------------------------------------------------------------- /lib/tty/option/parameter/keyword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameter/keyword.rb -------------------------------------------------------------------------------- /lib/tty/option/parameter/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameter/option.rb -------------------------------------------------------------------------------- /lib/tty/option/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parameters.rb -------------------------------------------------------------------------------- /lib/tty/option/params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/params.rb -------------------------------------------------------------------------------- /lib/tty/option/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/arguments.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/arity_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/arity_check.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/environments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/environments.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/keywords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/keywords.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/options.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/param_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/param_types.rb -------------------------------------------------------------------------------- /lib/tty/option/parser/required_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/parser/required_check.rb -------------------------------------------------------------------------------- /lib/tty/option/pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/pipeline.rb -------------------------------------------------------------------------------- /lib/tty/option/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/result.rb -------------------------------------------------------------------------------- /lib/tty/option/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/section.rb -------------------------------------------------------------------------------- /lib/tty/option/sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/sections.rb -------------------------------------------------------------------------------- /lib/tty/option/usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/usage.rb -------------------------------------------------------------------------------- /lib/tty/option/usage_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/usage_wrapper.rb -------------------------------------------------------------------------------- /lib/tty/option/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/lib/tty/option/version.rb -------------------------------------------------------------------------------- /spec/perf/parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/perf/parse_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/aggregate_errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/aggregate_errors_spec.rb -------------------------------------------------------------------------------- /spec/unit/conversions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/conversions_spec.rb -------------------------------------------------------------------------------- /spec/unit/converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/converter_spec.rb -------------------------------------------------------------------------------- /spec/unit/deep_dup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/deep_dup_spec.rb -------------------------------------------------------------------------------- /spec/unit/error_aggregator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/error_aggregator_spec.rb -------------------------------------------------------------------------------- /spec/unit/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/help_spec.rb -------------------------------------------------------------------------------- /spec/unit/inflection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/inflection_spec.rb -------------------------------------------------------------------------------- /spec/unit/param_conversion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/param_conversion_spec.rb -------------------------------------------------------------------------------- /spec/unit/param_permitted_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/param_permitted_spec.rb -------------------------------------------------------------------------------- /spec/unit/param_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/param_validation_spec.rb -------------------------------------------------------------------------------- /spec/unit/parameter/argument_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parameter/argument_spec.rb -------------------------------------------------------------------------------- /spec/unit/parameter/environment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parameter/environment_spec.rb -------------------------------------------------------------------------------- /spec/unit/parameter/keyword_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parameter/keyword_spec.rb -------------------------------------------------------------------------------- /spec/unit/parameter/option_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parameter/option_spec.rb -------------------------------------------------------------------------------- /spec/unit/parameters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parameters_spec.rb -------------------------------------------------------------------------------- /spec/unit/params_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/params_spec.rb -------------------------------------------------------------------------------- /spec/unit/parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parse_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/arguments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/arguments_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/arity_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/arity_check_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/environments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/environments_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/keywords_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/keywords_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/options_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/param_types_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/param_types_spec.rb -------------------------------------------------------------------------------- /spec/unit/parser/required_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/parser/required_check_spec.rb -------------------------------------------------------------------------------- /spec/unit/pipeline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/pipeline_spec.rb -------------------------------------------------------------------------------- /spec/unit/result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/result_spec.rb -------------------------------------------------------------------------------- /spec/unit/sections_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/sections_spec.rb -------------------------------------------------------------------------------- /spec/unit/subclass_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/subclass_spec.rb -------------------------------------------------------------------------------- /spec/unit/usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/usage_spec.rb -------------------------------------------------------------------------------- /spec/unit/usage_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/spec/unit/usage_wrapper_spec.rb -------------------------------------------------------------------------------- /tasks/console.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/tasks/console.rake -------------------------------------------------------------------------------- /tasks/coverage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/tasks/coverage.rake -------------------------------------------------------------------------------- /tasks/spec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/tasks/spec.rake -------------------------------------------------------------------------------- /tty-option.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-option/HEAD/tty-option.gemspec --------------------------------------------------------------------------------