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/grpc' 19require_relative 'grpc/logconfig' 20require_relative 'grpc/notifier' 21require_relative 'grpc/version' 22require_relative 'grpc/core/time_consts' 23require_relative 'grpc/generic/active_call' 24require_relative 'grpc/generic/client_stub' 25require_relative 'grpc/generic/service' 26require_relative 'grpc/generic/rpc_server' 27require_relative 'grpc/generic/interceptors' 28 29begin 30 file = File.open(ssl_roots_path) 31 roots = file.read 32 GRPC::Core::ChannelCredentials.set_default_roots_pem roots 33ensure 34 file.close 35end 36