Hi,
I'm not sure if this is the right place to post this issue, but I'm looking for a way in my Rails app to reorder items by drag and dropping.
I tried to implement the solution by Ryan Bate...
Hi All
I had some difficulty following this https://gorails.com/episodes/user-authentication-with-devise - screencast when it came to Bootstrapping devise.
Chris' looked like a bit of extra e...
Related to my previous thread (https://gorails.com/forum/structure-guidance-multi-tenancy-authentication-authorization) I plan to have authorization with Devise and some sort of role based system (...
I followed line by line in [this tutorial](https://gorails.com/deploy/ubuntu/14.04)to setup my own production server.
After Nginx is installed and up and running, I followed the instruction to m...
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',...
I am literally following the Setup and Deploy tutorials line for line. I have my local dummy rails app up and running and I am trying to run my first deploy to DigitalOcean. Here is the error I a...
I followed the [tutorial](https://gorails.com/deploy/ubuntu/14.04) on this site and deploy my rail app on the newly setup ubuntu server.
the rails app is successfully run on heroku, so it must s...
Hi Chris,
I watched all of the videos in the Forum Series -- nice work!. I'm wondering if you're still planning on getting around to showing us how to implement support for Markdown within the ...
I have a form that uses java script and the data-attribute to do some calculations (Calx2).
to make the data-attributes unique i use the the index method that is available.
```ruby
f...
Trying to determine which way I should handle this.
Normal User adds a post to our system, he then has the ability to update and delete this post. In the future he may assign other users the abi...
I just watched your screencast on using Devise for user authentication and learned quite a bit. However, I not only want to create a web app but I'd also like to provide a JSON API as another way ...
Hi,
I installed the working_hours gem to calculate SLA hours on my ticketsystem. It all works on dev so i was ready to deploy it to the production machine with capistrano
now i get the follow...
Hi Chris im doing the episode 'liking posts' i have difficult to do with deep nested resource,
my actual nested resources looks:
A. Routes:
```ruby
resources :users do
resources :...
How can I write the below operation, being handled by _group_by_ Ruby method, in terms of DB specific query?
```ruby
def list_users
@search_by_options = [:age, :location, :department, :d...
I know there is a huge range on how much rails app would cost, Just ballparking, how much would it cost to develop a web app with subscription services for access to video content and email with d...
I am not sure what the consensus is on the best approach to handling nested model forms is.
The solution in https://gorails.com/episodes/forum-nested-attributes-and-fields-for can work, but doesn...
Hi . Can you help me ? When i start : cap deploy production, i have errors:
1. rake stdout: Nothing written
2. rake stderr: syck has been removed, psych is used instead
How can i resolve them?
I need to store different metrics about various companies. These will be present for every company:
* revenue
* ebitda
* cash
* receivables
* employees
* debt
each one has attribute...
Hello! Can yoy help me? I have Ruby 2.1.3 and Rails 4.1.7. I use gem ( https://github.com/spohlenz/tinymce-rails ) and I do everything as it says, but i when paste this code: in my _form, i have e...
My favorite combination of Rails/HTTP is Nginx + Passenger. They work wonderfully together and it's been super easy to setup across all of my apps. One thing I've noticed in some of my apps that ...