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