megatron 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c29978c3775d1ef4eacebb255c21e717d30e7baf
4
- data.tar.gz: 596acec8c262a2f155bc624185727a8d221ca7c6
3
+ metadata.gz: f33013da827e8ce96af6c3986062cee63e0f38e0
4
+ data.tar.gz: eeddb40bf780a7514e6703a9787ce9e12f0cbb3a
5
5
  SHA512:
6
- metadata.gz: eb0c1505b3782bcf2b6f2cffe6c8fe4c0cfda5f4b4d13f0598c8db6df5e197eec1c99e34efedd90a17efbd9c9f0199fd6c622070ce89696aa95de47c4e2826d4
7
- data.tar.gz: 153f235601841477756ab8885f7cf4a6b53a51e750ebf66a4987bccfc37b909560d0a7b8627f914b308bd6f84582605fcdfa0ca33ea0291ba06fe2437029be0a
6
+ metadata.gz: be5baec58c8479a5d1d32c529db15bfc67c423bd9e70bc0c69f5ccf577c2f52f71b5aa2713b93fa9f035c840ba8d67d6d087aa7af52d8f2b0e3089a852c8ba9d
7
+ data.tar.gz: c6eee6067c7871b49b308e42e38061303dabb9c7c525a7a508a39d5ffd7df434b1171afa4630d30a8574ca9a621ff66b6808ed41fbbb2062a7e389ee9955ee73
@@ -1,3 +1,3 @@
1
1
  module Megatron
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: megatron
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerome Gravel-Niquet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-05 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: block_helpers
@@ -76,7 +76,6 @@ files:
76
76
  - MIT-LICENSE
77
77
  - README.rdoc
78
78
  - Rakefile
79
- - app/controllers/megatron/errors_controller.rb
80
79
  - app/helpers/megatron/application_helper.rb
81
80
  - app/helpers/megatron/breadcrumb_helper.rb
82
81
  - app/helpers/megatron/button_helper.rb
@@ -1,11 +0,0 @@
1
- class Megatron::ErrorsController < ApplicationController
2
- include Gaffe::Errors
3
- layout 'megatron/errors'
4
-
5
- # Render the correct template based on the exception “standard” code.
6
- # Eg. For a 404 error, the `errors/not_found` template will be rendered.
7
- def show
8
- # Here, the `@exception` variable contains the original raised error
9
- render "megatron/errors/#{@rescue_response}", status: @status_code
10
- end
11
- end