Sha256: b3960eba7f07a30c94c0ba5b2991041000be9f142125e4d4daf32ac1143d618b

Contents?: true

Size: 1.38 KB

Versions: 26

Compression:

Stored size: 1.38 KB

Contents

# Copyright (C) 2005-2012  Kouhei Sutou <kou@cozmixng.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

require 'rbconfig'

module Rabbit
  module Config
    IMAGE_PATH = [
      File.join(File.dirname(__FILE__), "..", "..", "data"),
      RbConfig::CONFIG["datadir"],
    ]
    append_path_from_gem = lambda do
      return unless Object.const_defined?(:Gem)
      rabbit_gem_spec = Gem.loaded_specs["rabbit"]
      return if rabbit_gem_spec.nil?
      unless rabbit_gem_spec.respond_to?(:activated?)
        def rabbit_gem_spec.activated?
          loaded?
        end
      end
      if rabbit_gem_spec.activated?
        IMAGE_PATH.unshift(File.join(rabbit_gem_spec.full_gem_path, "data"))
      end
    end
    append_path_from_gem.call
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
rabbit-3.0.3 lib/rabbit/config.rb
rabbit-3.0.2 lib/rabbit/config.rb
rabbit-3.0.1 lib/rabbit/config.rb
rabbit-3.0.0 lib/rabbit/config.rb
rabbit-2.2.1 lib/rabbit/config.rb
rabbit-2.2.0 lib/rabbit/config.rb
rabbit-2.1.9 lib/rabbit/config.rb
rabbit-2.1.8 lib/rabbit/config.rb
rabbit-2.1.7 lib/rabbit/config.rb
rabbit-2.1.6 lib/rabbit/config.rb
rabbit-2.1.5 lib/rabbit/config.rb
rabbit-2.1.4 lib/rabbit/config.rb
rabbit-2.1.3 lib/rabbit/config.rb
rabbit-2.1.2 lib/rabbit/config.rb
rabbit-2.1.1 lib/rabbit/config.rb
rabbit-2.1.0 lib/rabbit/config.rb
rabbit-2.0.9 lib/rabbit/config.rb
rabbit-2.0.8 lib/rabbit/config.rb
rabbit-2.0.7 lib/rabbit/config.rb
rabbit-2.0.6 lib/rabbit/config.rb