Installs Jetbrains Products with chef. Currently supports Linux
ark
cookbook
Include this recipe in a wrapper cookbook:
depends 'jetbrains', '~> 1.0'
and then do something like this (names are case sensitive)
# PhpStorm
jetbrains_product 'PhpStorm' do
version '9.0.2'
end
# RubyMine
jetbrains_product 'RubyMine' do
version '7.1.4'
end
# IntelliJ IDEA Ultimate
jetbrains_product 'ideaIU' do
version '14.1.4'
end
# IntelliJ IDEA Community
jetbrains_product 'ideaIC' do
version '14.1.4'
end
# Pycharm Professional
jetbrains_product 'pycharm-professional' do
version '4.5.4'
end
# Pycharm Community
jetbrains_product 'pycharm-community' do
version '4.5.4'
end
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write your change
- Write tests for your change (if applicable)
- Run the tests with
kitchen test
, ensuring they all pass - Submit a Pull Request using Github
Author:: Eddie Hurtig ([email protected])