├── LICENSE ├── README.md ├── Rakefile ├── gemspec.rb ├── lib └── session.rb ├── sample ├── bash.rb ├── bash.rb.out ├── driver.rb ├── session_idl.rb ├── session_sh.rb ├── sh0.rb ├── stdin.rb └── threadtest.rb ├── session.gemspec └── test └── session.rb /LICENSE: -------------------------------------------------------------------------------- 1 | same as Ruby's 2 | 3 | http://www.ruby-lang.org/en/LICENSE.txt 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/Rakefile -------------------------------------------------------------------------------- /gemspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/gemspec.rb -------------------------------------------------------------------------------- /lib/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/lib/session.rb -------------------------------------------------------------------------------- /sample/bash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/bash.rb -------------------------------------------------------------------------------- /sample/bash.rb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/bash.rb.out -------------------------------------------------------------------------------- /sample/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/driver.rb -------------------------------------------------------------------------------- /sample/session_idl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/session_idl.rb -------------------------------------------------------------------------------- /sample/session_sh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/session_sh.rb -------------------------------------------------------------------------------- /sample/sh0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/sh0.rb -------------------------------------------------------------------------------- /sample/stdin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/stdin.rb -------------------------------------------------------------------------------- /sample/threadtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/sample/threadtest.rb -------------------------------------------------------------------------------- /session.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/session.gemspec -------------------------------------------------------------------------------- /test/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/session/HEAD/test/session.rb --------------------------------------------------------------------------------