Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning committed Jul 21, 2014
1 parent cd14647 commit e3c9218
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name 'jdowning/rbenv'
version '1.2.1'
version '1.3.0'
source 'https://github.com/justindowning/puppet-rbenv'
author 'Justin Downing'
license 'Apache License, Version 2.0'
summary 'Setup rbenv ruby manager for systemwide use'
description 'Setup rbenv ruby manager for systemwide use'
project_page 'https://github.com/justindowning/puppet-rbenv'
dependency 'puppetlabs/git', '>=0.0.3'
dependency 'puppetlabs/stdlib', '>=4.1.0'
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ If you wish to install rbenv somewhere other than the default

class { 'rbenv': install_dir => '/opt/rbenv' }

You can also ensure rbenv is kept up-to-date:

class { 'rbenv':
install_dir => '/opt/rbenv'
latest => true
}

The class will merely setup rbenv on your host. If you wish to install
rubies, plugins, or gems, you will have to add those declarations to your manifests
as well.
Expand All @@ -40,6 +47,11 @@ Plugins can be installed from GitHub using the following definiton:

rbenv::plugin { 'github_user/github_repo': }

You can ensure a plugin is kept up-to-date. This is helpful for a plugin like
`ruby-build` so that definitions are always available:

rbenv::plugin { 'sstephenson/ruby-build': latest => true }

## Gems
Gems can be installed too! You *must* specify the `ruby_version` you want to
install for.
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jdowning/rbenv",
"version": "1.2.1",
"version": "1.3.0",
"source": "https://github.com/justindowning/puppet-rbenv",
"author": "Justin Downing",
"license": "Apache License, Version 2.0",
Expand Down

0 comments on commit e3c9218

Please sign in to comment.