Class: Dev::EndOfLife::Ruby

Inherits:
Object show all
Defined in:
lib/firespring_dev_commands/eol/ruby.rb

Overview

Class which checks for eol packges referenced by the ruby package manager

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ruby = Dev::Ruby.new) ⇒ Ruby

Returns a new instance of Ruby.



7
8
9
10
# File 'lib/firespring_dev_commands/eol/ruby.rb', line 7

def initialize(ruby = Dev::Ruby.new)
  @ruby = ruby
  @lockfile = File.join(ruby.local_path, "#{ruby.package_file.reverse.split('.')[-1].reverse}.lock")
end

Instance Attribute Details

#lockfileObject (readonly)

Returns the value of attribute lockfile.



5
6
7
# File 'lib/firespring_dev_commands/eol/ruby.rb', line 5

def lockfile
  @lockfile
end

#rubyObject (readonly)

Returns the value of attribute ruby.



5
6
7
# File 'lib/firespring_dev_commands/eol/ruby.rb', line 5

def ruby
  @ruby
end

Instance Method Details

#default_productsObject

Default to Rubygems products



13
14
15
# File 'lib/firespring_dev_commands/eol/ruby.rb', line 13

def default_products
  rubygems_products
end

#rubygems_productsObject

1.) Parse the rubygems lock file 2.) Do some package name and version manipulation 3.) Return the product if it looks like something that the EOL library tracks



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/firespring_dev_commands/eol/ruby.rb', line 20

def rubygems_products
  eol = Dev::EndOfLife.new
  major_version_only_products = []

  [].tap do |ary|
    packages = Bundler::LockfileParser.new(Bundler.read_file(lockfile)).specs
    packages.each do |package|
      name = package.name
      product = name

      # Make sure what we found is supported by the EOL library
      next unless eol.product?(product)

      version = package.version.to_s.reverse.split('.')[-2..].join('.').reverse.tr('v', '')
      version = version.split('.').first if major_version_only_products.include?(product)
      version.chop! if version.end_with?('.00')
      ary << Dev::EndOfLife::ProductVersion.new(product, version, name)
    end
  end
end