├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── rurses.rb └── rurses │ ├── panel_stack.rb │ ├── version.rb │ └── window.rb ├── rurses.gemspec └── spec ├── rurses_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.1.5 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/rurses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/lib/rurses.rb -------------------------------------------------------------------------------- /lib/rurses/panel_stack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/lib/rurses/panel_stack.rb -------------------------------------------------------------------------------- /lib/rurses/version.rb: -------------------------------------------------------------------------------- 1 | module Rurses 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/rurses/window.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/lib/rurses/window.rb -------------------------------------------------------------------------------- /rurses.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/rurses.gemspec -------------------------------------------------------------------------------- /spec/rurses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JEG2/rurses/HEAD/spec/rurses_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | require 'rurses' 3 | --------------------------------------------------------------------------------