Search Results for "how-do-i-rails-g-scaffold-book-title-without-the-default-tailwind-generated-classes-on-i-e-app-views-files-and-etc-if-any"
Lessons
Forum Threads

Forum Series Part 3: Nested Attributes and fields_for Discussion
29
General
What do you think about using ActiveForm? https://github.com/rails/ac...

Deploy Ubuntu 14.04 Trusty Tahr Discussion
371
General
The following commands should be slightly modified:cap install STAGES=productioncap production deployI believe it should be the following:bundle exec cap install STAGES=productionbundle exec cap pr...
paul lahana replied

File Uploading with Carrierwave Discussion
24
General
very helpful!! Thanks!!
Someone replied

How do I update value from one scaffold with the value of another scaffold?
2
Databases
I'm doing a project that contains a stock, I first created the stock scaffold like this:
```
rails generate scaffold stock name:string amount:float kind:string
```
And then a stock_flow scaffold ...
Tatiane Stivelman replied
Solved

Using custom scaffold templates for Rails models and controllers?
1
Rails
After getting tired of rebuilding all my default scaffold models, views and controllers I decided to create custom templates as outlines on various blogs / SA questions etc.
I created:
/lib/t...
Dan Tappin replied
Solved

Rails & Vue.js Trello Clone - Part 1 Discussion
34
General
Glad you decided to do this :)
don mclamb replied

Setup Windows 10 Discussion
236
General
Hi,I got all the way through this so thanks for the walk through! I run "rails server -b 0.0.0.0" and the server boots fine but when I go to localhost:3000 in the browser, the browser icon spins bu...

Workflow for TDD/BDD on Rails ?
1
Testing
Hi, I'd like some feedback if possible about the workflow of TDD/BDD on a Rails app. I was doing a research the whole weekend trying to find some good examples on how to do porperly TDD on my Rails...

Advanced Search, Autocomplete and Suggestions with ElasticSearch and the Searchkick gem Discussion
77
General
Chris, this is awesome!I was hoping you'd do a Searchkick/ElasticSearch video since you did the Ransack video!Thanks for all the great videos!

Doorkeeper Omniauth OAuth Client Discussion
27
General
Thanks for the heads up! What a pain in the butt.

Rails Application Templates Discussion
38
General
Hello,Im gettingCould not find "Procfile" in any of your source paths. Your current source paths are:
/Users/my_user/Documents/dev/my_app/https:/raw.githubusercontent.com/excid3/jumpstart/masterUsi...
Mpumelelo replied

How to use Hotwire in Rails Discussion
86
General
Can you please provide the repository for this also?
D john replied

Admin Interfaces with Administrate Discussion
25
General
*shudder*.. "automagically"

How to relate such as tables of a scaffold and a model and presentation of data in the show.html.erb view of the scaffold. Rails.
3
Rails
I am making a patient control system where I have the following tables that I need to list and present the data on the show.html.erb of patients.
I created a patient scaffold with the following da...
Chris Oliver replied

Decoupling Development: Rails + Next.js for Collaborative Full-Stack Projects
0
Javascript
Hey Rails Community!
I want to share the gem that I believe will significantly streamline full-stack development workflows: https://github.com/raphox/next_rails_scaffold
What Does It Do? The gem ...
Raphael Araújo posted

Subdomains
4
Gems / Libraries
Let's say I have a scaffold called 'blogs', and blogs have an attribute called 'subdomain'. I want to have each blog be hosted at a subdomain; let's say I have a blog with a subdomain of 'gorails',...
Chris Oliver replied

Add my face recognition in rails app
2
General
I have one app where i have a scaffold with a register of peoples with photo, but for me search if the people have your datas registered in my system i need use face recognition for read face in we...
heidi rodriguez replied

How to use the Sentimental gem
8
Gems / Libraries
Hi there,
I want to use the Sentimental gem to automatically check if an article is positive negative or neutral. This gem here: https://github.com/7compass/sentimental works fine in the Rails con...
Sascha M. replied
Solved

Update and limit the number of nested attributes in Ruby on Rails
1
Rails
I have a `Question` model related to `Option` model. Whenever I try to update question and related options, new options are created instead of updating an existing option. Why is it happening like ...