Sha256: e853d7bdace8160794631ee225d78d7cdde41c28a328c3f0076328c0bf2cd70c

Contents?: true

Size: 1.69 KB

Versions: 48

Compression:

Stored size: 1.69 KB

Contents

require "open-uri"
require "fileutils"
require_relative "../../common/version"
require "openssl"

module Bake
  class Doc
    def self.show
      if File.exist?(File.dirname(__FILE__)+"/../../../doc/index.html")
        link = File.expand_path(File.dirname(__FILE__)+"/../../../doc/index.html")
      else
        link = "http://esrlabs.github.io/bake"
      end

      if RUBY_PLATFORM =~ /mswin|mingw|cygwin/
        system "start #{link}"
      elsif RUBY_PLATFORM =~ /darwin/
        system "open #{link}"
      elsif RUBY_PLATFORM =~ /linux|bsd/
        system "xdg-open #{link}"
      else
        puts "Please open #{link} manually in your browser."
      end

      ExitHelper.exit(0)
    end

    def self.install

      docuSource = "https://raw.githubusercontent.com/esrlabs/bake/#{Bake::Version.number}/install-docs/"
      docuTarget = File.dirname(__FILE__)+"/../../../doc/"
      begin
        f = open(docuSource+"files.txt", {ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE})
      rescue OpenURI::HTTPError => e
        puts "Could not open #{docuSource}files.txt"
        ExitHelper.exit(0)
      end
      f.each_line do |fileName|
        fileName = fileName[2..-1].strip
        begin
          sourceFile = open(docuSource+fileName, {ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE})
        puts "[OK]     "+ docuSource+fileName
        rescue OpenURI::HTTPError => e
          puts "[FAILED] "+ docuSource+fileName
        next
        end
        FileUtils.mkdir_p(File.dirname(docuTarget+fileName))
        File.open(docuTarget+fileName, "wb") do |file|
        file.puts sourceFile.read
        end
      end
      ExitHelper.exit(0)
    end

  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
bake-toolkit-2.72.0 lib/bake/options/showDoc.rb
bake-toolkit-2.71.0 lib/bake/options/showDoc.rb
bake-toolkit-2.70.1 lib/bake/options/showDoc.rb
bake-toolkit-2.70.0 lib/bake/options/showDoc.rb
bake-toolkit-2.69.0 lib/bake/options/showDoc.rb
bake-toolkit-2.68.1 lib/bake/options/showDoc.rb
bake-toolkit-2.68.0 lib/bake/options/showDoc.rb
bake-toolkit-2.67.0 lib/bake/options/showDoc.rb
bake-toolkit-2.66.0 lib/bake/options/showDoc.rb
bake-toolkit-2.65.2 lib/bake/options/showDoc.rb
bake-toolkit-2.65.1 lib/bake/options/showDoc.rb
bake-toolkit-2.65.0 lib/bake/options/showDoc.rb
bake-toolkit-2.64.4 lib/bake/options/showDoc.rb
bake-toolkit-2.64.3 lib/bake/options/showDoc.rb
bake-toolkit-2.64.2 lib/bake/options/showDoc.rb
bake-toolkit-2.64.1 lib/bake/options/showDoc.rb
bake-toolkit-2.64.0 lib/bake/options/showDoc.rb
bake-toolkit-2.63.2 lib/bake/options/showDoc.rb
bake-toolkit-2.63.1 lib/bake/options/showDoc.rb
bake-toolkit-2.63.0 lib/bake/options/showDoc.rb