a_okay 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  = AOkay
2
2
 
3
3
  Simple controller that spits out if the server is reponding. Created after I stupidly set Pingdom to search for a specific term on our homepage, creating a huge spike in our MixPanel analytics.
4
- Now Pingdom just looks at /a_okay and tests for the string "Everything is a okay!"
4
+ Now Pingdom just looks at /a_okay and tests for the string "Everything is a-okay!"
5
5
 
6
6
  In the future I hope to add "a okay" testing for:
7
7
 
@@ -9,4 +9,17 @@ In the future I hope to add "a okay" testing for:
9
9
  * Mailers
10
10
  * Er, can't think of anythign else right now.
11
11
 
12
+ = What it does
13
+
14
+ /a_okay
15
+ > "Everything is a-okay!"
16
+
17
+ = What else?
18
+
19
+ Sorry, that's it.
20
+
21
+ = Come on, there must be more?
22
+
23
+ No seriously, there isn't.
24
+
12
25
  Copyright (c) 2009 Richard Hart, released under the MIT license
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.1.0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{a_okay}
8
- s.version = "0.0.1"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Richard Hart"]
@@ -1,7 +1,7 @@
1
1
  class AOkayController < ActionController::Base
2
2
 
3
3
  def show
4
- render :text => "Everything is a okay!"
4
+ render :text => "Everything is a-okay!"
5
5
  end
6
6
 
7
7
  end
@@ -12,7 +12,7 @@ class AOkayControllerTest < ActionController::TestCase
12
12
 
13
13
  def test_show
14
14
  get :show
15
- assert_equal "Everything is a okay!", @response.body
15
+ assert_equal "Everything is a-okay!", @response.body
16
16
  end
17
17
 
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: a_okay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Hart