Sha256: 29e176528465d3a3194995c8f0c9f97728fda2921d37723cfd544415931fbcf4

Contents?: true

Size: 561 Bytes

Versions: 13

Compression:

Stored size: 561 Bytes

Contents

require_relative 'base_helpers'
require_relative 'command_helpers'
require_relative 'file_helpers'

module AcceptanceTests
  module GemHelpers
    include BaseHelpers
    include CommandHelpers
    include FileHelpers

    def add_gem(gem, *args)
      bundle.add_gem(gem, *args)
    end

    def install_gems
      bundle.install_gems
    end

    def updating_bundle(&block)
      bundle.updating(&block)
    end

    def bundle_version_of(gem)
      bundle.version_of(gem)
    end

    def bundle_includes?(gem)
      bundle.includes?(gem)
    end
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
shoulda-matchers-3.1.3 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-4.0.0.rc1 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-3.6.0 test/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.1.2 spec/support/acceptance/helpers/gem_helpers.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/shoulda-matchers-2.8.0/spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.1.1 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.1.0 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.0.1 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.0.0 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-3.0.0.rc1 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-2.8.0 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-2.8.0.rc2 spec/support/acceptance/helpers/gem_helpers.rb
shoulda-matchers-2.8.0.rc1 spec/support/acceptance/helpers/gem_helpers.rb