module PointRb module Actions class ShowPointRbVersion def initialize(app) @app = app end def call(env) puts "Version: #{PointRb::VERSION}" @app.call(env) end end end end