├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── appveyor.yml ├── bin ├── console └── setup ├── lib ├── tty-cursor.rb └── tty │ ├── cursor.rb │ └── cursor │ └── version.rb ├── spec ├── spec_helper.rb └── unit │ ├── clear_lines_spec.rb │ ├── cursor_spec.rb │ ├── move_spec.rb │ ├── move_to_spec.rb │ └── scroll_spec.rb ├── tasks ├── console.rake ├── coverage.rake └── spec.rake └── tty-cursor.gemspec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: piotrmurach 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --warnings 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/tty-cursor.rb: -------------------------------------------------------------------------------- 1 | require_relative 'tty/cursor' 2 | -------------------------------------------------------------------------------- /lib/tty/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/lib/tty/cursor.rb -------------------------------------------------------------------------------- /lib/tty/cursor/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/lib/tty/cursor/version.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/clear_lines_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/unit/clear_lines_spec.rb -------------------------------------------------------------------------------- /spec/unit/cursor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/unit/cursor_spec.rb -------------------------------------------------------------------------------- /spec/unit/move_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/unit/move_spec.rb -------------------------------------------------------------------------------- /spec/unit/move_to_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/unit/move_to_spec.rb -------------------------------------------------------------------------------- /spec/unit/scroll_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/spec/unit/scroll_spec.rb -------------------------------------------------------------------------------- /tasks/console.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/tasks/console.rake -------------------------------------------------------------------------------- /tasks/coverage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/tasks/coverage.rake -------------------------------------------------------------------------------- /tasks/spec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/tasks/spec.rake -------------------------------------------------------------------------------- /tty-cursor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/tty-cursor/HEAD/tty-cursor.gemspec --------------------------------------------------------------------------------