Build a Rails application from scratch. What should be the ideal workflow?

I am going to develop a Rails application pretty soon. Currently, I have nothing but an idea + a few wireframes. I would like to know how to proceed?

At what stage should I implement / write the following

  • Cucumber Functions
  • Rspec Tests
  • The code
  • Refactoring code

What gems / plugins do you use? [Common Tasks]

+3
source share
1 answer

If you intend to use Cucumber, you need to:

  • Write the functions of the cucumber
  • Run them and make sure they do not work.
  • Write enough code for these functions to pass.

, Cucumber , . , :

  • (, RSpec, )
  • ,

Edit: gems/plugins, , .

+1

Source: https://habr.com/ru/post/1754853/


All Articles