Class: RuboCop::RemoteConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/remote_config.rb

Overview

Common methods and behaviors for dealing with remote config files.

Constant Summary collapse

CACHE_LIFETIME =
24 * 60 * 60

Instance Method Summary collapse

Constructor Details

#initialize(url, base_dir) ⇒ RemoteConfig

Returns a new instance of RemoteConfig.



11
12
13
14
# File 'lib/rubocop/remote_config.rb', line 11

def initialize(url, base_dir)
  @uri = URI.parse(url)
  @base_dir = base_dir
end

Instance Method Details

#fileObject



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/rubocop/remote_config.rb', line 16

def file
  return cache_path unless cache_path_expired?

  request do |response|
    open cache_path, 'w' do |io|
      io.write response.body
    end
  end

  cache_path
end