Sha256: c80ea0327f78e785f26053be12181b8d280e79dd08d53c8394a78933f2badd2b
Contents?: true
Size: 671 Bytes
Versions: 10
Compression:
Stored size: 671 Bytes
Contents
require 'rubygems' require 'irb/completion' require 'irb/ext/save-history' 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
10 entries across 10 versions & 2 rubygems