Any good idea how to import CSV via Sendgrid email attachment and update model/database columns.
2
Rails
Basically receive incoming daily emails, with CSV attachment, then importing the CSV rows to your desired model/database.
Anyone done this before?
Thanks for any input.
Solved
CMS in Rails
5
Rails
I want to learn how to build a CMS or at least a blog engine with Rails.
I think that would be awesome to have a full course on something, especially for
beginners like me.
Simple_form Chrome browser bug
4
General
This is annoying.
The select menus are overlapping in Chrome.

Has any...
How to add ssl to the CDN of AWS
1
General
Hi so I have a rails app with ssl from godadddy with a wildcard for subdomain. Now I move my assets to use CDN, but I need to use the ssl so all my subdomain use the assets with out getting CORS po...
Solved
Why after I switch controller and switch back again , the form submit button Failure?
13
General
after I switch the controller, and switch back, the form submit button Failure, if I refresh the page , it can works again.
the console and network no error log.
Solved
how do i link a comment to a specific post...
2
Rails
Can someone give me an example of POST and Comment.. i did a scaffold of a blog for example but i am not sure how to integrate the part where you can link a comment to a specific post....
COMMENT...
SimpleMDE & RedCarpet
5
Gems / Libraries
So i have set up my forum with simpleMDE and i'm using RedCarpet to parse the markdown. Everything works great except when it parses the markdown, it adds extra set of `` tags before and after my p...
How do I rollback a database migration and then update it
1
Rails
Hi
I have added a column ( t.time "usual_start_time") to an exisitng table called Areas. (create_table "areas",)
create_table "areas", force: :cascade do |t|
t.string "location", ...
Solved
IFTT
1
Gems / Libraries
Hi Go Rails Community!
Would any of you ever looked or seen a project/ tutorial on IFTT and rails app connection? I would be interested in directions in terms of going deeper? I know i have to read...
How can I subscribe a user when creating a new project?
7
Ruby
**How can I subscribe a user when creating a new project?**
I'm having a hard time on the `create` method. Currently this is my code:
### Projects controller
```ruby
def create
@project...
Solved
Does anyone have tips on setting up redis and sidekiq on a Digital Ocean ubuntu 16.04 droplet?
5
Rails
I have no trouble setting up redis but for some reason I can't get sidekiq to work. I can get sidekiq and redis to work locally on a mac using brew but not on a Digital Ocean Ubuntu 16.04 server.
...
Solved
Edit Data on same page
2
Rails
Hi there guys,
I would like that you help me found a tutorial to edit data on the same page and save to database.
link_to question
1
Rails
I'm working on a project management app that has a dashboard which links to tasks that are overdue, due today, this week, next week etc.
I can display the task titles fine but can't get the links...
Solved
Stripe gems: Koudoku or Payola
4
Rails
Has anyone used either https://github.com/andrewculver/koudoku or https://github.com/payolapayments/payola ? If yes, are you able to give any feedback regarding ease of use, ability to customise, e...
Solved
Setting Up A Third Party Theme
0
General
So I watched a video on the site on this topic but wasn't able to make any progress with my site.
I have an existing site that I wanted to refresh so I purchased a theme from themes.getbootstrap.c...
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...
Is it safe to render the creditcard in my application
0
General
I'm currently adding stripe to my application. I think stripe form doesn't look that good, therefore I would like to beautify the form.
I found this gem https://rails-assets.org/#/components/card ...
How do I get Rails Ajax to work using ujs
0
Javascript
Hello,
I am trying to user ajax on rails using the ujs library.
I am calling the new controller action,with the remote: true property, however the request is being processed as JSON instead of JS.
Sortable List with GoRails Guide
0
Ruby
Hello all,
I have a question, I finished with the sorting of the list with Chris's help. But now I want to be able to sort the list by only when I drag the item from a div/icon/text.
Can you plea...
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...