Tom Connolly
Tom Connolly
addisonmartin: I believe you mean "extract_css," not "extra_css." However, I still get the error: SassError: File to import not found or unreadable: rails_bootstrap_forms. 08:55:17 webpacker.1 | on line 3 of...
Here is what finally worked for me: I cleared the buildpacks after learning they were not in the correct order. Here are docs from Heroku: Verify that your buildpacks are...
I patched the attachinary gem dependencies so it could be used with Rails 5; you could use that. I'm not bright enough to do a pull request that would update...
Yes, that's the one. Can you make it a pull request so it becomes the norm?
Thanks, glikely, for the work you put into this plugin. I wish I could help, but I'm not a coder.
I use a birthday helper to strip out the year for sorting purposes module BirthdaysHelper def birthdays_this_week Member.find_birthdays_for(Date.today.beginning_of_week, Date.today.end_of_week).order(:birthday.strftime ('%m%d')) end end then in the view: ,