Web
Analytics Made Easy - StatCounter
Skip to content
Red Panthers
Experts in Ruby on Rails Development
Red Panthers
  • About
  • Process
  • Services
    • Service
      • Ruby on Rails Development Team
      • Ruby on Rails Developer Support
      • Ruby on Rails Web Application Development
    • Service
      • Ruby on Rails Training
      • React Web Development
      • React Native Mobile App Development
    • Service
      • Angular JS Web Development
      • Angular JS Ionic Mobile App Development
      • Elixir Phoenix High Concurrent Web Application Development
  • Videos
  • Blog
  • Careers
  • Newsroom
  • Contact
  • +1-860-514-8237
  • About
  • Process
  • Services
    • Service
      • Ruby on Rails Development Team
      • Ruby on Rails Developer Support
      • Ruby on Rails Web Application Development
    • Service
      • Ruby on Rails Training
      • React Web Development
      • React Native Mobile App Development
    • Service
      • Angular JS Web Development
      • Angular JS Ionic Mobile App Development
      • Elixir Phoenix High Concurrent Web Application Development
  • Videos
  • Blog
  • Careers
  • Newsroom
  • Contact
  • +1-860-514-8237

Author Archives: manu

You are here:
  1. Home
  2. Article author manu

PDF generation in rails with wicked_pdf

Rails, RubyBy manuMarch 17, 2013Leave a comment

Recently my friend was working on a project that had a requirement to export the html page to PDF. He had some issues setting this up. So I thought I would write this article, so that it will be helpful for anyone who faces the same issue. It’s easy getting your pdf in rails as…

JTK How to kill a rails server, who is working as a deamon?

Rails, RubyBy manuFebruary 25, 2013Leave a comment

$rails s , command has a -d (detach) option to let run your application run as a daemon and to stop this process you need to kill the process. Given below is a small shell command that will find the process id of our rails application and kill it for us.

1
kill $(lsof -i :3000 -t)

The meaning of…

Go to Top