├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── ruby.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snaacky/ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snaacky/ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snaacky/ruby/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pymem==1.0 2 | keyboard==0.13.2 3 | #pywin32api -------------------------------------------------------------------------------- /ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snaacky/ruby/HEAD/ruby.py --------------------------------------------------------------------------------