Sha256: 8280ae1a8f25c38bcdca2a1e0c5f40556e1b433bb40b233f6e68bad264862588
Contents?: true
Size: 639 Bytes
Versions: 190
Compression:
Stored size: 639 Bytes
Contents
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) # Lessens Debians need to edit. require "rubygems" rescue nil # Since Bundler is not really a 'must have' for Rails development just send off # a warning and see if the sytem continues to load, the user can optionally use # RADIANT_NOWARNINGS to disable it. if File.file?(ENV['BUNDLE_GEMFILE']) begin require 'bundler/setup' rescue LoadError unless ENV['RADIANT_NOWARNINGS'] == true $stderr.puts 'WARNING: It seems you do not have Bundler installed.' $stderr.puts 'WARNING: You can install it by doing `gem install bundler`' end end end
Version data entries
190 entries across 190 versions & 2 rubygems