Sha256: 55597434b6f5adb589a558e2374cbf87af202fc4d6a50d686c3a770eaff981e6

Contents?: true

Size: 1.46 KB

Versions: 9

Compression:

Stored size: 1.46 KB

Contents

# encoding: UTF-8

require 'pathname'

module GoodData
  module Command
    class Runners
      def self.run_ruby_locally(brick_dir, options = {})
        pid = options[:project_id]
        fail 'You have to specify a project ID' if pid.nil?
        fail 'You have to specify directory of the brick run' if brick_dir.nil?
        fail 'You specified file as a birck run directory. You have to specify directory.' if File.exist?(brick_dir) && !File.directory?(brick_dir)

        params = options[:expanded_params] || {}

        GoodData.connection.connect!
        sst = GoodData.connection.cookies[:cookies]['GDCAuthSST']
        pwd = Pathname.new(Dir.pwd)

        server_uri = URI(options[:server]) unless options[:server].nil?
        scheme = server_uri.nil? ? '' : server_uri.scheme
        hostname = server_uri.nil? ? '' : server_uri.host

        script_body = <<-script_body
        require 'fileutils'
        FileUtils::cd(\"#{pwd + brick_dir}\") do\
          require 'bundler/setup'

          $SCRIPT_PARAMS = {
            "GDC_SST" => \"#{sst}\",
            "GDC_PROJECT_ID" => \"#{pid}\",
            "GDC_PROTOCOL" => \"#{scheme}\",
            "GDC_HOSTNAME" => \"#{hostname}\",
            "GDC_LOGGER_FILE" => STDOUT,
            "GDC_ENV_LOCAL" => true
          }.merge(#{params})
          eval(File.read(\"./main.rb\"))
        end
        script_body

        Bundler.with_clean_env do
          system('ruby', '-e', script_body)
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
gooddata-0.6.10 lib/gooddata/commands/runners.rb
gooddata-0.6.9 lib/gooddata/commands/runners.rb
gooddata-0.6.8 lib/gooddata/commands/runners.rb
gooddata-0.6.7 lib/gooddata/commands/runners.rb
gooddata-0.6.6 lib/gooddata/commands/runners.rb
gooddata-0.6.5 lib/gooddata/commands/runners.rb
gooddata-0.6.4 lib/gooddata/commands/runners.rb
gooddata-0.6.3 lib/gooddata/commands/runners.rb
gooddata-0.6.2 lib/gooddata/commands/runners.rb