Giter VIP home page Giter VIP logo

cheat_sheet_rails's Introduction

Rails cheat sheet [WIP]

I. Create and configure

Table of contents

  1. Create the app
  2. Configure
    1. Add Rspec
    2. Add Rubocop

1) Create the app

rails new --help to show default configuration options.

Useful options: -d postgresql Preconfigure for selected database -T Skip test ./ Create app in the current folder. App name, is the name of the folder.

2) Configure test

a) Install Rspec

GitHub - rspec/rspec-rails: RSpec for Rails-3+

  • Add gem to gemfile & bundle install
  • Initialize the spec/ directory rails generate rspec:install
  • To include rails_helper by default, append to generated .rspec file: --require rails_helper

b) Add rubocop

inherit_from:
  https://relaxed.ruby.style/rubocop.yml
  • Add more config in .rubocop.yml:
inherit_from:
  - http://relaxed.ruby.style/rubocop.yml

AllCops:
  DisplayStyleGuide: true
  DisplayCopNames: true
  Exclude:
    - 'db/schema.rb'
    - 'vendor/**/*'
    - 'config/environments/*.rb'
    - 'bin/*'

Rails:
  Enabled: True

Style/FrozenStringLiteralComment:
  Enabled: false

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*.rb'
    - 'Guardfile'
    - 'vendor/bundle'

cheat_sheet_rails's People

Contributors

thibautgrx 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.