Sha256: 7ef2102251eac14cbd63b90db5e2abd0b472f5f13d9d6da24f6f14ff9ff2b342

Contents?: true

Size: 1.57 KB

Versions: 4

Compression:

Stored size: 1.57 KB

Contents

module Context
  module RubyDeployerHelper
    def ruby_build(context)
      git_build(context)
      Dir.chdir context.context_folder
      puts "Working in folder #{Dir.pwd}\nAnd context #{context.context_name} is created"
      check_folder get_context_folder(context, 'build')
    end

    def ruby_release(context)
      Dir.chdir context.context_folder
      # gem ["push #{context.context_name}-#{GVB.version}.gem"]
      rake ['release']
    end

    def ruby_install(context)
      Dir.chdir context.context_folder
      gem ['install', context.context_name]
    end

    def clean_folder(context, folder)
      clean_folder = get_context_folder(context, folder)
      puts "Clean folder #{clean_folder}"
      FileUtils.remove_dir(clean_folder) if Dir.exist?(clean_folder)
    end

    def ruby_clean(context)
      clean_folder(context, 'pkg')
    end

    def ruby_remove_gem(context)
      clean_folder(context, 'pkg')
    end

    def ruby_check_if_available_public(context)
      puts "Waiting a minute before installing"
      sleep(60)
    end

    def ruby_cycle(context)
      context.clean
      context.build
      context.commit
      context.patch_bump
      context.release
      context.wait_until_release_available
      context.install
      if context.test_context_successful?
        puts "newer version installed successfully for #{context_name} and version #{GVB.version}"
        context.patch_bump
        # patch_reset(context)
      else
        puts "newer version not installed for #{context_name} and version #{GVB.version}"
        exit 1
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
deploy-context-0.11.28 lib/deploy-context/deploy/ruby.rb
deploy-context-0.11.27 lib/deploy-context/deploy/ruby.rb
deploy-context-0.11.26 lib/deploy-context/deploy/ruby.rb
deploy-context-0.11.25 lib/deploy-context/deploy/ruby.rb