apphunkd 0.10.1 → 0.11.0
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/TODO +2 -1
- data/VERSION +1 -1
- data/apphunkd.gemspec +2 -2
- data/lib/apphunkd/queue.rb +3 -3
- metadata +2 -2
data/TODO
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
+ Jeweler support
|
|
1
|
+
+ Jeweler support
|
|
2
|
+
+ Monit: RAM Begrenzung
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.11.0
|
data/apphunkd.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{apphunkd}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.11.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andreas Wolff"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2010-01-14}
|
|
13
13
|
s.default_executable = %q{apphunkd}
|
|
14
14
|
s.description = %q{
|
|
15
15
|
Apphunkd is a ruby based daemon that runs on your application-servers and acts as local proxy between your apps and apphunk.com.
|
data/lib/apphunkd/queue.rb
CHANGED
|
@@ -82,11 +82,11 @@ module Apphunkd
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
def generate_api_messages_url(token)
|
|
85
|
-
path = "
|
|
85
|
+
path = "v1/#{token}/messages"
|
|
86
86
|
if DaemonKit.env.to_s == 'production'
|
|
87
|
-
"http://apphunk.com/#{path}"
|
|
87
|
+
"http://postbox.apphunk.com/#{path}"
|
|
88
88
|
else
|
|
89
|
-
"http://apphunk.local/#{path}"
|
|
89
|
+
"http://postbox.apphunk.local/#{path}"
|
|
90
90
|
end
|
|
91
91
|
end
|
|
92
92
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apphunkd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andreas Wolff
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-01-14 00:00:00 +01:00
|
|
13
13
|
default_executable: apphunkd
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|