irbrc in calabash-android-0.5.7 vs irbrc in calabash-android-0.5.8.pre1
- old
+ new
@@ -33,25 +33,24 @@
# 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
+ def embed(*args)
+ puts "Embed is a Cucumber method and is not available in this console."
end
end
end
-end
\ No newline at end of file
+end
+
+module Cucumber
+ class << self
+ wants_to_quit = false
+ end
+end
+
+extend Calabash::Android::Operations
+