https://github.com/steemit/devportal-tutorials-rb
Executable Ruby tutorials and resources for the Steem blockchain
https://github.com/steemit/devportal-tutorials-rb
Last synced: about 1 year ago
JSON representation
Executable Ruby tutorials and resources for the Steem blockchain
- Host: GitHub
- URL: https://github.com/steemit/devportal-tutorials-rb
- Owner: steemit
- License: mit
- Created: 2018-05-25T18:26:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T06:00:03.000Z (over 7 years ago)
- Last Synced: 2025-04-11T04:42:03.700Z (about 1 year ago)
- Language: Ruby
- Size: 63.5 KB
- Stars: 0
- Watchers: 7
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
0. [Getting Started](tutorials/00_getting_started) - Common tasks for getting ruby apps to access the blockchain
1. [Blog Feed](tutorials/01_blog_feed) - Pull the list of a user's posts from the blockchain
11. [Submit Comment Reply](tutorials/11_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. clone this repo
`git clone git@github.com:steemit/devportal-tutorials-rb.git`
1. cd into the tutorial you wish to run, e.g.:
ex: `cd devportal-tutorials-rb/tutorials/01_blog_feed`
1. Use Bundler to install dependencies
`bundle install`
1. 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](./tutorials/tutorial_structure.md) for the text portion of the tutorial..