Sha256: 2a13d6a417aacc6e17160e2dee2cf725589796988e8e06c65ae3841b2894c0f6

Contents?: true

Size: 1.58 KB

Versions: 18

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "tmpdir"
require "fileutils"

module Gapic
  ##
  # File Formatter
  class FileFormatter
    attr_reader :configuration, :files

    ##
    # Create a new file formatter object
    #
    # @param path_template [String] The URI path template to be parsed.
    def initialize configuration, files
      @configuration = configuration
      @files = format! configuration, files
    end

    protected

    def format! configuration, files
      Dir.mktmpdir do |dir|
        files.each do |file|
          write_file dir, file
        end

        system "rubocop -x #{dir} -o #{dir}/rubocop.out -c #{configuration}"

        files.each do |file|
          read_file dir, file
        end
      end
    end

    def write_file dir, file
      tmp_file = File.join dir, file.name
      FileUtils.mkdir_p File.dirname tmp_file
      File.write tmp_file, file.content
    end

    def read_file dir, file
      tmp_file = File.join dir, file.name
      file.content = File.read tmp_file
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
gapic-generator-0.6.0 lib/gapic/file_formatter.rb
gapic-generator-0.5.1 lib/gapic/file_formatter.rb
gapic-generator-0.5.0 lib/gapic/file_formatter.rb
gapic-generator-0.4.2 lib/gapic/file_formatter.rb
gapic-generator-0.4.0 lib/gapic/file_formatter.rb
gapic-generator-0.3.3 lib/gapic/file_formatter.rb
gapic-generator-0.3.1 lib/gapic/file_formatter.rb
gapic-generator-0.3.0 lib/gapic/file_formatter.rb
gapic-generator-0.2.3 lib/gapic/file_formatter.rb
gapic-generator-0.2.2 lib/gapic/file_formatter.rb
gapic-generator-0.2.0 lib/gapic/file_formatter.rb
gapic-generator-0.1.7 lib/gapic/file_formatter.rb
gapic-generator-0.1.5 lib/gapic/file_formatter.rb
gapic-generator-0.1.4 lib/gapic/file_formatter.rb
gapic-generator-0.1.3 lib/gapic/file_formatter.rb
gapic-generator-0.1.2 lib/gapic/file_formatter.rb
gapic-generator-0.1.1 lib/gapic/file_formatter.rb
gapic-generator-0.1.0 lib/gapic/file_formatter.rb