I would like to develop my app between two machines, work (Windows) and home (Ubuntu). The first issue I have run into is windows needing
gem libv8
Which won't install at the moment. Further investigation has revealed that I need to install
ActivePython version 2.7.2.5
then run:
gem install libv8 --version 3.11.8.0
It seems that Ubuntu (Linux) comes with its own JavaScript runtime installed so doesn't need the Python files.
My question is that if I install the libv8 gem will it have any effect on my Ubuntu setup when I merge work done between the two platforms?
Has anyone had any issues working with two platforms on the same project?