1# Copyright 2015 gRPC authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15ssl_roots_path = File.expand_path('../../../../etc/roots.pem', __FILE__) 16 17require_relative 'grpc/errors' 18require_relative 'grpc/structs' 19require_relative 'grpc/grpc' 20require_relative 'grpc/logconfig' 21require_relative 'grpc/notifier' 22require_relative 'grpc/version' 23require_relative 'grpc/core/status_codes' 24require_relative 'grpc/core/time_consts' 25require_relative 'grpc/generic/active_call' 26require_relative 'grpc/generic/client_stub' 27require_relative 'grpc/generic/service' 28require_relative 'grpc/generic/rpc_server' 29require_relative 'grpc/generic/interceptors' 30 31begin 32 file = File.open(ssl_roots_path) 33 roots = file.read 34 GRPC::Core::ChannelCredentials.set_default_roots_pem roots 35ensure 36 file.close 37end 38