Sha256: 2173ca553b6e7627badc182d237cc4b4797d4f1d36db5c6fb424433bc9ef2415

Contents?: true

Size: 1.38 KB

Versions: 7

Compression:

Stored size: 1.38 KB

Contents

require 'travis/tools/assets'
require 'travis/cli'
require 'fileutils'
require 'erb'

module Travis
  module Tools
    module Completion
      RCS = ['.zshrc', '.bashrc'].map { |f| File.expand_path(f, ENV['HOME']) }
      include FileUtils
      extend self

      def config_path
        ENV.fetch('TRAVIS_CONFIG_PATH') { File.expand_path('.travis', ENV['HOME']) }
      end

      def cmp_file
        File.expand_path('travis.sh', config_path)
      end

      def install_completion
        mkdir_p(config_path)
        cp(Assets['travis.sh'], cmp_file)
        source = "source " << cmp_file

        RCS.each do |file|
          next unless File.exist? file and File.writable? file
          next if File.read(file).include? source
          File.open(file, "a") { |f| f.puts("", "# added by travis gem", "[ -f #{cmp_file} ] && #{source}") }
        end
      end

      def completion_installed?
        source = "source " << config_path
        RCS.each do |file|
          next unless File.exist? file and File.writable? file
          return false unless File.read(file).include? source
        end
        true
      end

      def compile
        commands = Travis::CLI.commands.sort_by { |c| c.command_name }
        template = Assets.read('travis.sh.erb')
        source   = ERB.new(template).result(binding).gsub(/^ +\n/, '')
        File.write(Assets['travis.sh'], source)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
travis-1.6.1.travis.363.4 lib/travis/tools/completion.rb
travis-1.6.0 lib/travis/tools/completion.rb
travis-1.5.9.travis.362.4 lib/travis/tools/completion.rb
travis-1.5.9.travis.361.4 lib/travis/tools/completion.rb
travis-1.5.9.travis.360.4 lib/travis/tools/completion.rb
travis-1.5.9.travis.358.4 lib/travis/tools/completion.rb
travis-1.5.8 lib/travis/tools/completion.rb