contingency-rails 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fff0c26026020274f41022104aa9f2cc9c1483e6
4
+ data.tar.gz: 902797c0c9a7d26dd4f4326fb1a205a546609d5d
5
+ SHA512:
6
+ metadata.gz: d4ea67fc1aa3e952fdc495cd5435a3b0af7d9d22d1de5f944215d7913a4a3a6271aea06179cf271c8fc9ea03b134c4a068e33d2258b30edd61e09647aef4cc68
7
+ data.tar.gz: b360c673e243c5e60fddbff9ac233983aa8a3fe1439ead2ade3382c7d1e6635e5f1537058d11622ce567804f16839625f5b594946433bd2068f1476b25416036
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in contingency-rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Christopher Keele
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Contingency::Rails
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'contingency-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install contingency-rails
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'contingency/adapters/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "contingency-rails"
8
+ spec.version = Contingency::Adapters::Rails::VERSION
9
+ spec.authors = ["Christopher Keele"]
10
+ spec.email = ["dev@chriskeele.com"]
11
+ spec.description = "Integration with Rails for Contingency"
12
+ spec.summary = "Contingency-Rails implements the simple interface defined by Contingency for easy custom Rails error pages."
13
+ # spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ # spec.add_dependency "contingency", ">= 0.1.3"
22
+ spec.add_dependency "rails", "~> 3.0"
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.3"
25
+ end
@@ -0,0 +1,68 @@
1
+ module Contingency
2
+
3
+ module Adapters
4
+ module Rails
5
+ def default_configuration
6
+
7
+ config.error_layout = 'application'
8
+ config.error_template = 'errors/error'
9
+
10
+ ###
11
+ # A hash of errors mapped to status codes.
12
+ # `ActiveSupport::Rescuable#rescue_from` will catch these
13
+ # and pass them to `Contingency::ErrorHandler`.
14
+ # Ensure that your general case exception comes first in the list,
15
+ # otherwise it will catch everything. Not sure why, I think it's
16
+ # something about `ActiveSupport::Rescuable#rescue_from`.
17
+
18
+ config.errors = {
19
+ 500.to_s => [ Exception ],
20
+ 404.to_s => [
21
+ ActiveRecord::RecordNotFound,
22
+ ActionController::UnknownController,
23
+ AbstractController::ActionNotFound,
24
+ ActionController::RoutingError,
25
+ ],
26
+ }
27
+
28
+ ###
29
+ # A hash of error reports mapped to status codes.
30
+ # This should be under I18N and L10N instead of here, really.
31
+ # Takes an array of an error message and a description.
32
+ #
33
+ config.error_messages = {
34
+ 401.to_s => [
35
+ 'Unauthorized',
36
+ 'You should log in before you try that!'
37
+ ],
38
+ 403.to_s => [
39
+ 'Forbidden',
40
+ 'You don\'t have permission to do that.'
41
+ ],
42
+ 404.to_s => [
43
+ 'Not Found',
44
+ 'You may have mistyped the address or the page may have moved.'
45
+ ],
46
+ 405.to_s => [
47
+ 'Method Not Allowed',
48
+ 'You may be trying to access our API with an invalid request method.'
49
+ ],
50
+ 406.to_s => [
51
+ 'Not Acceptable',
52
+ 'You may be trying to access our API with invalid request headers.'
53
+ ],
54
+ 500.to_s => [
55
+ 'Internal Server Error',
56
+ 'It looks like something went wrong. Don\'t worry, we\'re on it!'
57
+ ],
58
+ 503.to_s => [
59
+ 'Service Unavailable',
60
+ 'We\'re down for maintainence right now.'
61
+ ],
62
+ }
63
+
64
+ end
65
+ end
66
+ end
67
+
68
+ end
@@ -0,0 +1,17 @@
1
+ module Contingency
2
+ module Adapters
3
+ module Rails
4
+ class Railtie < ::Rails::Railtie
5
+ initializer "contingency.plan" do
6
+
7
+ # Not defined at initializer runtime
8
+ # ApplicationController.send(:include, Contingency::Plan) if defined?(ApplicationController)
9
+
10
+ # Doesn't pass on our methods to ApplicationController when it subclasses ActionController::Base
11
+ # ActionController::Base.send(:include, Contingency::Plan) if defined?(ActionController::Base)
12
+
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ module Contingency
2
+ module Adapters
3
+ module Rails
4
+ VERSION = "3.0.1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,45 @@
1
+ # require 'contingency'
2
+ binding.pry
3
+
4
+ module Contingency
5
+
6
+ module Adapters
7
+ module Rails
8
+ binding.pry
9
+
10
+ extend ActiveSupport::Concern
11
+ include Interface
12
+
13
+ module ClassMethods
14
+ def catch_errors?
15
+ !::Rails.application.config.action_dispatch.show_exceptions or !::Rails.application.config.consider_all_requests_local
16
+ end
17
+ end
18
+
19
+ module InstanceMethods
20
+ def error_renderer(code)
21
+ render Contingency.configuration.error_template,
22
+ status: code,
23
+ layout: Contingency.configuration.error_layout
24
+ end
25
+
26
+ def failure_renderer(code)
27
+ render status: code, text: Contingency.configuration.failure_message
28
+ end
29
+
30
+ # Custom controller action.
31
+ # Raises traditional Rack-level Rails RoutingError at Application-level instead,
32
+ # so it `rescue_from` in Contingency's error handler can catch it instead of Rack's.
33
+ # Works in conjunction with a catchall route pointed at this controller action.
34
+ def routing_error
35
+ raise ActionController::RoutingError, "No route matches [#{env['REQUEST_METHOD']}] #{env['PATH_INFO'].inspect}"
36
+ end
37
+ end
38
+
39
+ end
40
+ end
41
+ end
42
+
43
+ require 'contingency/adapters/rails/configuration'
44
+ require 'contingency/adapters/rails/railtie'
45
+ require "contingency/adapters/rails/version"
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: contingency-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Keele
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ description: Integration with Rails for Contingency
42
+ email:
43
+ - dev@chriskeele.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - contingency-rails.gemspec
54
+ - lib/contingency/adapters/rails.rb
55
+ - lib/contingency/adapters/rails/configuration.rb
56
+ - lib/contingency/adapters/rails/railtie.rb
57
+ - lib/contingency/adapters/rails/version.rb
58
+ homepage:
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.0.0
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Contingency-Rails implements the simple interface defined by Contingency
82
+ for easy custom Rails error pages.
83
+ test_files: []
84
+ has_rdoc: