Sha256: e1ea21047abb9266e4721024d3c789425eef8afc6fb73322bd1018d610253604
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# Set up rvm private gemset require 'rvm' puts "Setting up RVM gemset and installing bundled gems (may take a while) ... ".magenta # Need to strip colors in case rvm_pretty_print_flag is enabled in user's .rvmrc rvm_list = `rvm list`.gsub(Regexp.new("\e\\[.?.?.?m"), '') current_ruby = rvm_list.match(/=.? ([^ ]+)/)[1] desired_ruby = current_ruby.gsub(/\-p\d+/, "") @env = RVM::Environment.new(desired_ruby) gemset_name = @app_name puts "Creating gemset #{gemset_name} in #{desired_ruby}" @env.gemset_create(gemset_name) puts "Now using gemset #{gemset_name}" @env.gemset_use!(gemset_name) rvm_current = `rvm current`.match(/[\w\d.-]+@[\w\d\.-]+/)[0].strip.split('@').last if rvm_current != gemset_name puts "Error using gemset #{gemset_name}:".red puts "#{rvm_current} does not match the gemset #{gemset_name}".yellow exit end # Since the gemset is likely empty, manually install bundler so it can install the rest run "gem install bundler --no-ri --no-rdoc" # Install all other gems needed from Gemfile run "bundle install" copy_static_file '.rvmrc' gsub_file '.rvmrc', /PROJECT/, gemset_name gsub_file '.rvmrc', /RUBYVERSION/, desired_ruby git :add => '.rvmrc' git :commit => "-qm 'Adding .rvmrc.'" git :add => 'Gemfile.lock' git :commit => "-qm 'Adding Gemfile.lock.'" puts "\n"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pah-0.0.6 | lib/pah/partials/_rvm.rb |
pah-0.0.5 | lib/pah/partials/_rvm.rb |