Basic CMS: Allow users to add custom CSS
0
Rails
For an App I am building, the platform provides users with a unique subdomain, which they can customize the layout by adding Rows, which have various templates to choose from. I want to allow users...
How to save a record in a nested form from a namespaced resource?
1
Rails
I have a nested form from a namespaced resource...
#Word.rb
```
class Word < ApplicationRecord
belongs_to :category
has_many :choices
accepts_nested_attributes_for :choices
validate...
How do I update?
1
Rails
So, I'm following a YouTube video trying to create my first Blog. See the following link, at minute 13:50, https://www.youtube.com/watch?v=YCJqAZ--Sd8. I'm attempting to do ...
Rails stopped listening on localhost
0
Rails
I am a novice rails user, I have been plodding along without too much trouble until today.I use a Mac (just stating that in case my environment needs to be considered)After creating a new rails app...
ActiveRecord/Routing madness
0
Rails
I'm not sure whats happening here, I feel like I've done this successfully in the past but for some reason my app is crashing all over.
This is quite simple. Ive got a model `Employees` and it has...
Solved
How to show a image on each property on index page
0
Rails
Good evening everyone,I am trying to create a real estate ad site and I do not know how to display the image associated with a property in each property displayed in the index page.I have a Propert...
Ruby on Rails migrations into a single migration?
0
Rails
Hi all. So i am a ruby on rails developer and I haven't used this feature earlier. So asking exactly how do I squash ruby on rails migrations into a single one?Any help would do.
Personal records
0
Rails
Hello! How to create an entry for each user? But only those creators can see these records
How to integrate mailgun in a rails app
0
Rails
Hi guys, I have a newsletter form where I collect the email of my users and I want to send the mails to mailgun to send them emails. how can I do that?!
React_on_rails 5.1.4
0
Rails
How to intergate react.semantic-ui.com in react_on_rails ...please help me ..thankyou very much
bad URI(is not URI?): Gotham Bold Regular.ttf error, how to fix?
0
Rails
I followed all the steps to add a fonts folder, register it with rails, and declare the @font-face in my .scss, but the same error keeps occuring. I am using rails 5.1.4, with the foundation frame...
Which is the simplest way to add ES6 to a Rails 5.1 app?
2
Rails
Hi! As of Rails 5.1.4, which is the most simple way to use ES6 in a Rails application?
Rails How to link an email form with Sendgrid?
0
Rails
I was able to create a contact form that when a user clicks submit - its send an email (which i get in my yahoo inbox).
I would like to now have that email be sent via sendgrid so that I can anal...
Solved
How can I do drop down dependencies?
0
Rails
First: Apologies if already addressed.
i have two situations where i need dropdown/select dependencies and wondering if anyone can help with a simple way of handling this using Rails, gem, mininal...
How to render partial as a json response for json format?
0
Rails
Hi Guys.
Recently i ran into a problem which does not allowing me to render a partial as a JSON response for .json requests. Below you can get in more detail.
I have a partial resides in below pa...
Share scopes/nested routes/inherited resources?
0
Rails
I'm in the process of learning Rails (loving it so far) and my play project (A task list, obvs) is structured a little like this:
Task -> belong to project/project has many tasks
Task has scope...
Simple_calendar how to only show start and end date on calendar?
3
Rails
Say I have an event that starts on a given day and stretches out a month to an end date. Is there a way to only show the start and end date but do not show on the calendar the event listed for all ...
How do I share my master.key with capistrano deployment
1
Rails
After following the guide [Deploy Ruby on Rails on ubuntu 18.04](https://gorails.com/deploy/ubuntu/18.04) I still have several problems with the app. Shows me the same error when rails can't find ...
Erica McDevitt replied
Solved
How can I use summernote editor in rails?
1
Rails
I am making a notebook app and wanted to implement the summernote text editor, the docs for summernote-rails are nearly 3 years old, and I could not find any other proper guides to implement it. An...
Briton Otieno replied
Autocomplete search across multiple models with results from each model
1
Rails
I'm building a simple wiki app and would like to introduce autocomplete search using Searchkick or pg_search. In the search box I'd like to be able to do a search across both an `Article` and `Cat...
Colin Ambler replied