Babun: the new Cygwin for Ruby, Rails, Sinatra and Node.js
Now you can easily develop Rails apps on MS Windows like unix
It’s hard to setup POSIX compatible environment on MS windows PC for your coding setup, here is the way I found feasible, on Windows 7 64 bit with Babun 1.2.0-dist, updated on Sep 27 2015.
##Installation steps:
-
Download Babun distribution from Babun official site by hitting the big
[Download Now](http://projects.reficio.org/babun/download)
button on the top of the landing page and extract it. -
Enter MS Windows command line mode (a.k.a cmd) and go to the extracted folder to start. I recommend to install it under the top folder of a drive to avoid hitting the max path length of the MS Windows file system. Remember, the slash of MS Windows and Unix are different.
Babun system will finish the installation within a few minutes, and bring you its default terminal under zsh. One of my favorite things is X-window style mouse copying/pasting, in Babun the mouse selected text in the terminal is immediately copied, you can then paste by mouse right-clicking.
Quick and short steps for starters
If you don’t have time and need Ruby and Node.js now (especially for phase 0 DBC students), just execute the following commands to have Ruby 2.0, Rails 4.0, the latest Sinatra and Node 0.4.12. It’s enough to cover the entire DBC phase 0~2. Under Babun terminal, please enter the following three lines of commands:
(Note: Some gems, such as Puma or Turbolinks are not compatible with these settings as of now. Solution will be provided if there’s a working one.)
As of Sep 2015, Rails 4.2.4 and Ruby 2.2.2 should be installed flawlessly by the commands described above. If you unfortunately got some errors about nokogiri error, or you want more updated version of Rails (>4.2.4), or need Heroku tool belt later (say, phase 3), here is what to do:
Next let’s setup node.js. Please download the latest installer for windows at node official site (v4.1.1 for win64 as the example here), install it. Close and relaunch Babun shell, node REPL console should be available by the following commend.
That’s it! enjoy your free, full-functional POSIX environment under MS windows without deleting any of your files or repartitioning your drive, in minutes. ___
Installation of rbenv and Ruby 2.2
rbenv is a fantastic Ruby version manager, but its installation, with building plugins, requires several steps. To make it simpler, a super great tool, getrbenv installer, was developed. However its current master might need a subtle update to fit zsh used in Babun. Here is my workaround to install rbenv with ruby-build and rbenv-update plugin painlessly. Let’s first start without Ruby version assigned. (The following command is ONE line)
Success? Please close Babun shell and restart Babun to get the path works. Now how do you install newer version of Ruby? For Ruby 2.2.3, just need to type:
You can also install older Ruby 2.1.7 or 1.9.3 by rbenv install 2.1.7
or rbenv install 1.9.3-p551
. How about 2.0.0-p647? Currently there is a naming bug in some versions of Ruby under ext/-test- folder and may stop the compilation in installation. Thus I made a patch based on dmattes’s suggestion to prevent the compilation stopping you at printf.c. The patch won’t hurt ruby’s function since it’s in test folder.
Compile your own Node.js (NOT recommended)
The windows native binaries by node.js installer should be good for use. However here is some other non-required adventure for those likes experimenting. The last version of Node.js with official support for Cygwin was 0.4.12, according to Lukasz P and Joyent’s suggestion. If you enjoy waiting for compile, here is how to compile and install the old faithful Node.js 0.4.12.
How about newer version? Well, bnoordhuis’s patch works for v0.5.8. I applied the patch and attach here for you to download/install. I have not found ways to compile newer versions.
Some tips for PostgreSQL service under Babun / Cygwin
PostgreSQL service is slow but still works under Babun if you follow the following steps to start the service. Basically these are just the steps described in /usr/share/doc/Cygwin/postgresql.README, and you may want to include /usr/sbin in the path.
You may now use psql to check your PostgreSQL service. In case you want to stop the PostgreSQL service someday:
And you may also want to remove the data (/usr/share/postgresql/data) when the PostgreSQL service no longer needed. Please be noted that by such method, even cygserver running is persistent in windows, the closing and restarting of Babun shell will terminate postgresql service so you may need to manually restart it every time.