This codebase is source from hotrails.dev/turbo-rails tutorial with some adjustment like using tailwindcss instead of scss. Rspec instead of minitest.
- Ruby LSP
- solargraph
- ruby-rubocop-revived
- Ruby Around the Block
- Tailwind CSS Intellisense
- Rails
- endwise
bin/setup
bin/dev
- update chromium version accordingly in
spec/rails_helper.rb
- Run
bundle exec rspec
PUML
@startuml
entity Company {
+ name
}
entity User {
+ email
+ company_id
}
entity Quote {
+ name
+ company_id
}
entity LineItemDate {
+ date
+ quote_id
}
entity LineItem {
+ name
+ description
+ quantity
+ unit_price
+ line_item_date_id
}
Company ||--o{ User
Company ||--o{ Quote
Quote ||--o{ LineItemDate
LineItemDate ||--o{ LineItem
@enduml