├── .github └── workflows │ ├── gem-push.yml │ └── test.yml ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app └── views │ ├── layouts │ └── application.html.erb │ └── restful_error │ ├── show.html.erb │ ├── show.json.ruby │ ├── show.text.erb │ └── show.xml.erb ├── config └── locales │ ├── en.restful_error.yml │ └── ja.restful_error.yml ├── lib ├── restful_error.rb └── restful_error │ ├── application_controller.rb │ ├── exceptions_app.rb │ ├── exceptions_controller.rb │ ├── inflector.rb │ ├── railtie.rb │ ├── status.rb │ └── version.rb ├── restful_error.gemspec └── spec ├── restful_error_spec.rb ├── spec_helper.rb └── with_rails └── exceptions_app_spec.rb /.github/workflows/gem-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/.github/workflows/gem-push.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/Rakefile -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/restful_error/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/app/views/restful_error/show.html.erb -------------------------------------------------------------------------------- /app/views/restful_error/show.json.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/app/views/restful_error/show.json.ruby -------------------------------------------------------------------------------- /app/views/restful_error/show.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/app/views/restful_error/show.text.erb -------------------------------------------------------------------------------- /app/views/restful_error/show.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/app/views/restful_error/show.xml.erb -------------------------------------------------------------------------------- /config/locales/en.restful_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/config/locales/en.restful_error.yml -------------------------------------------------------------------------------- /config/locales/ja.restful_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/config/locales/ja.restful_error.yml -------------------------------------------------------------------------------- /lib/restful_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error.rb -------------------------------------------------------------------------------- /lib/restful_error/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/application_controller.rb -------------------------------------------------------------------------------- /lib/restful_error/exceptions_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/exceptions_app.rb -------------------------------------------------------------------------------- /lib/restful_error/exceptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/exceptions_controller.rb -------------------------------------------------------------------------------- /lib/restful_error/inflector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/inflector.rb -------------------------------------------------------------------------------- /lib/restful_error/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/railtie.rb -------------------------------------------------------------------------------- /lib/restful_error/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/lib/restful_error/status.rb -------------------------------------------------------------------------------- /lib/restful_error/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RestfulError 4 | VERSION = "1.0.7" 5 | end 6 | -------------------------------------------------------------------------------- /restful_error.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/restful_error.gemspec -------------------------------------------------------------------------------- /spec/restful_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/spec/restful_error_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/with_rails/exceptions_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuboon/restful_error/HEAD/spec/with_rails/exceptions_app_spec.rb --------------------------------------------------------------------------------