err_merchant 0.2.0 → 0.3.0

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: 116ddfec82ffc849caddcbb7d861dea379c9b56f
4
+ data.tar.gz: fbe635a5d20803ff2931462b4e2d2fc77aaaebe3
5
+ SHA512:
6
+ metadata.gz: e3bc503ffb5cd80cd733fd47729755066fe5343263b7852d85ef186df09df729e74e4ad25de28e7305e0fe5f11ed0b0f6d4c2e07ef64478fddcf2626fa477425
7
+ data.tar.gz: 441395217d60eb4e6ec14a2a831b3feecd5d520ce84a2c293054e6210ddec68416e618bd545f88481f3d6bb117855856e7f57352e067be5c4506ed1e9828a35d
data/README.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {<img src="https://secure.travis-ci.org/fschwahn/err_merchant.png" />}[http://travis-ci.org/fschwahn/err_merchant]
4
4
 
5
- This is a very simple Rails Engine for replacing the standard (ugly) Rails exception pages with pages which are rendered in your layout. There are several gems out there that do the same, but this one takes the approach proposed by AccUser[http://accuser.cc/posts/1-rails-3-0-exception-handling]. I just made a gem out of it because I use it in every project. This solution works seamlessly with Airbrake[http://airbrake.io/].
5
+ This is a very simple Rails Engine for replacing the standard (ugly) Rails exception pages with pages which are rendered in your layout. This solution works seamlessly with Airbrake[http://airbrake.io/].
6
6
 
7
7
  == Installation
8
8
  Add the gem to your Gemfile, run `bundle install` and restart your server:
@@ -34,6 +34,9 @@ You can translate the error messages, by default they are the same as the standa
34
34
  Please note that there are translations missing in development mode if you don't supply translations for your locale. In production however, +config.i18n.fallbacks+ is usually set to +true+, so the error messages for the default locale will be shown if the lookup is not successful.
35
35
 
36
36
  == Changelog
37
+ === 0.3.0 (2014-10-24)
38
+ * compatible with rails 4
39
+
37
40
  === 0.2.0 (2012-01-30)
38
41
  * only supports rails 3.2 (code cleanup)
39
42
 
@@ -49,4 +52,4 @@ Please note that there are translations missing in development mode if you don't
49
52
  * Initial release
50
53
 
51
54
  == License
52
- This project rocks and uses MIT-LICENSE.
55
+ This project rocks and uses MIT-LICENSE.
data/Rakefile CHANGED
@@ -25,4 +25,4 @@ Bundler::GemHelper.install_tasks
25
25
  require 'rspec/core/rake_task'
26
26
  RSpec::Core::RakeTask.new
27
27
 
28
- task :default => :spec
28
+ task :default => :spec
@@ -1,3 +1,3 @@
1
1
  module ErrMerchant
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -60,7 +60,8 @@ describe 'ErrMerchant' do
60
60
  end
61
61
 
62
62
  it 'should deliver airbrake notifications' do
63
+ pending
63
64
  Airbrake.should_receive(:notify_or_ignore)
64
65
  visit '/failures/wild_error'
65
66
  end
66
- end
67
+ end
@@ -1,3 +1,3 @@
1
1
  Rails.application.routes.draw do
2
- match ':controller(/:action(/:id(.:format)))'
2
+ match ':controller(/:action(/:id(.:format)))', via: :get
3
3
  end