Skip to main content

Install and run RVM with bundler on Windows (Drupal Omega 4 specific)

Unlike on UNIX based systems, installing and configuring RVM on a Windows machine properly in order to be able to use the new possibilities in Drupal's Omega 4 theme could become a difficult task. But running that process through the cygwin environment makes it possible.

Installing cygwin and required dependencies

Make sure you install the 32-bit version of cygwin, as otherwise you could get errors when trying to compile your ruby when installing it through rvm. So Install cygwin with following packages and their dependencies:
automake, bison, colorgcc, curl, gcc-g++, gcc-core, git, git-completion, git-gui, git-svn, gitk, libreadline7, libtool, libyaml-devel, libyaml0_2, make, mercurial, mingw64-i686-gcc-g++, nano, ncurses, openssh, openssl, openssl-devel, patch, readline, unzip, zlib, zlib-devel, sqlite3, mingw64-x86_64-gcc

Installing RVM

Open cygwin's command prompt and start the installation of RVM with the following command:
curl -L https://get.rvm.io | bash -s stable
This should download and install RVM in your in /home/user01/.rvm/ directory. So far so good. Just type
rvm -v
to ensure that RVM is installed. If you have installed ruby on your Windows machine previously - e.g. through something like Ruby Installer - I recommend to go ahead and uninstall it, as you will be managing your rubies through rvm from now on anyway.
Check that all cygwin requirements for RVM are installed:
Run
rvm requirements
If you need to install additional requirements and sends you an error listing the missing requirements then install those requirements using the cygwin setup.exe again, then run:
rvm requirements
and you should get the message:
Checking requirements for cygwin.
Requirements installation successful.
So now if you type
ruby -v
you should get something like "ruby not found", which we will change very soon.

Installing the ruby for your omega theme

Assuming, that you have a omega subtheme in your drupal installation, you can now navigate in the command line to the root of the subtheme. As soon as you are there RVM should recognize by the contents of the .ruby-version file that it needs to install a specific ruby version for that directory. In my case I get a message like
ruby-1.9.3-p448 is not installed.
To install do: 'rvm install ruby-1.9.3-p448'
So start the installation of the required version of ruby by entering
rvm install ruby-1.9.3-p448
Just press any key to continue if you're asked to install additional requirements. Then the installer should download, extract, configure, compile and install the version of ruby you specified.

Running bundler to install the necessary gems

If all went well you now have rvm and the version of ruby required by omega and you can run
bundle install
at that point, in order to install all gems for your omega theme. You will probably get an error of something like "... stack level too deep (SystemStackError)...". This is a cygwin/ruby issue and a good explanation and solution can be found here. So just run
peflags -X409600 `which ruby`
and now you can repeat
bundle install
This should download and install all gems, specified in the Gemfile file, create the Gemfile.lock just as usual.

Solve errors while running compass watch

At that point you can already run
compass watch
to have your sass files compile according to the settings in the config.rb file. The initial compilation will succeed, but you will probably get an error when you edit and the try to save a sass file of something like ("user01" is obviously my username at this cygwin installation. Yours may be different):
ArgumentError on line ["465"] of /home/user01/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/pathname.rb: different prefix:
...
Run with --trace to see the full backtrace
This is a Windows-file system/compass issue and you can find good information of what is going on here.
The file you should edit in this case is the pathname.rb, which belongs to the fssm gem which was installed specifically for your theme by bundler earlier. It is residing in the /home/user01/.rvm/gems/ruby-1.9.3-p448@omega.new_omega/gems/fssm-0.2.10/lib/fssm directory.
Edit line 26 and append the following code to it
unless path[0, 1] == File::SEPARATOR
so that the full line 26 is reading
array[0] += File::SEPARATOR if path[0, 3] =~ SEPARATOR_PAT unless path[0, 1] == File::SEPARATOR
Now you can try out
compass watch
again and it should work.

https://www.drupal.org/node/2138087

Comments

Popular posts from this blog

Shortcut key to align code in eclipse

While learning java or working with java, we may need to copy a code from other source like internet or other files. When we do that the code may looks messy like before. which is not in standard and difficult to work on complex logics. Below key is useful to align the messy code:       Ctrl + Shift + F:   Formats a selected block of code or a whole source file.  Format messy code to Java-standard code.  If a code block is not selected, Eclipse applies formatting for the whole file. #shortcut key to align code in eclipse #shortcut_key_to_align_code_in_eclipse #shortcut_key_to_format_code_in_eclipse #shortCut key to format code in eclipse #shortcut_key_to_code_ alignment_in_eclipse #Auto- Alignment Shortcut Key  in  Eclips e

The First 10 People Who Sign up On Facebook

The First 10 People Who Sign up On Facebook 10. Zach Bercu sphotos-b.xx.fbcdn.net “The past eight years have been extraordinary,” Bercu said. A graduate of Emory’s medical school, Bercu spent a year in Israel, where he became fluent in Hebrew. He completed his residency in New York, part of the last intern class at St. Vincent’s, whose “hospital infrastructure crumbled around me,” he remembered of the facility, which closed in 2010. Now a resident at Mount Sinai in radiology, Bercu plans to complete a fellowship in interventional radiology, a form of “micro-surgery.” From his undergraduate years, “whether through Facebook or in person,” Bercu says he “took with me some of the greatest friendships one could have.” 9. Manuel Antonio Aguilar publicogt.com Aguilar calls himself a social entrepreneur “focused on the base o...

10 WhatsApp Tips and Tricks Everyone Should Know

For most of us, WhatsApp has become the default go-to messenger, because everyone's on it, and it's on nearly every platform. WhatsApp has over a billion downloads on Google Play alone, the only other messenger to boast that is Facebook Messenger. The app has made itself indispensable by adding a browser version and voice calling to its platform. For those who have to deal with the app on a daily basis, we've lined up some interesting tricks and tweaks that will improve your user-experience. 1. Mute group chats and notifications Group chat notifications can get noisy, they're best turned off when you have to focus on a task at hand. On Android On a group chat, tap the Menu button, and hit Mute. Then, choose the time-frame for which you would like the group to be muted. You can also disable notifications for the specified period. This feature is now available on the web browser too. On iPhone Open Group Chat, tap the group subject to reveal the Gr...