web47core 0.1.5 → 0.1.6

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: 6071604627f92a2ddfc83e8c0ee809795745cb6a1287fd86b34fa381952c1e42
4
- data.tar.gz: 7f1d7def8f3b7f62195d865e013a2cf9b7309c282f82449b66471d9788ab1603
3
+ metadata.gz: 6f885e38a17c5e8b301ef5c69e63463a683e9d11677403c1f6da47d64954127e
4
+ data.tar.gz: 4cf3efb4ef1fa54c04452f04e075c4058a8f8dfe6c8ebedb6facfc1ddb268439
5
5
  SHA512:
6
- metadata.gz: 7d66f0068c885e842c803bdccfd0ac907a322d135c742e971c37736f50a6634df78b59bf6b8a979eb84304276d03da8210ab9686fab6b9d353394cea981dcbd5
7
- data.tar.gz: f1025f5f76a4aa4febfe6d0a001c17038353db13a94b660a98e24b6dcebf856b81811a2e760f4a14550ab789f757e804cb31d52a3ee08ab1ea0bb02c4ad23665
6
+ metadata.gz: 9b33f919844b507f9b2378c396938539e8ca622a3066573c874d52d81a81dffbf406b9853099cf519dc50550382d864ad11e011b779b34dc08b9b4a1f222941f
7
+ data.tar.gz: 7daa4ab8d25a20a00976c14562b9e8052d95da5440818f7928955eb00aeffafc018fc8a74b8cdcf6e01cec4fcbbb6dc72bb3bb2f9015d59d78615d4ac5ef9a21
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # Return the status of the server
5
5
  #
6
- class StatusController < ActionController::Base
6
+ class StatusController < ApplicationController
7
7
  #
8
8
  # Main (and only) page
9
9
  #
data/config/routes.rb ADDED
@@ -0,0 +1,4 @@
1
+ # web47core/config/routes.rb
2
+ Rails.application.routes.draw do
3
+ get 'status' => 'web47core/status#index'
4
+ end
@@ -0,0 +1,3 @@
1
+ module Web47core
2
+ class Engine < Rails::Engine; end
3
+ end
data/lib/web47core.rb CHANGED
@@ -32,6 +32,10 @@ require 'app/jobs/cron/switchboard_sync_models'
32
32
  require 'app/jobs/cron/trim_notifications'
33
33
  require 'app/jobs/cron/trim_cron_servers'
34
34
  require 'app/jobs/cron/trim_failed_delayed_jobs'
35
+ #
36
+ # Controllers
37
+ #
38
+ require 'web47core/engine'
35
39
 
36
40
  class Web47core
37
41
  include Singleton
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web47core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
@@ -515,6 +515,7 @@ files:
515
515
  - app/controllers/status_controller.rb
516
516
  - app/views/status/index.html.haml
517
517
  - config/locales/en.yml
518
+ - config/routes.rb
518
519
  - lib/app/jobs/application_job.rb
519
520
  - lib/app/jobs/cron/command.rb
520
521
  - lib/app/jobs/cron/job.rb
@@ -551,6 +552,7 @@ files:
551
552
  - lib/templates/slack/error_message.liquid
552
553
  - lib/templates/slack/failed_delayed_job.liquid
553
554
  - lib/web47core.rb
555
+ - lib/web47core/engine.rb
554
556
  homepage: https://app47.com
555
557
  licenses:
556
558
  - MIT