Is there any gem to transform pdf files to html?
            
            2
          Ruby
        
          i need to convert a pdf file to html or some way to edit an existing pdf
        
      How to count comments like reddit (infinite nested model) ?
            
            2
          Ruby
        
          Hey Chris,
I have an `item` model which gets submitted. With
`has_many :comments, as: :commentable, dependent: :destroy`
then in the `comment` model I have
`belongs_to :commentable, polymorphic...
        
      Solved
      Best way to relate models on Jumpstart Pro
            
            1
          Ruby
        
          Whats the best way to relate models? Im building a real estate app with Jumpstart Pro and would like to add property owners (contact/users) to the a property, so on the show page of a property I ca...
        
      
            
            Oliver Sawtell replied 
          
      Devise Masquerade + Multitenant with act_as_tenant
            
            1
          Ruby
        
          I am running a multitenant app with users and administrators scoped to their own account / domain (act_as_tenant).
My use case is the following : I have a superAdmin model who has access to a supe...
        
      while installing iam getting error
            
            4
          Ruby
        
          
Failure!  build file wasn't produced.
Please read INSTALL.md and associated NOTES-* files.  You may also have to
look over your available compiler tool chain or change your configuration.
ERROR!
...
        
      
            
            lemongrassfancy replied 
          
      how can i pass mailer_name into a method using noticed gem
            
            0
          Ruby
        
           us = User.first
    email = EmailDetail.find_by_name("Welcome User Email")
    UserNotification.with(email_class: "UserMailer" , email: email.function_name).deliver(us)
i am trying to pass maile...
        
      
            
            zunaira ihsan posted 
          
      MongoDb Integration
            
            0
          Ruby
        
          It would be great if you can make video on MongoDB use in rails and make application like url-shortener with it
        
      How to do a time comparison in Ruby
            
            0
          Ruby
        How to install rails cms template?
            
            0
          Ruby
        
          I am using ruby2.5.1 and rails 5.0.6 now.
I am going to install camaleon_cms on my project.
How to install it? Please help me....
        
      How do I learn to write dry code?
            
            1
          Ruby
        
          I've been learning RoR for a year now and have a basic functioning site that people actually use, but my code is not even close to dry... it's probably wetter than the Amazon! Once you have the bas...
        
      How can compound csv file datas in ruby on rails oop
            
            0
          Ruby
        
          https://stackoverflow.com/questions/68876726/how-can-compound-csv-file-datas-in-ruby-on-rails-oop
        
      
            
            Alper Efe Şahin posted 
          
      Using the rails app to send SMS
            
            1
          Ruby
        
          Using Ruby on Rails, I am developing a medication reminder system that will be deployed on Heroku.
A doctor can enter a patient's medication information, including the medication name, dosage, and...
        
      
            
            Jamesacc56 replied 
          
      "Logged in as" message not appearing in Rails for beginners part 15
            
            0
          Ruby
        
          Hello,
In the "Rails for Beginners" part 15 video, I can't manage to get the "Logged in as" message to print out on the page.. I tried everything I knew, and it seems that a few other people are ha...
        
      
            
            fabrice1236 posted 
          
      Safely running custom User Ruby code (e.g. Shopify Scripts)
            
            2
          Ruby
        
          Hello everyone! Nervous first-time poster here, and of course, my apologies if there's already a video / thread that covers this.
An advanced topic I'd love to see covered on GoRails (or hear any ...
        
      
            
            Keegan Bakker replied 
          
      What is a good platform to hire Ruby developers from?
            
            1
          Ruby
        
          I want to hire a remote developer to help me with my project. Does anyone knows a platform or job board to hire developers from?
        
      
            
            Optymize replied 
          
      Modified Cyclomatic Complexity
            
            1
          Ruby
        
          Do you know of a tool that does modified cyclomatic complexity analysis of Ruby code? Lizard does not do it correctly for Ruby, and I could not find a modified option on Rubocop.
        
      Solved
      Seeking guidance from above!
            
            1
          Ruby
        
          Hi there, I'm new to ruby and seeking help from better/experienced peers for guidance.
I'm facing an issue with executing in creatings an array for the scenario of train data.
My current skeleton f...
        
      
            
            Tai PAUL replied 
          
      How do I pass local variables to iteration in turbo_stream?
            
            0
          Ruby
        
          In my app I have projects which have many tasks. The tasks are iterated through on the projects show page:
```
### Project#show 
 <% @tasks.each do |task| %>
    
       
         <%= f...
        
      
            
            Gabriel posted