Module: NextRails::BundleReport
Defined Under Namespace
Classes: RubyVersionCompatibility
Instance Method Summary
collapse
-
#build_json(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
-
#compatibility(rails_version: nil, ruby_version: nil, include_rails_gems: nil) ⇒ Object
-
#compatible_ruby_version(rails_version) ⇒ Object
-
#erb_output(incompatible_gems_by_state, incompatible_gems, rails_version) ⇒ Object
-
#gem_header(_gem) ⇒ Object
-
#outdated(format = nil) ⇒ Object
-
#output_to_json(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
-
#output_to_stdout(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
Instance Method Details
#build_json(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
# File 'lib/next_rails/bundle_report.rb', line 132
def build_json(out_of_date_gems, total_gem_count, sourced_from_git_count)
output = Hash.new { [] }
out_of_date_gems.each do |gem|
output[:outdated_gems] += [
{
name: gem.name,
installed_version: gem.version,
installed_age: gem.age,
latest_version: gem.latest_version.version,
latest_age: gem.latest_version.age
}
]
end
output.merge(
{
sourced_from_git_count: sourced_from_git_count,
total_gem_count: total_gem_count
}
)
end
|
#compatibility(rails_version: nil, ruby_version: nil, include_rails_gems: nil) ⇒ Object
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/next_rails/bundle_report.rb', line 11
def compatibility(rails_version: nil, ruby_version: nil, include_rails_gems: nil)
return puts RubyVersionCompatibility.new(options: { ruby_version: ruby_version }).generate if ruby_version
incompatible_gems = NextRails::GemInfo.all.reject do |gem|
gem.compatible_with_rails?(rails_version: rails_version) || (!include_rails_gems && gem.from_rails?)
end.sort_by { |gem| gem.name }
incompatible_gems.each { |gem| gem.find_latest_compatible(rails_version: rails_version) }
incompatible_gems_by_state = incompatible_gems.group_by { |gem| gem.state(rails_version) }
puts erb_output(incompatible_gems_by_state, incompatible_gems, rails_version)
end
|
#compatible_ruby_version(rails_version) ⇒ Object
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# File 'lib/next_rails/bundle_report.rb', line 76
def compatible_ruby_version(rails_version)
uri = URI('https://rubygems.org/api/v1/versions/rails.json')
res = Net::HTTP.get_response(uri)
all_versions_res = JSON.parse(res.body)
all_versions = []
all_versions_res.each { |rv| all_versions << rv['number'] }
rv = rails_version[:rails_version]
matched_versions = all_versions.select { |h| h.start_with?(rv) }
exact_version = matched_versions.include?(rv) ? rv : matched_versions[0]
if exact_version
uri = URI("https://rubygems.org/api/v2/rubygems/rails/versions/#{exact_version}.json")
res = Net::HTTP.get_response(uri)
ruby_version = JSON.parse(res.body)["ruby_version"]
else
ruby_version = nil
end
if ruby_version
puts "The required ruby version is #{ruby_version} for matched rails version #{exact_version}"
ruby_version
else
puts "Could not find a compatible ruby version"
end
end
|
#erb_output(incompatible_gems_by_state, incompatible_gems, rails_version) ⇒ Object
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
61
62
63
64
65
66
67
68
|
# File 'lib/next_rails/bundle_report.rb', line 25
def erb_output(incompatible_gems_by_state, incompatible_gems, rails_version)
template = <<-ERB
<% if incompatible_gems_by_state[:found_compatible] -%>
<%= Rainbow("=> Incompatible with Rails #{rails_version} (with new versions that are compatible):").white.bold %>
<%= Rainbow("These gems will need to be upgraded before upgrading to Rails #{rails_version}.").italic %>
<% incompatible_gems_by_state[:found_compatible].each do |gem| -%>
<%= gem_header(gem) %> - upgrade to <%= gem.latest_compatible_version.version %>
<% end -%>
<% end -%>
<% if incompatible_gems_by_state[:incompatible] -%>
<%= Rainbow("=> Incompatible with Rails #{rails_version} (with no new compatible versions):").white.bold %>
<%= Rainbow("These gems will need to be removed or replaced before upgrading to Rails #{rails_version}.").italic %>
<% incompatible_gems_by_state[:incompatible].each do |gem| -%>
<%= gem_header(gem) %> - new version, <%= gem.latest_version.version %>, is not compatible with Rails #{rails_version}
<% end -%>
<% end -%>
<% if incompatible_gems_by_state[:no_new_version] -%>
<%= Rainbow("=> Incompatible with Rails #{rails_version} (with no new versions):").white.bold %>
<%= Rainbow("These gems will need to be upgraded by us or removed before upgrading to Rails #{rails_version}.").italic %>
<%= Rainbow("This list is likely to contain internal gems, like Cuddlefish.").italic %>
<% incompatible_gems_by_state[:no_new_version].each do |gem| -%>
<%= gem_header(gem) %> - new version not found
<% end -%>
<% end -%>
<%= Rainbow(incompatible_gems.length.to_s).red %> gems incompatible with Rails <%= rails_version %>
ERB
erb_version = ERB.version
if erb_version =~ /erb.rb \[([\d\.]+) .*\]/
erb_version = $1
end
if Gem::Version.new(erb_version) < Gem::Version.new("2.2")
ERB.new(template, nil, "-").result(binding)
else
ERB.new(template, trim_mode: "-").result(binding)
end
end
|
70
71
72
73
74
|
# File 'lib/next_rails/bundle_report.rb', line 70
def (_gem)
= Rainbow("#{_gem.name} #{_gem.version}").bold
<< Rainbow(" (loaded from git)").magenta if _gem.sourced_from_git?
end
|
#outdated(format = nil) ⇒ Object
115
116
117
118
119
120
121
122
123
124
125
|
# File 'lib/next_rails/bundle_report.rb', line 115
def outdated(format = nil)
gems = NextRails::GemInfo.all
out_of_date_gems = gems.reject(&:up_to_date?).sort_by(&:created_at)
sourced_from_git = gems.select(&:sourced_from_git?)
if format == 'json'
output_to_json(out_of_date_gems, gems.count, sourced_from_git.count)
else
output_to_stdout(out_of_date_gems, gems.count, sourced_from_git.count)
end
end
|
#output_to_json(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
127
128
129
130
|
# File 'lib/next_rails/bundle_report.rb', line 127
def output_to_json(out_of_date_gems, total_gem_count, sourced_from_git_count)
obj = build_json(out_of_date_gems, total_gem_count, sourced_from_git_count)
puts JSON.pretty_generate(obj)
end
|
#output_to_stdout(out_of_date_gems, total_gem_count, sourced_from_git_count) ⇒ Object
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
# File 'lib/next_rails/bundle_report.rb', line 154
def output_to_stdout(out_of_date_gems, total_gem_count, sourced_from_git_count)
out_of_date_gems.each do |gem|
= "#{gem.name} #{gem.version}"
puts <<-MESSAGE
#{Rainbow().bold.white}: released #{gem.age} (latest version, #{gem.latest_version.version}, released #{gem.latest_version.age})
MESSAGE
end
percentage_out_of_date = ((out_of_date_gems.count / total_gem_count.to_f) * 100).round
= <<-MESSAGE
#{Rainbow(sourced_from_git_count.to_s).yellow} gems are sourced from git
#{Rainbow(out_of_date_gems.count.to_s).red} of the #{total_gem_count} gems are out-of-date (#{percentage_out_of_date}%)
MESSAGE
puts ''
puts
end
|