lib/bootboot.rb in bootboot-0.2.0 vs lib/bootboot.rb in bootboot-0.2.1
- old
+ new
@@ -6,25 +6,25 @@
module Bootboot
GEMFILE = Bundler.default_gemfile
GEMFILE_LOCK = Pathname("#{GEMFILE}.lock")
GEMFILE_NEXT_LOCK = Pathname("#{GEMFILE}_next.lock")
- autoload :GemfileNextAutoSync, 'bootboot/gemfile_next_auto_sync'
- autoload :Command, 'bootboot/command'
+ autoload :GemfileNextAutoSync, "bootboot/gemfile_next_auto_sync"
+ autoload :Command, "bootboot/command"
class << self
def env_next
- env_prefix + '_NEXT'
+ env_prefix + "_NEXT"
end
def env_previous
- env_prefix + '_PREVIOUS'
+ env_prefix + "_PREVIOUS"
end
private
def env_prefix
- Bundler.settings['bootboot_env_prefix'] || 'DEPENDENCIES'
+ Bundler.settings["bootboot_env_prefix"] || "DEPENDENCIES"
end
end
end
Bootboot::GemfileNextAutoSync.new.setup