Sha256: 9f958b9c3ac360b4d46874b32e846476129a4eadcdbd35d79e2862fe42b1ac94

Contents?: true

Size: 748 Bytes

Versions: 10

Compression:

Stored size: 748 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/defaults'
require 'calabash-android/operations'
extend 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

10 entries across 10 versions & 1 rubygems

Version Path
calabash-android-0.5.6.pre4 irbrc
calabash-android-0.5.6.pre3 irbrc
calabash-android-0.5.6.pre2 irbrc
calabash-android-0.5.6.pre1 irbrc
calabash-android-0.5.5 irbrc
calabash-android-0.5.5.pre3 irbrc
calabash-android-0.5.5.pre2 irbrc
calabash-android-0.5.5.pre1 irbrc
calabash-android-0.5.4 irbrc
calabash-android-0.5.3 irbrc