Sha256: 06da4c92fadb2c523d1ac028f0bb2b66819bbc0731d6330c04f0b19ae1bfdfc7

Contents?: true

Size: 1.2 KB

Versions: 13

Compression:

Stored size: 1.2 KB

Contents

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.  The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License.  You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
# License for the specific language governing permissions and limitations
# under the License.

unless "".respond_to? :camelize
  class String
    def camelize
      split('_').map { |w| w.capitalize }.join
    end
  end
end

unless Kernel.respond_to?(:require_relative)
  module Kernel
    def require_relative(path)
      require File.join(File.dirname(caller[0]), path.to_str)
    end
  end
end

class << Sinatra::Base
  def options(path, opts={}, &bk)
    route 'OPTIONS', path, opts, &bk
  end
end

require_relative './rabbit/base'

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
sinatra-rabbit-1.1.6 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.5 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.4 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.3 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.2 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.1 lib/sinatra/rabbit.rb
sinatra-rabbit-1.1.0 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.11 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.10 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.9 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.8 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.7 lib/sinatra/rabbit.rb
sinatra-rabbit-1.0.6 lib/sinatra/rabbit.rb