├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── LICENSE.txt ├── Makefile ├── README.md ├── Rakefile ├── lib ├── rescue_unique_constraint.rb └── rescue_unique_constraint │ ├── adapter │ ├── mysql_adapter.rb │ ├── postgresql_adapter.rb │ └── sqlite_adapter.rb │ ├── index.rb │ ├── rescue_handler.rb │ └── version.rb ├── rescue_unique_constraint.gemspec └── spec └── rescue_unique_constraint_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | AllCops: 2 | TargetRubyVersion: 2.1 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.3 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rescue_unique_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/adapter/mysql_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint/adapter/mysql_adapter.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/adapter/postgresql_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint/adapter/postgresql_adapter.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/adapter/sqlite_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint/adapter/sqlite_adapter.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint/index.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/rescue_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/lib/rescue_unique_constraint/rescue_handler.rb -------------------------------------------------------------------------------- /lib/rescue_unique_constraint/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RescueUniqueConstraint 4 | VERSION = "1.10.0" 5 | end 6 | -------------------------------------------------------------------------------- /rescue_unique_constraint.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/rescue_unique_constraint.gemspec -------------------------------------------------------------------------------- /spec/rescue_unique_constraint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reverbdotcom/rescue-unique-constraint/HEAD/spec/rescue_unique_constraint_spec.rb --------------------------------------------------------------------------------