-
Notifications
You must be signed in to change notification settings - Fork 278
/
Copy pathgemset.rb
50 lines (39 loc) · 974 Bytes
/
gemset.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# RVM gemset support
Puppet::Type.type(:rvm_gemset).provide(:gemset) do
desc "RVM gemset support."
commands :rvmcmd => Facter.value(:rvm_binary)
def ruby_version
resource[:ruby_version]
end
def gemset_name
resource[:name]
end
def gemsetcommand
[command(:rvmcmd), ruby_version, "exec", "rvm", "gemset"]
end
def gemsetcommand_force
[command(:rvmcmd), ruby_version, "exec", "rvm", "--force", "gemset"]
end
def gemset_list
command = gemsetcommand + ['list']
list = []
begin
list = execute(command).split("\n").collect do |line|
line.strip if line =~ /^\s+\S+/
end.compact
rescue Puppet::ExecutionFailure => detail
end
list
end
def create
command = gemsetcommand + ['create', gemset_name]
execute(command)
end
def destroy
command = gemsetcommand_force + ['delete', gemset_name]
execute(command)
end
def exists?
gemset_list.include? gemset_name
end
end