Skip to content
Snippets Groups Projects
Name Last commit Last update
..
tutorials
.gitignore
LICENSE
README.md

devportal-tutorials-rb

Ruby Tutorials for the Developer Portal

These examples/tutorials will familiarize you with the basics of operating on the steem blockchain.

Each tutorial is located in its own folder, and has a README.md with an outline of the basic concepts and operations it intends to teach.

The tutorials build on each other. It's suggested you go through them in-order.

Tutorial List

  1. Getting Started - Common tasks for getting ruby apps to access the blockchain
  2. Blog Feed - Pull the list of a user's posts from the blockchain
  3. Submit Comment Reply - Broadcast a reply to the blockchain using the values provided

To Run one of the tutorials

Use the command line/terminal for the following instructions

  1. git clone https://gitlab.syncad.com/hive/devportal.git

    git clone git@github.com:steemit/devportal-tutorials-rb.git

  2. cd into the tutorial you wish to run, e.g.:

    ex: cd devportal-tutorials-rb/tutorials/01_blog_feed

  3. Use Bundler to install dependencies

    bundle install

  4. Run the tutorial, e.g.:

    ruby blog_feed.rb steemitblog

Contributing

If you're interested in contributing a tutorial to this repo. Please have a look at the guidelines for the text portion of the tutorial..