Sha256: 5d52567e4cb09ec7eb657a5a77dc109a5e01399b05f9e55c9e6650bdf014a3d4

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

module Soaring
  class Initializer
    def initialize(options)
      @options = options
    end

    def initialize_project
      Dir.chdir(@options[:project_root]) do
        get_soar_sc_template
        create_symlink_to_public_folder
      end
    end

    def get_soar_sc_template
      Dir.mktmpdir { |dir|
        temporary_folder = dir
        temporary_soar_sc_folder = "#{temporary_folder}/soar_sc"
        `git --git-dir=/dev/null clone --quiet --progress --branch #{@options[:soar_sc_refspec]} --depth=1 git@gitlab.host-h.net:hetznerZA/soar_sc.git #{temporary_soar_sc_folder}`

        `yes | cp -rf #{temporary_soar_sc_folder}/config #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/docker #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/lib #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/spec #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/smaak #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/config.ru #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/Gemfile #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/.ruby-gemset #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/.ruby-version #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/.gitignore #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/.ebextensions #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/jewels #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/features #{@options[:project_root]}`
        `yes | cp -rf #{temporary_soar_sc_folder}/Rakefile #{@options[:project_root]}`
      }
    end

    def create_symlink_to_public_folder
      File.symlink("lib/web/public", "public") if not File.symlink?("public")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soaring-0.1.20 lib/soaring/initializer.rb