epilog 0.5.0 → 0.6.0

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
  SHA256:
3
- metadata.gz: 489f54c6b2527b191f528402ea23ee3188d98705dc9c06f995176c38110e3ff9
4
- data.tar.gz: 65ec51b26a5b23cde1fd997d02d743d78ffb193df568f770b513e9b6d9010320
3
+ metadata.gz: 26a731d5297bcf87056341855af05c6c57b18fbb29115a0dcc3d00b1c2a9086e
4
+ data.tar.gz: 032c613192e81a8c4b97993b1f42c7d100272c16b1a4457f1df9a9afb54a84b6
5
5
  SHA512:
6
- metadata.gz: fc8a27b6da915720290f5e23acf02f7fc3e0afeb79608365bb09fb7d799c9d0663f5f9010472b5beb962bbe6cdbd3653239effbc390b97cd9c1ea56c2da8c8cd
7
- data.tar.gz: f2b9f9ffcfaf8fdf021bdea32ee086ae440d919501bc6a342f1dd854b9507590b0b40b70b40118918307805c8a519ed7fc70e03b6b18d0b257573126afe0224d
6
+ metadata.gz: 44373cd845a4114af0b41654265f697c0bc2ab9584342d1b5c40de4a539e1228608ac1d548bf14150c24ddaa6987c272601f402453dac1ff0356a23a65cd8bd8
7
+ data.tar.gz: e654189bc9d0431e165c0d948f234972171f16c016260ba287e05cf5f268f5802e30fedf02884d5699ff49241548eab5b3d46f7065e836988a37cace563c476e
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.0
4
+
5
+ - Add support for Rails 5 API-only controllers [#17](https://github.com/machinima/epilog/pull/17)
6
+
3
7
  ## 0.5.0
4
8
 
5
9
  - Add options to enable/disable start and end logs [#15](https://github.com/machinima/epilog/pull/15)
@@ -48,3 +48,6 @@ module Epilog
48
48
  end
49
49
 
50
50
  ActionController::Base.prepend(Epilog::ActionControllerExt)
51
+ if defined? ActionController::API
52
+ ActionController::API.prepend(Epilog::ActionControllerExt)
53
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Epilog
4
- VERSION = '0.5.0'
4
+ VERSION = '0.6.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: epilog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Howard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-13 00:00:00.000000000 Z
11
+ date: 2020-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -216,7 +216,7 @@ files:
216
216
  - ".rubocop.yml"
217
217
  - ".travis.yml"
218
218
  - ".yardopts"
219
- - CHANGLOG.md
219
+ - CHANGELOG.md
220
220
  - Gemfile
221
221
  - LICENSE.txt
222
222
  - README.md