This gem provides tools for crafting syntactically correct Minecraft client commands.
This code started off as an ad-hoc collection of Ruby code to simplify the construction of complex client commands needed while constructing Minecraft worlds for my children. Eventually, the code because useful enough in its own right, that I thought others might find it useful if it were packaged up as a gem. It is currently in the early stages of its migration. Test cases are spotty and the documentation is almost non-existent.
My hope is that this gem will continue to grow and evolve into a complete system for running client-side bots.
Add this line to your application's Gemfile:
gem 'bloxx'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bloxx
TODO: Write usage instructions here
After checking out the repo, run bin/setup
to install dependencies. Then, run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
to create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
-
Be patient. It isn't ready for collaboration yet.
-
Fork it ( https://github.com/[my-github-username]/bloxx/fork )
-
Create your feature branch (
git checkout -b my-new-feature
) -
Commit your changes (
git commit -am 'Add some feature'
) -
Push to the branch (
git push origin my-new-feature
) -
Create a new Pull Request
- Create basic gem scaffolding
- Create robust specs for testing.
- Document how to use the current classes
- Publish on rubygems.org
- Add the tool that translates RTF documents into Minecraft books
- Add the tool that automates command sequences using falling-sand
- Add support for the Minecraft protocol
- Add support for version 1.9 when it is released