lib/te3270/emulator_factory.rb in te3270-0.8.1 vs lib/te3270/emulator_factory.rb in te3270-0.9.0
- old
+ new
@@ -1,5 +1,6 @@
+require 'te3270/emulators/bluezone'
require 'te3270/emulators/extra'
require 'te3270/emulators/quick3270'
require 'te3270/emulators/x3270'
require 'te3270/emulators/virtel'
@@ -9,10 +10,11 @@
# and the class that implements the access to the emulator.
#
module EmulatorFactory
EMULATORS = {
+ bluezone: TE3270::Emulators::BlueZone,
extra: TE3270::Emulators::Extra,
quick3270: TE3270::Emulators::Quick3270,
x3270: TE3270::Emulators::X3270,
virtel: TE3270::Emulators::Virtel
}
@@ -20,6 +22,6 @@
def self.emulator_for(platform)
EMULATORS[platform]
end
end
-end
\ No newline at end of file
+end