├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── action_controller-stashed_redirects.gemspec ├── bin ├── console ├── setup └── test ├── lib └── action_controller │ ├── stashed_redirects.rb │ └── stashed_redirects │ └── version.rb └── test ├── action_controller └── stashed_redirects_test.rb ├── boot └── action_controller.rb └── test_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "bundler/gem_tasks" 4 | -------------------------------------------------------------------------------- /action_controller-stashed_redirects.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/action_controller-stashed_redirects.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/bin/test -------------------------------------------------------------------------------- /lib/action_controller/stashed_redirects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/lib/action_controller/stashed_redirects.rb -------------------------------------------------------------------------------- /lib/action_controller/stashed_redirects/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/lib/action_controller/stashed_redirects/version.rb -------------------------------------------------------------------------------- /test/action_controller/stashed_redirects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/test/action_controller/stashed_redirects_test.rb -------------------------------------------------------------------------------- /test/boot/action_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/test/boot/action_controller.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaspth/action_controller-stashed_redirects/HEAD/test/test_helper.rb --------------------------------------------------------------------------------