hirefireapp 0.0.2 → 0.0.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.
- data/README.md +1 -1
- data/hirefireapp.gemspec +3 -3
- data/lib/hirefireapp/middleware.rb +4 -4
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# HireFire - The Heroku
|
|
1
|
+
# HireFire - The Heroku Process Manager
|
|
2
2
|
|
|
3
3
|
HireFire is a hosted service that scales your Heroku web and worker dynos when necessary.
|
|
4
4
|
This allows you to save a lot of money by allowing HireFire to shut down idle workers, and add scalability to both your web as well as your worker dynos.
|
data/hirefireapp.gemspec
CHANGED
|
@@ -4,13 +4,13 @@ Gem::Specification.new do |gem|
|
|
|
4
4
|
|
|
5
5
|
# General configuration / information
|
|
6
6
|
gem.name = 'hirefireapp'
|
|
7
|
-
gem.version = '0.0.
|
|
7
|
+
gem.version = '0.0.3'
|
|
8
8
|
gem.platform = Gem::Platform::RUBY
|
|
9
9
|
gem.authors = 'Michael van Rooijen'
|
|
10
10
|
gem.email = 'meskyanichi@gmail.com'
|
|
11
11
|
gem.homepage = 'http://hirefireapp.com/'
|
|
12
|
-
gem.summary = %|HireFireApp.com - The Heroku
|
|
13
|
-
gem.description = %|HireFireApp.com - The Heroku
|
|
12
|
+
gem.summary = %|HireFireApp.com - The Heroku Process Manager - Autoscaling your web and worker dynos!|
|
|
13
|
+
gem.description = %|HireFireApp.com - The Heroku Process Manager - Autoscaling your web and worker dynos saving you time and money!|
|
|
14
14
|
|
|
15
15
|
# Files and folder that need to be compiled in to the Ruby Gem
|
|
16
16
|
gem.files = %x[git ls-files].split("\n")
|
|
@@ -165,21 +165,21 @@ module HireFireApp
|
|
|
165
165
|
end
|
|
166
166
|
|
|
167
167
|
##
|
|
168
|
-
# Returns true if the
|
|
168
|
+
# Returns true if the PATH_INFO matches the test url
|
|
169
169
|
#
|
|
170
170
|
# @returns [String]
|
|
171
171
|
#
|
|
172
172
|
def test?
|
|
173
|
-
@env['
|
|
173
|
+
@env['PATH_INFO'] == "/hirefireapp/test"
|
|
174
174
|
end
|
|
175
175
|
|
|
176
176
|
##
|
|
177
|
-
# Returns true if the
|
|
177
|
+
# Returns true if the PATH_INFO matches the info url
|
|
178
178
|
#
|
|
179
179
|
# @returns [String]
|
|
180
180
|
#
|
|
181
181
|
def info?
|
|
182
|
-
@env['
|
|
182
|
+
@env['PATH_INFO'] == "/hirefireapp/#{@token}/info"
|
|
183
183
|
end
|
|
184
184
|
|
|
185
185
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: hirefireapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.3
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Michael van Rooijen
|
|
@@ -10,11 +10,11 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-08-05 00:00:00 +02:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
16
|
|
|
17
|
-
description: HireFireApp.com - The Heroku
|
|
17
|
+
description: HireFireApp.com - The Heroku Process Manager - Autoscaling your web and worker dynos saving you time and money!
|
|
18
18
|
email: meskyanichi@gmail.com
|
|
19
19
|
executables:
|
|
20
20
|
- hirefireapp
|
|
@@ -57,6 +57,6 @@ rubyforge_project:
|
|
|
57
57
|
rubygems_version: 1.6.2
|
|
58
58
|
signing_key:
|
|
59
59
|
specification_version: 3
|
|
60
|
-
summary: HireFireApp.com - The Heroku
|
|
60
|
+
summary: HireFireApp.com - The Heroku Process Manager - Autoscaling your web and worker dynos!
|
|
61
61
|
test_files: []
|
|
62
62
|
|