This is a plugin for webdev-setup-tools
.
npm install webdev-setup-tools-gems --save
To automate both the installation and updates of ruby gems required by your project. Additionally, to install the maximum compatible version of each gem required by your project using semantic version ranges provided for each gem.
This plugin determines the packages to install from the "web-dev-setup-tools" field in the package.json your project root. This field typically has the following syntax:
"web-dev-setup-tools": {
"ruby": {
"install": "^2.0.0",
"gems": {
"sass":"^3.0.0",
"json":"^2.0.0",
// other gems to install ...
}
},
// other packages to install ...
}
install ruby gems
let setup_tools = require('webdev-setup-tools-gems');
setup_tools.installGems();
Due to built in Windows security features and restrictions, there are a number of additional steps that need to be taken by windows users.
Please refer to the Important Notes For Windows Users section of webdev-setup-tools
for more detailed instructions.
- 1.0.0 Initial release