mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
7 lines
233 B
Ruby
7 lines
233 B
Ruby
require 'rubygems'
|
|
require 'yaml'
|
|
YAML::ENGINE.yamler = 'syck'
|
|
# Set up gems listed in the Gemfile.
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
|
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|