Sha256: b591c75c299c6ce9d3cca40463101af1b8557a9680f35d31c135cc8122337164
Contents?: true
Size: 810 Bytes
Versions: 15
Compression:
Stored size: 810 Bytes
Contents
begin require "rubygems" require "bundler" rescue LoadError raise "Could not load the bundler gem. Install it with `gem install bundler`." end unless Gem::Version.new(Bundler::VERSION) > Gem::Version.new("0.9.20") raise RuntimeError, "Your bundler version is too old. Run `gem install bundler` to upgrade." end begin # Set up load paths for all bundled gems ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__) Bundler.setup if File.exist?(non_gem_refinery_file = File.expand_path("../../vendor/plugins/refinery/lib/refinery.rb", __FILE__)) require non_gem_refinery_file.to_s else require 'refinery_initializer' end rescue Bundler::GemNotFound raise RuntimeError, "Bundler couldn't find some gems. Did you run `bundle install`?\nMessage was: #{$!.message}" end
Version data entries
15 entries across 15 versions & 1 rubygems