Minecraft API for the Raspberry Pi

An API for the Raspberry Pi version of minecraft

Prerequisites:

To install:

gem install minecraft-api

and in your code:

require 'minecraft-api'

api = MinecraftApi.new(hostname, 4711) # <-- where ever your server is
api.world.block(5,10,15,Block::WOOD)
api.player.go(20,40,60)

etc...