Sha256: 7534665649ed2a9825f541b54cdccab0854880c10574563aabe83cccdc72b418

Contents?: true

Size: 713 Bytes

Versions: 11

Compression:

Stored size: 713 Bytes

Contents

require 'rubygems'
require 'irb/completion'
require 'irb/ext/save-history'
require 'awesome_print'
AwesomePrint.irb!

ARGV.concat [ "--readline",
              "--prompt-mode",
              "simple" ]

# 50 entries in the list
IRB.conf[:SAVE_HISTORY] = 50

# Store results in home directory with specified file name
IRB.conf[:HISTORY_FILE] = ".irb-history"

require 'calabash-android/operations'
include Calabash::Android::Operations

def embed(*args)
  puts "Embed is a Cucumber method and is not available in this console."
end



#Virker det her?
module Calabash
  module Android
    module Operations
      class Cucumber
        def self.wants_to_quit
          false
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
testautoa-0.4.0.pre19 irbrc
testautoa-0.4.0.pre18 irbrc
testautoa-0.4.0.pre16 irbrc
calabash-android-0.4.0.pre17 irbrc
calabash-android-0.4.0.pre16 irbrc
calabash-android-0.4.0.pre15 irbrc
calabash-android-0.4.0.pre11 irbrc
calabash-android-0.4.0.pre10 irbrc
calabash-android-0.4.0.pre9 irbrc
calabash-android-0.4.0.pre8 irbrc
calabash-android-0.4.0.pre7 irbrc