├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── bundler-as_of.gemspec ├── lib └── bundler │ ├── as_of.rb │ └── as_of │ └── version.rb ├── plugins.rb └── test ├── bundler └── as_of_test.rb └── test_helper.rb /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/bin/setup -------------------------------------------------------------------------------- /bundler-as_of.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/bundler-as_of.gemspec -------------------------------------------------------------------------------- /lib/bundler/as_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/lib/bundler/as_of.rb -------------------------------------------------------------------------------- /lib/bundler/as_of/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/lib/bundler/as_of/version.rb -------------------------------------------------------------------------------- /plugins.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "bundler/as_of" 4 | -------------------------------------------------------------------------------- /test/bundler/as_of_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/test/bundler/as_of_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavorjones/bundler-as_of/HEAD/test/test_helper.rb --------------------------------------------------------------------------------