-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgem_script.rb
60 lines (46 loc) · 1.03 KB
/
gem_script.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
51
52
53
54
55
56
57
58
59
60
def find(file, partten, arr=[])
if arr.empty?
file.scan(partten)
else
arr.map do | gem |
file.match eval(partten)
end
end
end
def access_file(path, text='')
response = false
begin
unless text.length > 0
file = File.open(path)
response = file.read
else
response = File.write(path, text)
end
rescue
puts "Falha ao acessar path: #{path}"
exit
ensure
file.close if file
puts
end
return response
end
def main
path = ARGV[0]
gemfile = path
gemlock = "#{path}.lock"
gemfile = access_file(gemfile)
gems = find(gemfile, /(?<=gem ['"])\S+(?=["']\s*$)/)
lockfile = access_file(gemlock)
locks = find(lockfile, '/(?<gem>\b#{gem}\b) \(=* *(?<version>\d.*)\)/', gems)
puts "Gems a serem travadas:\n#{locks}"
locks.map do | lgem |
unless lgem.nil?
gemfile = gemfile.gsub(/(?<=gem ['"]#{lgem[:gem]})['"]$/, '\0, ' + "'#{lgem[:version]}'")
end
end
puts gemfile
access_file(path, gemfile)
puts 'Gemfile atualizado com sucesso!'
end
main