Sha256: ac1ac67cb9a43cb3f21f9df74b0bded9e00ff7a09418f332f897492a05c83c3a

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

require 'bundler'

module GoodData::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)
      logger_stream = STDOUT

      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_SERVER => \"#{hostname}\",
          :GDC_LOGGER_FILE => STDOUT
        }.merge(#{params})
        eval(File.read(\"./main.rb\"))
      end
script_body

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

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gooddata-0.6.0.pre9 lib/gooddata/commands/runners.rb
gooddata-0.6.0.pre8 lib/gooddata/commands/runners.rb
gooddata-0.6.0.pre7 lib/gooddata/commands/runners.rb