Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Chef Cookbooks
mailcatcher
Commits
740095c8
Commit
740095c8
authored
Apr 26, 2015
by
Stefan Galinski
🎮
Browse files
[TASK] Don't update ruby as Ruby 2.x is already enforced by the current chef version
parent
3c3aeddf
Changes
1
Hide whitespace changes
Inline
Side-by-side
recipes/default.rb
View file @
740095c8
...
...
@@ -36,20 +36,20 @@ end
### Update Ruby ###
###################
apt_repository
(
'ruby-ng'
)
do
uri
'http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu'
deb_src
true
trusted
true
keyserver
'keyserver.ubuntu.com'
key
'C3173AA6'
distribution
'trusty'
components
[
:main
]
arch
'amd64,i386'
action
:add
end
package
'ruby2.2'
,
{
:action
=>
:upgrade
}
package
'ruby2.2-dev'
,
{
:action
=>
:upgrade
}
#
apt_repository('ruby-ng') do
#
uri 'http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu'
#
deb_src true
#
trusted true
#
keyserver 'keyserver.ubuntu.com'
#
key 'C3173AA6'
#
distribution 'trusty'
#
components [:main]
#
arch 'amd64,i386'
#
action :add
#
end
#
#
package 'ruby2.2', {:action => :upgrade}
#
package 'ruby2.2-dev', {:action => :upgrade}
###########################
### Install mailcatcher ###
...
...
Stefan Galinski
🎮
@sgalinski
mentioned in commit
d02449e1
·
Apr 26, 2015
mentioned in commit
d02449e1
mentioned in commit d02449e131bba158ebbcfd7bbbe41b35d52fc790
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment