rails_app_status 1.0.2 → 1.0.3

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
  SHA1:
3
- metadata.gz: de268eebd570462523b7e49a745116fa03eb7acf
4
- data.tar.gz: 21eef276425b7ac86d4666d6e7d3d0131ee45b2f
3
+ metadata.gz: b2594b745bd11efde1d77fc497dba93a2a1dd02f
4
+ data.tar.gz: 3bc9005b957c4fc57298ccb06dae178240558a5c
5
5
  SHA512:
6
- metadata.gz: ab62b9ca035bc9ec978ca9a70d3045f23d9473b05ba44b361de3187c3cbbaf2877c178506babe10b7abae058486aacef3a6dc4ac214ef477a48c6c177cf34ef0
7
- data.tar.gz: 18359ce9d79345395de32defd7ac06f9e6b457b5e5ec527f7b2d99b4ef29993916f7482eec0fcf443c4f37778d4efde989bb1253a2a7718591717612681571a6
6
+ metadata.gz: a9a8bd0d5317ff20c7f585fb48fb9b2f2a3e84d907c345b25e8f6ab9fb6d397739c7573301d43d3b14f9c4e83d84d2ee6e8034a58cb392098e636d8edf86ebbc
7
+ data.tar.gz: 27bb8b37e6dfbee77f0b6e9e05f85512058e4a2a467514c90e3806c210d9e5a79fcf33be3420c2e12d08bddc3f9256877d225026ffee3ce6e60bd5d7f3665da7
@@ -1,8 +1,8 @@
1
1
  module RailsAppStatus
2
- class EngineController < ApplicationController
2
+ class StatusController < ApplicationController
3
3
  protect_from_forgery with: :exception
4
4
 
5
- def status
5
+ def index
6
6
  end
7
7
 
8
8
  end
@@ -1,6 +1,6 @@
1
1
  module RailsAppStatus
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
2
+ # class ApplicationMailer < ActionMailer::Base
3
+ # default from: 'from@example.com'
4
+ # layout 'mailer'
5
+ # end
6
6
  end
@@ -2,6 +2,7 @@ object false
2
2
 
3
3
  node do
4
4
  {
5
- :status => "UP"
5
+ :status => "UP",
6
+ :thumbs => "UP"
6
7
  }
7
8
  end
data/config/routes.rb CHANGED
@@ -1,4 +1,3 @@
1
1
  RailsAppStatus::Engine.routes.draw do
2
- root to: 'engine#status'
3
- # get '/', to: 'engine#status', as: :status
2
+ root to: 'status#index'
4
3
  end
@@ -1,3 +1,3 @@
1
1
  module RailsAppStatus
2
- VERSION = '1.0.2'
2
+ VERSION = '1.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_status
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Stringham
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-08-23 00:00:00.000000000 Z
13
+ date: 2016-08-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -68,7 +68,7 @@ files:
68
68
  - app/assets/javascripts/rails_app_status/application.js
69
69
  - app/assets/stylesheets/rails_app_status/application.css
70
70
  - app/controllers/rails_app_status/application_controller.rb
71
- - app/controllers/rails_app_status/engine_controller.rb
71
+ - app/controllers/rails_app_status/status_controller.rb
72
72
  - app/helpers/rails_app_status/application_helper.rb
73
73
  - app/jobs/rails_app_status/application_job.rb
74
74
  - app/mailers/rails_app_status/application_mailer.rb