aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/settings.rb
blob: dffdfd86c7ce2aaff5a50021d72c3b16fdd99905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module Bundler
  class Settings
    def initialize(root)
      @root   = root
      @config = File.exist?(config_file) ? YAML.load_file(config_file) : {}
    end

    def [](key)
      key = "BUNDLE_#{key.to_s.upcase}"
      @config[key] || ENV[key]
    end

    def []=(key, value)
      key = "BUNDLE_#{key.to_s.upcase}"
      unless @config[key] == value
        @config[key] = value
        FileUtils.mkdir_p(config_file.dirname)
        File.open(config_file, 'w') do |f|
          f.puts @config.to_yaml
        end
      end
      value
    end

    def without=(array)
      unless array.empty? && without.empty?
        self[:without] = array.join(":")
      end
    end

    def without
      self[:without] ? self[:without].split(":").map { |w| w.to_sym } : []
    end

  private

    def config_file
      Pathname.new("#{@root}/.bundle/config")
    end
  end
end