Method: EDB::IsModuleSupported#supports?
- Defined in:
- lib/edb/is_module_supported.rb
#supports?(dbms) ⇒ Boolean
27 28 29 30 31 32 33 34 |
# File 'lib/edb/is_module_supported.rb', line 27 def supports?(dbms) begin this_module = to_module(dbms) all_modules.include?(this_module) rescue NameError false end end |