build_config

in lib/setup.rb [13:22]


    def build_config
      url = ENV['CI_SERVER_URL']
      unless url
        puts 'Please enter the gitlab-ci coordinator URL (e.g. http://gitlab-ci.org/ )'
        url = gets.chomp
      end

      Config.new.write('url', url)
    end