justlogging-rails_logger 1.1.2 → 1.1.4
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.textile +18 -1
- metadata +3 -22
data/README.textile
CHANGED
@@ -16,13 +16,30 @@ Just install it as a plugin:
|
|
16
16
|
</code>
|
17
17
|
</pre>
|
18
18
|
|
19
|
+
Or install it as a gem:
|
20
|
+
|
21
|
+
Add this to your enviroment.rb
|
22
|
+
<pre>
|
23
|
+
<code>
|
24
|
+
config.gem "justlogging-rails_logger", :lib => 'justlogging'
|
25
|
+
</code>
|
26
|
+
</pre>
|
27
|
+
and run
|
28
|
+
<pre>
|
29
|
+
<code>
|
30
|
+
rake gems:install
|
31
|
+
script/generate justlogging
|
32
|
+
</code>
|
33
|
+
</pre>
|
34
|
+
|
19
35
|
The generator copies a file called @justlogging.rb@ to the @RAILS_ROOT/config/initializer@ directory. You need to set you api key there and optionally your default log key.
|
20
36
|
|
37
|
+
|
38
|
+
|
21
39
|
h2. Usage
|
22
40
|
|
23
41
|
@Justlogging.log('this is my first entry')@
|
24
42
|
|
25
43
|
Easy as pie.
|
26
44
|
|
27
|
-
|
28
45
|
Copyright (c) 2009 Justlogging, released under the MIT license
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: justlogging-rails_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Beekman
|
@@ -11,27 +11,8 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2009-07-13 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: mime-types
|
17
|
-
type: :runtime
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "1.15"
|
24
|
-
version:
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: diff-lcs
|
27
|
-
type: :runtime
|
28
|
-
version_requirement:
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.1.2
|
34
|
-
version:
|
14
|
+
dependencies: []
|
15
|
+
|
35
16
|
description: Justlogging is a webservice that allows you to log just about anything. This is the ruby gem for API interaction.
|
36
17
|
email: robert@justlogging.com
|
37
18
|
executables: []
|