power_api 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15df7added570c9179f92d41e2bbdac7f60a9de59c9f805e7b1fce1abfbb452a
4
- data.tar.gz: 97a4e71638625f628cf7a76049a9521c68b3abf2803e09ec48e29fe4969828ed
3
+ metadata.gz: fc92bf2a3d0be71cac08489722b002ec0cee22cc933d5b7a82e5092cefca8753
4
+ data.tar.gz: 7941733330cdbb86fa677fe1a4afd9ed58a88ce4825183719eb01ae51ede7f1b
5
5
  SHA512:
6
- metadata.gz: 39389f0a07634e631eda86f606caf71080defc871b15048acb0c2aeb8e237406e04932cce9594cd63e48cbc365b6748f281f22ac45e3dc6d01e739038a7f3883
7
- data.tar.gz: c7052f7e36848aba66e79149086a5c9a1ae1ccf1b25ac34a2964aa7cab67741d3a6f71cad79d4971d3bc62920741c2aeb6fdbc3f112dd048a7b0935cfc0275af
6
+ metadata.gz: d3045bd1e573764b26b88cb755505b4d7620314534d0d6ca1f2b1523a09d91aca08e4e7b9e3731b0f784170a10aab286935ea72cf03f837884fc06d7e5ae5a83
7
+ data.tar.gz: 7655ef8bedb8a269ba5df9313a17353b541399642b6aee13fe29bad2fe767db2e4479f3646717fc4bad060a59af492ca3f610ea6f879f91cb11c8f0ee9a30f0d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ ### v2.0.1
6
+
7
+ * Fix: trying to reference ApplicationController in wrong namespace.
4
8
  ### v2.0.0
5
9
 
6
10
  * Add API internal and exposed modes.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- power_api (2.0.0)
4
+ power_api (2.0.1)
5
5
  active_model_serializers (~> 0.10.0)
6
6
  api-pagination
7
7
  kaminari
@@ -247,15 +247,15 @@ GEM
247
247
  rspec-support (3.10.2)
248
248
  rspec_junit_formatter (0.4.1)
249
249
  rspec-core (>= 2, < 4, != 2.12.0)
250
- rswag-api (2.4.0)
251
- railties (>= 3.1, < 7.0)
250
+ rswag-api (2.5.1)
251
+ railties (>= 3.1, < 7.1)
252
252
  rswag-specs (2.4.0)
253
253
  activesupport (>= 3.1, < 7.0)
254
254
  json-schema (~> 2.2)
255
255
  railties (>= 3.1, < 7.0)
256
- rswag-ui (2.4.0)
257
- actionpack (>= 3.1, < 7.0)
258
- railties (>= 3.1, < 7.0)
256
+ rswag-ui (2.5.1)
257
+ actionpack (>= 3.1, < 7.1)
258
+ railties (>= 3.1, < 7.1)
259
259
  rubocop (0.65.0)
260
260
  jaro_winkler (~> 1.5.1)
261
261
  parallel (~> 1.10)
@@ -29,7 +29,7 @@ module PowerApi
29
29
 
30
30
  initializer 'local_helper.action_controller' do
31
31
  ActiveSupport.on_load :action_controller do
32
- ApplicationController.helper PowerApi::ApplicationHelper
32
+ ::ApplicationController.helper PowerApi::ApplicationHelper
33
33
  end
34
34
  end
35
35
  end
@@ -1,3 +1,3 @@
1
1
  module PowerApi
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Platanus
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-02-01 00:00:00.000000000 Z
12
+ date: 2022-02-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails