├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .gitpod.yml ├── .haml-lint.yml ├── .prettierrc ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── assets ├── javascripts │ ├── application.js │ ├── search.js │ ├── search_arrows.js │ └── two_column_layout.js └── stylesheets │ ├── _anchorjs.scss │ ├── _blog.scss │ ├── _bootstrap-class-overrides.scss │ ├── _bootstrap-variable-overrides.scss │ ├── _docs.scss │ ├── _footer.scss │ ├── _guide.scss │ ├── _navbar.scss │ ├── _opacity.scss │ ├── _search.scss │ ├── _sidebar.scss │ ├── _team.scss │ ├── application.css.scss │ ├── code.css │ └── fonts │ └── SancoaleSlabNormRegular.otf ├── bin ├── middleman └── rake ├── config.rb ├── data └── known_plugins.yml ├── deploy_key.enc ├── helpers ├── avatar_helper.rb ├── canonical_helper.rb ├── command_reference_helper.rb ├── config_helper.rb ├── docs_helper.rb └── guides_helper.rb ├── lib ├── config │ └── utils.rb ├── tasks │ ├── contributors.rake │ ├── man_generator │ │ ├── man.rake │ │ └── strip_pages.rake │ ├── regenerate_known_plugins_yml.rake │ ├── vendor_files.rake │ └── versions.rake ├── templates │ └── whats_new.html.md.erb └── versions.rb ├── locales ├── en.yml ├── es.yml └── pl.yml ├── package.json ├── source ├── .well-known │ └── security.txt ├── 404.html.haml ├── blog │ ├── 2013-10-12-goodbye-bundler-14-hello-bundler-15.html.markdown │ ├── 2013-12-07-the-rumors-of-bundlers-death-have-been-greatly-exaggerated.html.markdown │ ├── 2014-07-16-bundler-api-outages.html.markdown │ ├── 2014-08-14-bundler-may-install-gems-from-a-different-source-than-expected-cve-2013-0334.html.markdown │ ├── 2014-08-15-gem-not-found-error-on-1-7-0.html.markdown │ ├── 2015-03-19-announcing-ruby-together.html.markdown │ ├── 2015-03-20-moving-bins-to-exe.html.markdown │ ├── 2015-03-21-hello-bundler-19.html.markdown │ ├── 2015-06-24-version-1-10-released.html.markdown │ ├── 2015-12-12-version-1-11-released.html.markdown │ ├── 2016-04-28-the-new-index-format-fastly-and-bundler-1-12.html.md │ ├── 2016-07-10-bundler-1-13-and-redesigned-bundler-io.html.markdown │ ├── 2016-09-08-bundler-1-13.html.md │ ├── 2017-03-28-bundler-1-14-so-many-fixes.html.markdown │ ├── 2017-05-19-bundler-1-15-bundle-oh-so-fast.html.markdown │ ├── 2017-10-31-bundler-1-16.html.markdown │ ├── 2018-01-08-monthly-update-for-december-and-yearly-update-for-2017.html.markdown │ ├── 2018-01-17-making-gem-development-a-little-better.html.markdown │ ├── 2018-03-09-february-bundler-update.html.markdown │ ├── 2018-04-09-march-bundler-update.html.markdown │ ├── 2018-05-07-april-bundler-monthly-update.html.markdown │ ├── 2018-06-07-may-bundler-update.html.markdown │ ├── 2018-07-12-june-bundler-update.html.markdown │ ├── 2018-08-10-july-bundler-update.html.markdown │ ├── 2018-09-10-august-bundler-update.html.markdown │ ├── 2018-10-15-september-monthly-update.html.markdown │ ├── 2018-10-25-announcing-bundler-1-17-0.html.markdown │ ├── 2018-11-04-an-update-on-bundler-2.html.markdown │ ├── 2018-11-05-october-monthly-update.html.markdown │ ├── 2018-12-08-november-monthly-update.html.markdown │ ├── 2019-01-03-announcing-bundler-2.html.markdown │ ├── 2019-01-04-an-update-on-the-bundler-2-release.html.markdown │ ├── 2019-02-02-december-monthly-update.html.markdown │ ├── 2019-03-12-january-february-bimonthly-update.html.markdown │ ├── 2019-05-14-solutions-for-cant-find-gem-bundler-with-executable-bundle.html.markdown │ ├── 2020-04-27-march-monthly-update.html.markdown │ ├── 2020-12-09-bundler-v2-2.html.markdown │ ├── 2021-02-15-a-more-secure-bundler-we-fixed-our-source-priorities.html.markdown │ ├── 2022-01-23-bundler-v2-3.html.markdown │ ├── 2023-01-31-bundler-v2-4.html.markdown │ ├── 2023-01-31-rust-gem-skeleton.html.markdown │ ├── 2024-12-19-bundler-v2-6.html.markdown │ ├── 2025-07-17-bundler-v2-7.html.markdown │ ├── feed.xml.builder │ └── index.html.haml ├── compatibility.html.haml ├── conduct.html.md ├── contributors.html.haml ├── guides │ ├── bundler_2_upgrade.html.md │ ├── bundler_docker_guide.html.md │ ├── bundler_in_a_single_file_ruby_script.html.md │ ├── bundler_plugins.html.md │ ├── bundler_setup.html.md │ ├── bundler_sharing.html.md │ ├── bundler_workflow.html.md │ ├── deploying.html.md │ ├── faq.html.md │ ├── gemfile.html.md │ ├── gemfile_ruby.html.md │ ├── getting_started.html.md │ ├── git.html.md │ ├── git_bisect.html.md │ ├── groups.html.md │ ├── plugins.html.haml │ ├── rails.html.md │ ├── rationale.html.md │ ├── rubygems.html.md │ ├── rubygems_tls_ssl_troubleshooting_guide.html.md │ ├── rubymotion.html.md │ ├── sinatra.html.md │ └── updating_gems.html.md ├── images │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── blog_header_transparent_bg.png │ ├── blog_header_transparent_bg@2x.png │ ├── blog_header_transparent_bg@3x.png │ ├── browserconfig.xml │ ├── bundler-logo.png │ ├── bundler-logo@2x.png │ ├── bundler-logo@3x.png │ ├── docs_header_transparent_bg.png │ ├── docs_header_transparent_bg@2x.png │ ├── docs_header_transparent_bg@3x.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── flags.png │ ├── header_transparent_bg.png │ ├── header_transparent_bg@2x.png │ ├── header_transparent_bg@3x.png │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ ├── team │ │ ├── colby-swandale.jpg │ │ ├── deivid-rodriguez.jpg │ │ ├── greysteil.jpg │ │ ├── hsbt.jpg │ │ ├── indirect.jpg │ │ ├── kruczjak.jpg │ │ ├── rubymorillo.jpg │ │ ├── sailorhg.jpg │ │ ├── segiddins.jpg │ │ └── tnir.jpg │ ├── team_header_transparent_bg.png │ ├── team_header_transparent_bg@2x.png │ └── team_header_transparent_bg@3x.png ├── layouts │ ├── _favicon.haml │ ├── _footer.haml │ ├── _navbar.haml │ ├── base.haml │ ├── blog_layout.haml │ └── two_column_layout.haml ├── localizable │ ├── about.en.html.md │ ├── guides │ │ ├── bundler_setup.es.html.md │ │ ├── bundler_sharing.es.html.md │ │ ├── creating_gem.en.html.md │ │ ├── creating_gem.pl.html.md │ │ ├── using_bundler_in_applications.en.html.md │ │ └── using_bundler_in_applications.pl.html.md │ └── index.html.haml ├── man │ ├── bundle-add.1.html.erb │ ├── bundle-binstubs.1.html.erb │ ├── bundle-cache.1.html.erb │ ├── bundle-check.1.html.erb │ ├── bundle-clean.1.html.erb │ ├── bundle-config.1.html.erb │ ├── bundle-console.1.html.erb │ ├── bundle-doctor.1.html.erb │ ├── bundle-env.1.html.erb │ ├── bundle-exec.1.html.erb │ ├── bundle-fund.1.html.erb │ ├── bundle-gem.1.html.erb │ ├── bundle-help.1.html.erb │ ├── bundle-info.1.html.erb │ ├── bundle-init.1.html.erb │ ├── bundle-inject.1.html.erb │ ├── bundle-install.1.html.erb │ ├── bundle-issue.1.html.erb │ ├── bundle-licenses.1.html.erb │ ├── bundle-list.1.html.erb │ ├── bundle-lock.1.html.erb │ ├── bundle-open.1.html.erb │ ├── bundle-outdated.1.html.erb │ ├── bundle-platform.1.html.erb │ ├── bundle-plugin.1.html.erb │ ├── bundle-pristine.1.html.erb │ ├── bundle-remove.1.html.erb │ ├── bundle-show.1.html.erb │ ├── bundle-update.1.html.erb │ ├── bundle-version.1.html.erb │ ├── bundle-viz.1.html.erb │ ├── bundle.1.html.erb │ └── gemfile.5.html.erb ├── manifest.json ├── partials │ ├── _blog_header.haml │ ├── _commands_sidebar.haml │ ├── _docs_header.haml │ ├── _guides_sidebar.haml │ └── _team_member.haml ├── robots.txt ├── shared │ └── _command.haml ├── sitemap.xml.builder ├── v1.12 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.md │ │ ├── bundle-help.1.html.md │ │ └── bundle-version.1.html.md │ └── whats_new.html.md ├── v1.13 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v1.14 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v1.15 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v1.16 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v1.17 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v2.0 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v2.1 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ ├── bundle-plugin.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v2.2 │ ├── docs.html.haml │ ├── man │ │ ├── bundle-console.1.html.haml │ │ ├── bundle-help.1.html.haml │ │ ├── bundle-plugin.1.html.haml │ │ └── bundle-version.1.html.haml │ └── whats_new.html.md ├── v2.3 │ ├── docs.html.haml │ └── whats_new.html.md ├── v2.4 │ ├── docs.html.haml │ └── whats_new.html.md ├── v2.5 │ ├── docs.html.haml │ └── whats_new.html.md ├── v2.6 │ ├── docs.html.haml │ └── whats_new.html.md ├── v2.7 │ ├── docs.html.haml │ └── whats_new.html.md └── whats_new.html.md └── webpack.config.js /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.4 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec middleman -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/app.json -------------------------------------------------------------------------------- /assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/javascripts/application.js -------------------------------------------------------------------------------- /assets/javascripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/javascripts/search.js -------------------------------------------------------------------------------- /assets/javascripts/search_arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/javascripts/search_arrows.js -------------------------------------------------------------------------------- /assets/javascripts/two_column_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/javascripts/two_column_layout.js -------------------------------------------------------------------------------- /assets/stylesheets/_anchorjs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_anchorjs.scss -------------------------------------------------------------------------------- /assets/stylesheets/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_blog.scss -------------------------------------------------------------------------------- /assets/stylesheets/_bootstrap-class-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_bootstrap-class-overrides.scss -------------------------------------------------------------------------------- /assets/stylesheets/_bootstrap-variable-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_bootstrap-variable-overrides.scss -------------------------------------------------------------------------------- /assets/stylesheets/_docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_docs.scss -------------------------------------------------------------------------------- /assets/stylesheets/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_footer.scss -------------------------------------------------------------------------------- /assets/stylesheets/_guide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_guide.scss -------------------------------------------------------------------------------- /assets/stylesheets/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_navbar.scss -------------------------------------------------------------------------------- /assets/stylesheets/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_opacity.scss -------------------------------------------------------------------------------- /assets/stylesheets/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_search.scss -------------------------------------------------------------------------------- /assets/stylesheets/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_sidebar.scss -------------------------------------------------------------------------------- /assets/stylesheets/_team.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/_team.scss -------------------------------------------------------------------------------- /assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /assets/stylesheets/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/code.css -------------------------------------------------------------------------------- /assets/stylesheets/fonts/SancoaleSlabNormRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/assets/stylesheets/fonts/SancoaleSlabNormRegular.otf -------------------------------------------------------------------------------- /bin/middleman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/bin/middleman -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/bin/rake -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/config.rb -------------------------------------------------------------------------------- /data/known_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/data/known_plugins.yml -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /helpers/avatar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/avatar_helper.rb -------------------------------------------------------------------------------- /helpers/canonical_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/canonical_helper.rb -------------------------------------------------------------------------------- /helpers/command_reference_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/command_reference_helper.rb -------------------------------------------------------------------------------- /helpers/config_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/config_helper.rb -------------------------------------------------------------------------------- /helpers/docs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/docs_helper.rb -------------------------------------------------------------------------------- /helpers/guides_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/helpers/guides_helper.rb -------------------------------------------------------------------------------- /lib/config/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/config/utils.rb -------------------------------------------------------------------------------- /lib/tasks/contributors.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/contributors.rake -------------------------------------------------------------------------------- /lib/tasks/man_generator/man.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/man_generator/man.rake -------------------------------------------------------------------------------- /lib/tasks/man_generator/strip_pages.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/man_generator/strip_pages.rake -------------------------------------------------------------------------------- /lib/tasks/regenerate_known_plugins_yml.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/regenerate_known_plugins_yml.rake -------------------------------------------------------------------------------- /lib/tasks/vendor_files.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/vendor_files.rake -------------------------------------------------------------------------------- /lib/tasks/versions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/tasks/versions.rake -------------------------------------------------------------------------------- /lib/templates/whats_new.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/templates/whats_new.html.md.erb -------------------------------------------------------------------------------- /lib/versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/lib/versions.rb -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/locales/en.yml -------------------------------------------------------------------------------- /locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/locales/es.yml -------------------------------------------------------------------------------- /locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/locales/pl.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/package.json -------------------------------------------------------------------------------- /source/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/.well-known/security.txt -------------------------------------------------------------------------------- /source/404.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/404.html.haml -------------------------------------------------------------------------------- /source/blog/2013-10-12-goodbye-bundler-14-hello-bundler-15.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2013-10-12-goodbye-bundler-14-hello-bundler-15.html.markdown -------------------------------------------------------------------------------- /source/blog/2013-12-07-the-rumors-of-bundlers-death-have-been-greatly-exaggerated.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2013-12-07-the-rumors-of-bundlers-death-have-been-greatly-exaggerated.html.markdown -------------------------------------------------------------------------------- /source/blog/2014-07-16-bundler-api-outages.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2014-07-16-bundler-api-outages.html.markdown -------------------------------------------------------------------------------- /source/blog/2014-08-14-bundler-may-install-gems-from-a-different-source-than-expected-cve-2013-0334.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2014-08-14-bundler-may-install-gems-from-a-different-source-than-expected-cve-2013-0334.html.markdown -------------------------------------------------------------------------------- /source/blog/2014-08-15-gem-not-found-error-on-1-7-0.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2014-08-15-gem-not-found-error-on-1-7-0.html.markdown -------------------------------------------------------------------------------- /source/blog/2015-03-19-announcing-ruby-together.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2015-03-19-announcing-ruby-together.html.markdown -------------------------------------------------------------------------------- /source/blog/2015-03-20-moving-bins-to-exe.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2015-03-20-moving-bins-to-exe.html.markdown -------------------------------------------------------------------------------- /source/blog/2015-03-21-hello-bundler-19.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2015-03-21-hello-bundler-19.html.markdown -------------------------------------------------------------------------------- /source/blog/2015-06-24-version-1-10-released.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2015-06-24-version-1-10-released.html.markdown -------------------------------------------------------------------------------- /source/blog/2015-12-12-version-1-11-released.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2015-12-12-version-1-11-released.html.markdown -------------------------------------------------------------------------------- /source/blog/2016-04-28-the-new-index-format-fastly-and-bundler-1-12.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2016-04-28-the-new-index-format-fastly-and-bundler-1-12.html.md -------------------------------------------------------------------------------- /source/blog/2016-07-10-bundler-1-13-and-redesigned-bundler-io.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2016-07-10-bundler-1-13-and-redesigned-bundler-io.html.markdown -------------------------------------------------------------------------------- /source/blog/2016-09-08-bundler-1-13.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2016-09-08-bundler-1-13.html.md -------------------------------------------------------------------------------- /source/blog/2017-03-28-bundler-1-14-so-many-fixes.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2017-03-28-bundler-1-14-so-many-fixes.html.markdown -------------------------------------------------------------------------------- /source/blog/2017-05-19-bundler-1-15-bundle-oh-so-fast.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2017-05-19-bundler-1-15-bundle-oh-so-fast.html.markdown -------------------------------------------------------------------------------- /source/blog/2017-10-31-bundler-1-16.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2017-10-31-bundler-1-16.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-01-08-monthly-update-for-december-and-yearly-update-for-2017.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-01-08-monthly-update-for-december-and-yearly-update-for-2017.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-01-17-making-gem-development-a-little-better.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-01-17-making-gem-development-a-little-better.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-03-09-february-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-03-09-february-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-04-09-march-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-04-09-march-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-05-07-april-bundler-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-05-07-april-bundler-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-06-07-may-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-06-07-may-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-07-12-june-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-07-12-june-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-08-10-july-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-08-10-july-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-09-10-august-bundler-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-09-10-august-bundler-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-10-15-september-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-10-15-september-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-10-25-announcing-bundler-1-17-0.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-10-25-announcing-bundler-1-17-0.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-11-04-an-update-on-bundler-2.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-11-04-an-update-on-bundler-2.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-11-05-october-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-11-05-october-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2018-12-08-november-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2018-12-08-november-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2019-01-03-announcing-bundler-2.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2019-01-03-announcing-bundler-2.html.markdown -------------------------------------------------------------------------------- /source/blog/2019-01-04-an-update-on-the-bundler-2-release.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2019-01-04-an-update-on-the-bundler-2-release.html.markdown -------------------------------------------------------------------------------- /source/blog/2019-02-02-december-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2019-02-02-december-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2019-03-12-january-february-bimonthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2019-03-12-january-february-bimonthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2019-05-14-solutions-for-cant-find-gem-bundler-with-executable-bundle.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2019-05-14-solutions-for-cant-find-gem-bundler-with-executable-bundle.html.markdown -------------------------------------------------------------------------------- /source/blog/2020-04-27-march-monthly-update.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2020-04-27-march-monthly-update.html.markdown -------------------------------------------------------------------------------- /source/blog/2020-12-09-bundler-v2-2.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2020-12-09-bundler-v2-2.html.markdown -------------------------------------------------------------------------------- /source/blog/2021-02-15-a-more-secure-bundler-we-fixed-our-source-priorities.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2021-02-15-a-more-secure-bundler-we-fixed-our-source-priorities.html.markdown -------------------------------------------------------------------------------- /source/blog/2022-01-23-bundler-v2-3.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2022-01-23-bundler-v2-3.html.markdown -------------------------------------------------------------------------------- /source/blog/2023-01-31-bundler-v2-4.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2023-01-31-bundler-v2-4.html.markdown -------------------------------------------------------------------------------- /source/blog/2023-01-31-rust-gem-skeleton.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2023-01-31-rust-gem-skeleton.html.markdown -------------------------------------------------------------------------------- /source/blog/2024-12-19-bundler-v2-6.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2024-12-19-bundler-v2-6.html.markdown -------------------------------------------------------------------------------- /source/blog/2025-07-17-bundler-v2-7.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/2025-07-17-bundler-v2-7.html.markdown -------------------------------------------------------------------------------- /source/blog/feed.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/feed.xml.builder -------------------------------------------------------------------------------- /source/blog/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/blog/index.html.haml -------------------------------------------------------------------------------- /source/compatibility.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/compatibility.html.haml -------------------------------------------------------------------------------- /source/conduct.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/conduct.html.md -------------------------------------------------------------------------------- /source/contributors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/contributors.html.haml -------------------------------------------------------------------------------- /source/guides/bundler_2_upgrade.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_2_upgrade.html.md -------------------------------------------------------------------------------- /source/guides/bundler_docker_guide.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_docker_guide.html.md -------------------------------------------------------------------------------- /source/guides/bundler_in_a_single_file_ruby_script.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_in_a_single_file_ruby_script.html.md -------------------------------------------------------------------------------- /source/guides/bundler_plugins.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_plugins.html.md -------------------------------------------------------------------------------- /source/guides/bundler_setup.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_setup.html.md -------------------------------------------------------------------------------- /source/guides/bundler_sharing.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_sharing.html.md -------------------------------------------------------------------------------- /source/guides/bundler_workflow.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/bundler_workflow.html.md -------------------------------------------------------------------------------- /source/guides/deploying.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/deploying.html.md -------------------------------------------------------------------------------- /source/guides/faq.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/faq.html.md -------------------------------------------------------------------------------- /source/guides/gemfile.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/gemfile.html.md -------------------------------------------------------------------------------- /source/guides/gemfile_ruby.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/gemfile_ruby.html.md -------------------------------------------------------------------------------- /source/guides/getting_started.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/getting_started.html.md -------------------------------------------------------------------------------- /source/guides/git.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/git.html.md -------------------------------------------------------------------------------- /source/guides/git_bisect.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/git_bisect.html.md -------------------------------------------------------------------------------- /source/guides/groups.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/groups.html.md -------------------------------------------------------------------------------- /source/guides/plugins.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/plugins.html.haml -------------------------------------------------------------------------------- /source/guides/rails.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/rails.html.md -------------------------------------------------------------------------------- /source/guides/rationale.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/rationale.html.md -------------------------------------------------------------------------------- /source/guides/rubygems.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/rubygems.html.md -------------------------------------------------------------------------------- /source/guides/rubygems_tls_ssl_troubleshooting_guide.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/rubygems_tls_ssl_troubleshooting_guide.html.md -------------------------------------------------------------------------------- /source/guides/rubymotion.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/rubymotion.html.md -------------------------------------------------------------------------------- /source/guides/sinatra.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/sinatra.html.md -------------------------------------------------------------------------------- /source/guides/updating_gems.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/guides/updating_gems.html.md -------------------------------------------------------------------------------- /source/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /source/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/apple-touch-icon.png -------------------------------------------------------------------------------- /source/images/blog_header_transparent_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/blog_header_transparent_bg.png -------------------------------------------------------------------------------- /source/images/blog_header_transparent_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/blog_header_transparent_bg@2x.png -------------------------------------------------------------------------------- /source/images/blog_header_transparent_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/blog_header_transparent_bg@3x.png -------------------------------------------------------------------------------- /source/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/browserconfig.xml -------------------------------------------------------------------------------- /source/images/bundler-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/bundler-logo.png -------------------------------------------------------------------------------- /source/images/bundler-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/bundler-logo@2x.png -------------------------------------------------------------------------------- /source/images/bundler-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/bundler-logo@3x.png -------------------------------------------------------------------------------- /source/images/docs_header_transparent_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/docs_header_transparent_bg.png -------------------------------------------------------------------------------- /source/images/docs_header_transparent_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/docs_header_transparent_bg@2x.png -------------------------------------------------------------------------------- /source/images/docs_header_transparent_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/docs_header_transparent_bg@3x.png -------------------------------------------------------------------------------- /source/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/favicon-16x16.png -------------------------------------------------------------------------------- /source/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/favicon-32x32.png -------------------------------------------------------------------------------- /source/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/favicon.ico -------------------------------------------------------------------------------- /source/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/flags.png -------------------------------------------------------------------------------- /source/images/header_transparent_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/header_transparent_bg.png -------------------------------------------------------------------------------- /source/images/header_transparent_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/header_transparent_bg@2x.png -------------------------------------------------------------------------------- /source/images/header_transparent_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/header_transparent_bg@3x.png -------------------------------------------------------------------------------- /source/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/mstile-150x150.png -------------------------------------------------------------------------------- /source/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /source/images/team/colby-swandale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/colby-swandale.jpg -------------------------------------------------------------------------------- /source/images/team/deivid-rodriguez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/deivid-rodriguez.jpg -------------------------------------------------------------------------------- /source/images/team/greysteil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/greysteil.jpg -------------------------------------------------------------------------------- /source/images/team/hsbt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/hsbt.jpg -------------------------------------------------------------------------------- /source/images/team/indirect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/indirect.jpg -------------------------------------------------------------------------------- /source/images/team/kruczjak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/kruczjak.jpg -------------------------------------------------------------------------------- /source/images/team/rubymorillo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/rubymorillo.jpg -------------------------------------------------------------------------------- /source/images/team/sailorhg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/sailorhg.jpg -------------------------------------------------------------------------------- /source/images/team/segiddins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/segiddins.jpg -------------------------------------------------------------------------------- /source/images/team/tnir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team/tnir.jpg -------------------------------------------------------------------------------- /source/images/team_header_transparent_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team_header_transparent_bg.png -------------------------------------------------------------------------------- /source/images/team_header_transparent_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team_header_transparent_bg@2x.png -------------------------------------------------------------------------------- /source/images/team_header_transparent_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/images/team_header_transparent_bg@3x.png -------------------------------------------------------------------------------- /source/layouts/_favicon.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/_favicon.haml -------------------------------------------------------------------------------- /source/layouts/_footer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/_footer.haml -------------------------------------------------------------------------------- /source/layouts/_navbar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/_navbar.haml -------------------------------------------------------------------------------- /source/layouts/base.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/base.haml -------------------------------------------------------------------------------- /source/layouts/blog_layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/blog_layout.haml -------------------------------------------------------------------------------- /source/layouts/two_column_layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/layouts/two_column_layout.haml -------------------------------------------------------------------------------- /source/localizable/about.en.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/about.en.html.md -------------------------------------------------------------------------------- /source/localizable/guides/bundler_setup.es.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/bundler_setup.es.html.md -------------------------------------------------------------------------------- /source/localizable/guides/bundler_sharing.es.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/bundler_sharing.es.html.md -------------------------------------------------------------------------------- /source/localizable/guides/creating_gem.en.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/creating_gem.en.html.md -------------------------------------------------------------------------------- /source/localizable/guides/creating_gem.pl.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/creating_gem.pl.html.md -------------------------------------------------------------------------------- /source/localizable/guides/using_bundler_in_applications.en.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/using_bundler_in_applications.en.html.md -------------------------------------------------------------------------------- /source/localizable/guides/using_bundler_in_applications.pl.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/guides/using_bundler_in_applications.pl.html.md -------------------------------------------------------------------------------- /source/localizable/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/localizable/index.html.haml -------------------------------------------------------------------------------- /source/man/bundle-add.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-add.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-binstubs.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-binstubs.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-cache.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-cache.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-check.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-check.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-clean.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-clean.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-config.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-config.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-console.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-console.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-doctor.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-doctor.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-env.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-env.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-exec.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-exec.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-fund.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-fund.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-gem.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-gem.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-help.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-help.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-info.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-info.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-init.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-init.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-inject.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-inject.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-install.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-install.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-issue.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-issue.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-licenses.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-licenses.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-list.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-list.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-lock.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-lock.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-open.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-open.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-outdated.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-outdated.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-platform.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-platform.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-plugin.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-plugin.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-pristine.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-pristine.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-remove.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-remove.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-show.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-show.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-update.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-update.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-version.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-version.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle-viz.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle-viz.1.html.erb -------------------------------------------------------------------------------- /source/man/bundle.1.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/bundle.1.html.erb -------------------------------------------------------------------------------- /source/man/gemfile.5.html.erb: -------------------------------------------------------------------------------- 1 | ../v2.7/man/gemfile.5.html.erb -------------------------------------------------------------------------------- /source/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/manifest.json -------------------------------------------------------------------------------- /source/partials/_blog_header.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/partials/_blog_header.haml -------------------------------------------------------------------------------- /source/partials/_commands_sidebar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/partials/_commands_sidebar.haml -------------------------------------------------------------------------------- /source/partials/_docs_header.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/partials/_docs_header.haml -------------------------------------------------------------------------------- /source/partials/_guides_sidebar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/partials/_guides_sidebar.haml -------------------------------------------------------------------------------- /source/partials/_team_member.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/partials/_team_member.haml -------------------------------------------------------------------------------- /source/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/robots.txt -------------------------------------------------------------------------------- /source/shared/_command.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/shared/_command.haml -------------------------------------------------------------------------------- /source/sitemap.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/sitemap.xml.builder -------------------------------------------------------------------------------- /source/v1.12/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.12/docs.html.haml -------------------------------------------------------------------------------- /source/v1.12/man/bundle-console.1.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.12/man/bundle-console.1.html.md -------------------------------------------------------------------------------- /source/v1.12/man/bundle-help.1.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.12/man/bundle-help.1.html.md -------------------------------------------------------------------------------- /source/v1.12/man/bundle-version.1.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.12/man/bundle-version.1.html.md -------------------------------------------------------------------------------- /source/v1.12/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.12/whats_new.html.md -------------------------------------------------------------------------------- /source/v1.13/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.13/docs.html.haml -------------------------------------------------------------------------------- /source/v1.13/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.13/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v1.13/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.13/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v1.13/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.13/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v1.13/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.13/whats_new.html.md -------------------------------------------------------------------------------- /source/v1.14/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.14/docs.html.haml -------------------------------------------------------------------------------- /source/v1.14/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.14/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v1.14/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.14/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v1.14/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.14/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v1.14/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.14/whats_new.html.md -------------------------------------------------------------------------------- /source/v1.15/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.15/docs.html.haml -------------------------------------------------------------------------------- /source/v1.15/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.15/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v1.15/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.15/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v1.15/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.15/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v1.15/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.15/whats_new.html.md -------------------------------------------------------------------------------- /source/v1.16/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.16/docs.html.haml -------------------------------------------------------------------------------- /source/v1.16/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.16/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v1.16/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.16/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v1.16/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.16/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v1.16/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.16/whats_new.html.md -------------------------------------------------------------------------------- /source/v1.17/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.17/docs.html.haml -------------------------------------------------------------------------------- /source/v1.17/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.17/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v1.17/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.17/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v1.17/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.17/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v1.17/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v1.17/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.0/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.0/docs.html.haml -------------------------------------------------------------------------------- /source/v2.0/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.0/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v2.0/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.0/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v2.0/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.0/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v2.0/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.0/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.1/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/docs.html.haml -------------------------------------------------------------------------------- /source/v2.1/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v2.1/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v2.1/man/bundle-plugin.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/man/bundle-plugin.1.html.haml -------------------------------------------------------------------------------- /source/v2.1/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v2.1/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.1/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.2/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/docs.html.haml -------------------------------------------------------------------------------- /source/v2.2/man/bundle-console.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/man/bundle-console.1.html.haml -------------------------------------------------------------------------------- /source/v2.2/man/bundle-help.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/man/bundle-help.1.html.haml -------------------------------------------------------------------------------- /source/v2.2/man/bundle-plugin.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/man/bundle-plugin.1.html.haml -------------------------------------------------------------------------------- /source/v2.2/man/bundle-version.1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/man/bundle-version.1.html.haml -------------------------------------------------------------------------------- /source/v2.2/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.2/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.3/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.3/docs.html.haml -------------------------------------------------------------------------------- /source/v2.3/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.3/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.4/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.4/docs.html.haml -------------------------------------------------------------------------------- /source/v2.4/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.4/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.5/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.5/docs.html.haml -------------------------------------------------------------------------------- /source/v2.5/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.5/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.6/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.6/docs.html.haml -------------------------------------------------------------------------------- /source/v2.6/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.6/whats_new.html.md -------------------------------------------------------------------------------- /source/v2.7/docs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.7/docs.html.haml -------------------------------------------------------------------------------- /source/v2.7/whats_new.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/source/v2.7/whats_new.html.md -------------------------------------------------------------------------------- /source/whats_new.html.md: -------------------------------------------------------------------------------- 1 | v2.7/whats_new.html.md -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubygems/bundler-site/HEAD/webpack.config.js --------------------------------------------------------------------------------