Sha256: 880d5f4437093d4e7f6d73bbb6385c1a0c5d72b1e5255d4b3889aa0377925904

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

module Shipit
  class DeploySpec
    module BundlerDiscovery
      DEFAULT_BUNDLER_WITHOUT = %w(default production development test staging benchmark debug).freeze

      def discover_dependencies_steps
        discover_bundler || super
      end

      def discover_bundler
        bundle_install if bundler?
      end

      def bundle_exec(command)
        return command unless bundler?
        "bundle exec #{command}"
      end

      def bundle_install
        bundle = %(bundle check --path=#{bundle_path} || bundle install #{frozen_flag} --path=#{bundle_path} --retry=2)
        bundle += " --without=#{bundler_without.join(':')}" unless bundler_without.empty?
        [remove_ruby_version_from_gemfile, bundle]
      end

      def remove_ruby_version_from_gemfile
        # Heroku apps often specify a ruby version.
        if /darwin/ =~ RUBY_PLATFORM
          # OSX is nitpicky about the -i.
          %q(/usr/bin/sed -i '' '/^ruby\s/d' Gemfile)
        else
          %q(sed -i '/^ruby\s/d' Gemfile)
        end
      end

      def frozen_flag
        return unless gemfile_lock_exists?
        return if config('dependencies', 'bundler', 'frozen') == false
        '--frozen'
      end

      def bundler_without
        config('dependencies', 'bundler', 'without') || (gem? ? [] : DEFAULT_BUNDLER_WITHOUT)
      end

      def bundler?
        file('Gemfile').exist?
      end

      def gemfile_lock_exists?
        file('Gemfile.lock').exist?
      end

      def coerce_task_definition(config)
        return super unless bundler?
        config['steps'] ||= []
        config['steps'] = config['steps'].map(&method(:bundle_exec))
        config
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
shipit-engine-0.13.0 app/models/shipit/deploy_spec/bundler_discovery.rb
shipit-engine-0.12.1 app/models/shipit/deploy_spec/bundler_discovery.rb
shipit-engine-0.12.0 app/models/shipit/deploy_spec/bundler_discovery.rb
shipit-engine-0.11.0 app/models/shipit/deploy_spec/bundler_discovery.rb