ntq_tools 0.7.3 → 0.7.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9a6423facf8642edbfb60c8e40feb6ce68d3ebbdcba52c3677df5e7a154f3ad
|
4
|
+
data.tar.gz: b239adf65c0b94498e36a23cbeb13377b2767856352964e216f49d4454f4ef6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac007f1cf19c09875bbdebc547ffe9d48e5c73f849771e09232e4ec14a1344e9b23da1dd702898f99c87bc3a35a7570cbee81eb5c0d6929b40d077fe7809902a
|
7
|
+
data.tar.gz: d7f97a1da8afbda1ca27d6a2022258c913c59ad5bde214d37ca571458dcf60aab7802735f8bac882ef85a4c0315aa1d1f5134d8fbb7eed319a561cf6cfbc2374
|
@@ -9,7 +9,7 @@ module NtqTools
|
|
9
9
|
|
10
10
|
respond_to do |format|
|
11
11
|
format.json do
|
12
|
-
render json: { status: @status, services_status: @services_status }, status: @status == :ok ? :ok : :service_unavailable
|
12
|
+
render json: { status: @status, services_status: @services_status, container_version: ENV['CONTAINER_VERSION'] }, status: @status == :ok ? :ok : :service_unavailable
|
13
13
|
end
|
14
14
|
format.html do
|
15
15
|
end
|
@@ -239,7 +239,7 @@ FILE
|
|
239
239
|
if defined?(Interactor)
|
240
240
|
create_file "app/interactors/#{plural_name}/search_#{plural_name}.rb", <<-FILE
|
241
241
|
module #{context_name}
|
242
|
-
class Search#{
|
242
|
+
class Search#{plural_name.camelcase}
|
243
243
|
include Interactor::Organizer
|
244
244
|
|
245
245
|
organize Get#{plural_name.camelcase}, PaginateRecords
|
@@ -249,7 +249,7 @@ end
|
|
249
249
|
|
250
250
|
create_file "app/interactors/#{plural_name}/get_#{plural_name}.rb", <<-FILE
|
251
251
|
module #{context_name}
|
252
|
-
class Get#{
|
252
|
+
class Get#{plural_name.camelcase}
|
253
253
|
include Interactor
|
254
254
|
|
255
255
|
def call
|
data/lib/ntq_tools/version.rb
CHANGED
data/lib/ntq_tools.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ntq_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|