Sha256: 576d5c633b3ada4cb8d7262772d613b543520f6d29cb0515ba95f569e33327d1

Contents?: true

Size: 1010 Bytes

Versions: 16

Compression:

Stored size: 1010 Bytes

Contents

# encoding: utf-8

module Grache
  # Bundler related stuff
  module Bundler
    # See http://bundler.io/v1.3/man/bundle-install.1.html
    # TODO: Read this programmatically from bundler gem
    REMEMBERED_OPTIONS = [
      # Bundler will update the executables every subsequent call to bundle install.
      'binstubs',

      # At runtime, this remembered setting will also result in Bundler
      # raising an exception if the Gemfile.lock is out of date.
      'deployment',

      # Subsequent calls to bundle install will install gems to the directory originally passed to --path.
      # The Bundler runtime will look for gems in that location.
      # You can revert this option by running bundle install --system.
      'path',

      # As described above, Bundler will skip the gems specified by --without in subsequent calls to bundle install.
      # The Bundler runtime will also not try to make the gems in the skipped groups available.
      'without'
    ]

    class Bundler
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
grache-0.0.12 lib/grache/bundler/bundler.rb
grache-0.0.11 lib/grache/bundler/bundler.rb
grache-0.0.10 lib/grache/bundler/bundler.rb
grache-0.0.9 lib/grache/bundler/bundler.rb
grache-0.0.8 lib/grache/bundler/bundler.rb
grache-0.0.7 lib/grache/bundler/bundler.rb
grache-0.0.6 lib/grache/bundler/bundler.rb
grache-0.0.5 lib/grache/bundler/bundler.rb
grache-0.0.4 lib/grache/bundler/bundler.rb
grache-0.0.3 lib/grache/bundler/bundler.rb
grache-0.0.2 lib/grache/bundler/bundler.rb
grache-0.0.2.pre.rc8 lib/grache/bundler/bundler.rb
grache-0.0.2.pre.rc4 lib/grache/bundler/bundler.rb
grache-0.0.2.pre.rc1 lib/grache/bundler/bundler.rb
grache-0.0.2.pre.rc0 lib/grache/bundler/bundler.rb
grache-0.0.1 lib/grache/bundler/bundler.rb