Git Product home page Git Product logo

ruby-test-driven-development's Introduction

Ruby Course

If you are not familiar with linters and GitHub Actions, read root level README.

Set-up Rubocop GitHub Action

Rubocop is a Ruby static code analyzer (a.k.a. linter) and code formatter. It will enforce many of the guidelines outlined in the community Ruby Style Guide.

This GitHub Action is going to run Rubocop to help you find style issues.

Please do the following steps in this order:

  1. In the first commit of your feature branch create a .github/workflows folder and add a copy of .github/workflows/linters.yml to that folder.
    • Remember to use the file linked above
    • Remember that .github folder starts with a dot.
  2. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.
  3. When you open your first pull request you should see the result of the GitHub Actions:

gh actions checks

Click on the Details link to see the full output and the errors that need to be fixed:

gh actions failing checks

[OPTIONAL]Set-up RSpec GitHub Action

You can run your tests with GitHub Actions to ensure that they are passing before merging a PR.

To use the GitHub Action to run your tests, please do the following steps in this order:

  1. Add a copy of .github/workflows/tests.yml to your .github/workflows folder.
    • Remember to use the file linked above
    • Do not modify or delete the .github/workflows/linters.yml file that should already be in that folder.
    • RSpec by default will try to run any file ending in _spec.rb inside the spec folder. Make sure to follow this convention for your tests files so rspec can run your spec files.
    • You can modify the .github/workflows/tests.yml file to better fit your custom needs.
  2. When you open your pull request you should see the result of the GitHub Action:

gh actions checks

Click on the Details link of the test action to check the results of your tests.

Set-up linters in your local env

  1. Add this line to the Gemfile
    gem 'rubocop', '>= 1.0', '< 2.0'
    
    not sure how to use Gemfile? Read this.
  2. Run bundle install.
  3. Copy .rubocop.yml to the root directory of your project
  4. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.
  5. Run rubocop.
  6. Fix linter errors.
  7. IMPORTANT NOTE: feel free to research auto-correct options for Rubocop if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!

Troubleshooting

  • While using Colorize gem, if you are facing errors with Rspec related to
    LoadError:
    cannot load such file -- colorize
    please remove --deployment from line no. 26 of test.yml file.

ruby-test-driven-development's People

Contributors

yazino12 avatar

Watchers

NWACHAN THEOPHILE avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.