apphunk 0.5.0 → 0.5.1

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.
Files changed (4) hide show
  1. data/README.rdoc +8 -9
  2. data/VERSION +1 -1
  3. data/apphunk.gemspec +1 -1
  4. metadata +3 -3
@@ -4,18 +4,17 @@ A library that posts messages to the remote logging service apphunk.com.
4
4
 
5
5
  == Setup
6
6
 
7
- Make sure you have a running instance of apphunkd on your machine:
8
- gem install apphunkd
9
- apphunkd start
10
-
11
- The daemon acts as a proxy between your app(s) and apphunk.com.
12
- It comes with init.d and monit scripts so you may want to check out its documentation: http://github.com/apphunk/apphunkd
7
+ === Rails 3.x
8
+
9
+ gem "apphunk"
10
+
11
+ === Rails 2.x
13
12
 
14
- Add the gem as dependency if you are on Rails 2.x
15
13
  config.gem "apphunk"
16
14
 
17
- or add it to you Gemfile for Rails 3 and pure Ruby:
18
- gem "apphunk"
15
+ === Pure Ruby
16
+
17
+ require 'apphunk'
19
18
 
20
19
 
21
20
  == Configuration
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{apphunk}
8
- s.version = "0.5.0"
8
+ s.version = "0.5.1"
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"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apphunk
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 0
10
- version: 0.5.0
9
+ - 1
10
+ version: 0.5.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andreas Wolff