lib/app_prism.rb in app_prism-0.0.4 vs lib/app_prism.rb in app_prism-0.0.5

- old
+ new

@@ -5,19 +5,20 @@ # require_relative 'app_prism/ers' require_relative 'app_prism/sections/section_finders' require_relative 'app_prism/sections/screen_section' require_relative 'app_prism/sections/sections_collection' require_relative 'app_prism/helper_methods' - # require_relative 'app_prism/en_factory' + require_relative 'app_prism/screen_factory' DEFAULT_WAIT_TIME ||= 5 def initialize(driver) @platform = AppPrism::Platforms::AppiumPlatform.new(driver) end def self.included(cls) cls.include AppPrism::HelperMethods + cls.include AppPrism::ScreenFactory cls.extend AppPrism::Finders cls.extend AppPrism::Sections::SectionFinders end end