Class: RBS::Collection::Config
- Inherits:
-
Object
- Object
- RBS::Collection::Config
show all
- Defined in:
- lib/rbs/collection/config.rb,
lib/rbs/collection/config/lockfile.rb,
lib/rbs/collection/config/lockfile_generator.rb
Overview
This class represent the configuration file.
Defined Under Namespace
Classes: CollectionNotAvailable, Lockfile, LockfileGenerator
Constant Summary
collapse
- PATH =
Pathname('rbs_collection.yaml')
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(data, config_path:) ⇒ Config
Returns a new instance of Config.
49
50
51
52
|
# File 'lib/rbs/collection/config.rb', line 49
def initialize(data, config_path:)
@data = data
@config_path = config_path
end
|
Instance Attribute Details
#config_path ⇒ Object
Returns the value of attribute config_path.
19
20
21
|
# File 'lib/rbs/collection/config.rb', line 19
def config_path
@config_path
end
|
#data ⇒ Object
Returns the value of attribute data.
19
20
21
|
# File 'lib/rbs/collection/config.rb', line 19
def data
@data
end
|
Class Method Details
.find_config_path ⇒ Object
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/rbs/collection/config.rb', line 21
def self.find_config_path
current = Pathname.pwd
loop do
config_path = current.join(PATH)
return config_path if config_path.exist?
current = current.join('..')
return nil if current.root?
end
end
|
.from_path(path) ⇒ Object
41
42
43
|
# File 'lib/rbs/collection/config.rb', line 41
def self.from_path(path)
new(YAML.load(path.read), config_path: path)
end
|
.generate_lockfile(config_path:, definition:, with_lockfile: true) ⇒ Object
Generate a rbs lockfile from Gemfile.lock to ‘config_path`. If `with_lockfile` is true, it respects existing rbs lockfile.
34
35
36
37
38
39
|
# File 'lib/rbs/collection/config.rb', line 34
def self.generate_lockfile(config_path:, definition:, with_lockfile: true)
config = from_path(config_path)
lockfile = LockfileGenerator.generate(config: config, definition: definition, with_lockfile: with_lockfile)
[config, lockfile]
end
|
.to_lockfile_path(config_path) ⇒ Object
45
46
47
|
# File 'lib/rbs/collection/config.rb', line 45
def self.to_lockfile_path(config_path)
config_path.sub_ext('.lock' + config_path.extname)
end
|
Instance Method Details
#gem(gem_name) ⇒ Object
54
55
56
|
# File 'lib/rbs/collection/config.rb', line 54
def gem(gem_name)
gems.find { |gem| gem['name'] == gem_name }
end
|
#gems ⇒ Object
74
75
76
|
# File 'lib/rbs/collection/config.rb', line 74
def gems
@data['gems'] ||= []
end
|
#repo_path ⇒ Object
58
59
60
|
# File 'lib/rbs/collection/config.rb', line 58
def repo_path
@config_path.dirname.join repo_path_data
end
|
#repo_path_data ⇒ Object
62
63
64
|
# File 'lib/rbs/collection/config.rb', line 62
def repo_path_data
Pathname(@data["path"])
end
|