mic_monitor_gem 0.2.2 → 0.2.3

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: 8ae76c1b521c5ab78e988d3464253d93ca03e673b76936c99966e63fb5837b97
4
- data.tar.gz: 6ec72acd38694c6d3e8443d9a319cc8a0cb366215a335f943e7a8b15141e6378
3
+ metadata.gz: 8f31e03b02685725827ccfd46ecae3935ac05f6fb5c16a98d7c2ee6b0bc2265e
4
+ data.tar.gz: a6b64ab57d1b7dda7716d8c04cfd392f3573fa0e72cdb32aab733f2518c099e9
5
5
  SHA512:
6
- metadata.gz: 4698be9dea5554cf701a98d1e43024fd08a43bc439e3e5349bdb9e86d52202b64a6ced4f47531145b266296bb148caf763fac4dcee37ee2cd8182f7bb40501d9
7
- data.tar.gz: d578f19e413dbce822215e07f9441458f17411aa8d79df27209f2434dfbac66ad4a5cfffa081a61dea8f0e193a20b62bd5d624483a729b1fde7392f5b9d6959c
6
+ metadata.gz: c988b148e42fcc3ff68f1ae1dac81c75909fbc4a97cdaa4930caac566c4eadd71ff62ac32fb3ae3cae4d1c649ee15a63f96eeb217eed0ed4392b0a9cdd96f95e
7
+ data.tar.gz: 27b3a39bc87ea2284d81d05e54d0c51e8ed6e0e67c124bf6d7d11e8a2a97bca74a310b5dbf75d2a3343b7627a03fcdcf50f8caa32a113e920eac6b5b7d513c5d
@@ -0,0 +1,5 @@
1
+ class MicMonitorGem::PingController < ActionController::Base
2
+ def index
3
+ render json: {status: 200}
4
+ end
5
+ end
data/config/routes.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  MicMonitorGem::Engine.routes.draw do
2
- resources :pings, only: [:index]
2
+ resources :ping, only: [:index]
3
3
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MicMonitorGem
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mic_monitor_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - mic-locnv
@@ -24,8 +24,7 @@ files:
24
24
  - LICENSE.txt
25
25
  - README.md
26
26
  - Rakefile
27
- - app/controller/mic_monitor_gem/application_controller.rb
28
- - app/controller/mic_monitor_gem/pings_controller.rb
27
+ - app/controller/mic_monitor_gem/ping_controller.rb
29
28
  - bin/console
30
29
  - bin/setup
31
30
  - config/environments/production.rb
@@ -44,6 +43,7 @@ files:
44
43
  - mic_monitor_gem-0.1.9.gem
45
44
  - mic_monitor_gem-0.2.0.gem
46
45
  - mic_monitor_gem-0.2.1.gem
46
+ - mic_monitor_gem-0.2.2.gem
47
47
  - mic_monitor_gem.gemspec
48
48
  homepage: https://github.com/miclabs/mic_monitor_gem
49
49
  licenses:
@@ -1,2 +0,0 @@
1
- class MicMonitorGem::ApplicationController < ActionController::Base
2
- end
@@ -1,5 +0,0 @@
1
- class MicMonitorGem::PingsController < ActionController::Base
2
- def index
3
- render json: {status: 200}
4
- end
5
- end