lib/wlang/scope.rb in wlang-2.3.1 vs lib/wlang/scope.rb in wlang-3.0.0

- old
+ new

@@ -15,11 +15,10 @@ def self.coerce(arg) case arg when Hash then ObjectScope.new(arg) when Scope then arg - when SinatraApp then SinatraScope.new(arg) when Binding then BindingScope.new(arg) when Proc then ProcScope.new(arg) else ObjectScope.new(arg) end @@ -101,6 +100,5 @@ end # module WLang require 'wlang/scope/null_scope' require 'wlang/scope/object_scope' require 'wlang/scope/binding_scope' require 'wlang/scope/proc_scope' -require 'wlang/scope/sinatra_scope'