Sha256: 8f8157622cf2e05ecf33735ca72a373a6ad049ea14696956a39a8a846e4e28f9

Contents?: true

Size: 1.16 KB

Versions: 16

Compression:

Stored size: 1.16 KB

Contents

test_name 'Install and configure Ruby 2.2.5 on the SUT' do

  step 'Ensure that the default system is an el-based system' do
    # The pre-suite currently only supports el systems, and we should
    #fail early if the default platform is not a supported platform
    assert(default.platform.variant == 'el',
           "Expected the platform variant to be 'el', not #{default.platform.variant}")
  end

  step 'clean out current ruby and its dependencies' do
    on default, 'yum remove ruby ruby-devel -y'
  end

  # These steps install git, openssl, and wget
  step 'install development dependencies' do
    on default, 'yum groupinstall "Development Tools" -y'
    on default, 'yum install openssl-devel -y'
    on default, 'yum install wget -y'
  end

  step 'download and install ruby 2.2.5' do
    on default, 'wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.5.tar.gz'
    on default, 'tar xvfz ruby-2.2.5.tar.gz'
    on default, 'cd ruby-2.2.5;./configure'
    on default, 'cd ruby-2.2.5;make'
    on default, 'cd ruby-2.2.5;make install'
  end

  step 'update gem on the SUT and install bundler' do
    on default, 'gem update --system;gem install --force bundler'
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
beaker-4.6.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.5.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.4.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.3.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.2.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.1.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.0.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.37.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.36.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.35.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.34.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.33.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.32.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.31.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.30.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-3.29.0 acceptance/pre_suite/subcommands/05_install_ruby.rb