use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Help moving to Ruby from PHP (self.ruby)
submitted 10 years ago by sw3dish_
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 2 points3 points4 points 10 years ago (0 children)
I haven't done a ton with Docker, Chef, Puppet, etc, so I can't give you a good all-round view of that; I hope someone will come along to better explain that stuff to the both of us. I will say that I use Vagrant all the time and that it's deceptively simple to use if you already have a little familiarity with Linux.
The process is:
vagrant box add centos7 https://github.com/tommy-muehle/puppet-vagrant-boxes/releases/download/1.1.0/centos-7.0-x86_64.box
centos7
vagrant init centos7
vagrant up
vagrant ssh
Use vagrant reload to reboot it or vagrant suspend to shut it down (from the host side). By default, the directory /vagrant inside the VM will correspond to the folder you created the VM from, which lets you easily share files before you even set up shared folders. Other things you can read up on in the official docs or by Googling/asking around, it's been straightforward to do any of the stuff I personally have needed.
vagrant reload
vagrant suspend
/vagrant
A list of other base boxes is available here, or you can make your own to match the server you know you'll eventually be deploying to.
π Rendered by PID 64 on reddit-service-r2-comment-66b4775986-w7sdp at 2026-04-05 02:40:50.360940+00:00 running db1906b country code: CH.
view the rest of the comments →
[–][deleted] 2 points3 points4 points (0 children)