-
Ruby version - 2.4.2
-
Rails version - 5.1
This simplistic app will help you track transactions related to a wallet address.
The code is structured as:
- Views: All the HTML for the views resides here
- Controllers: All the actions triggered from views are defined here
- Services: All the business logic resides here
To get this app running follow these steps:
- Clone the repo and run
bundle install
- To run the app -
bundle exec foreman start
- Visit localhost:7300, enter a valid wallet address and watch the magic unfurl!
To run the test suite:
- Clone the repo and run
bundle install
- To see the tests in action run
bundle exec foreman run rails test