├── .github ├── dependabot.yml └── workflows │ ├── gh-pages.yml │ ├── macos.yml │ ├── push_gem.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── BSDL ├── COPYING ├── Gemfile ├── History.md ├── README.md ├── Rakefile ├── curses.gemspec ├── ext └── curses │ ├── curses.c │ ├── depend │ └── extconf.rb ├── lib └── curses.rb └── sample ├── addch.rb ├── attr_demo.rb ├── colors.rb ├── form.rb ├── hello.rb ├── menu.rb ├── mouse.rb ├── mouse_move.rb ├── rain.rb ├── screen.rb ├── view.rb └── view2.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/.gitmodules -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/Gemfile -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/History.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/Rakefile -------------------------------------------------------------------------------- /curses.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/curses.gemspec -------------------------------------------------------------------------------- /ext/curses/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/ext/curses/curses.c -------------------------------------------------------------------------------- /ext/curses/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/ext/curses/depend -------------------------------------------------------------------------------- /ext/curses/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/ext/curses/extconf.rb -------------------------------------------------------------------------------- /lib/curses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/lib/curses.rb -------------------------------------------------------------------------------- /sample/addch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/addch.rb -------------------------------------------------------------------------------- /sample/attr_demo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/attr_demo.rb -------------------------------------------------------------------------------- /sample/colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/colors.rb -------------------------------------------------------------------------------- /sample/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/form.rb -------------------------------------------------------------------------------- /sample/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/hello.rb -------------------------------------------------------------------------------- /sample/menu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/menu.rb -------------------------------------------------------------------------------- /sample/mouse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/mouse.rb -------------------------------------------------------------------------------- /sample/mouse_move.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/mouse_move.rb -------------------------------------------------------------------------------- /sample/rain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/rain.rb -------------------------------------------------------------------------------- /sample/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/screen.rb -------------------------------------------------------------------------------- /sample/view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/view.rb -------------------------------------------------------------------------------- /sample/view2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/curses/HEAD/sample/view2.rb --------------------------------------------------------------------------------