├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_model-errors_details.gemspec ├── lib └── active_model │ ├── errors_details.rb │ └── errors_details │ └── version.rb └── test ├── minitest_helper.rb ├── test_ar_association.rb └── test_errors_details.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/Rakefile -------------------------------------------------------------------------------- /active_model-errors_details.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/active_model-errors_details.gemspec -------------------------------------------------------------------------------- /lib/active_model/errors_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/lib/active_model/errors_details.rb -------------------------------------------------------------------------------- /lib/active_model/errors_details/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/lib/active_model/errors_details/version.rb -------------------------------------------------------------------------------- /test/minitest_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/test/minitest_helper.rb -------------------------------------------------------------------------------- /test/test_ar_association.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/test/test_ar_association.rb -------------------------------------------------------------------------------- /test/test_errors_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowbell/active_model-errors_details/HEAD/test/test_errors_details.rb --------------------------------------------------------------------------------