Class: LatestInSpecVersion

Inherits:
Object
  • Object
show all
Defined in:
lib/utils/latest_version.rb

Instance Method Summary collapse

Instance Method Details

#latestObject

fetches the latest version from rubygems server



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/utils/latest_version.rb', line 9

def latest
  uri = URI('https://rubygems.org/api/v1/gems/inspec.json')
  res = Net::HTTP.start(uri.host, uri.port, use_ssl: uri.scheme == 'https',
                        open_timeout: 0.5, read_timeout: 0.5
                       ) {|http|
    http.get(uri.path)
  }
  inspec_info = JSON.parse(res.body)
  inspec_info['version']
rescue Exception # rubocop:disable Lint/RescueException
  nil
end