coralogix_logger 0.0.19 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 832fc44f9074c1dad487de138d51d9c1a54dcf89
4
- data.tar.gz: 0ee4d1b76536da6dc6871dabb4cf8a222090c1fe
3
+ metadata.gz: 33d4b04dd5a32ddbf3a921570840c0eebc228db9
4
+ data.tar.gz: 9f3896706dc40ff4c4be1713a824a3d8fb9a5f3f
5
5
  SHA512:
6
- metadata.gz: 225e8e8102f48eb1c57439e01fac3e6dfe4bff6e7ac8b792be08bfabb0eea88b5b0e7472e0a33192d8236ca1021308561633fb74d5c40c68ca561b9e1f464746
7
- data.tar.gz: 239d76318b9389c47e1aea06bde22d3d5db59317a2172af0fba86f225ee835113217218a5f402750381c207e71af13186678cf4ed3940612b78b043c324a7926
6
+ metadata.gz: bc3303b03fed48b00245d287202f8d8b39499956def7860c877b3c794fde2f8300864f3c6c61ddb1bd260f905ad2e93565a4b11a8029a10ed14e7cd6323b7144
7
+ data.tar.gz: f0f4adea6df2d07555c70cc374fc54b2bd67a5f3fb20cd9ea3b5ce43acc556aba8c2f0cd7b45a6e3e7fc6906b906e6fb44e98fa7013eb415fb4432b37fb67606
data/README.md CHANGED
@@ -76,8 +76,14 @@ You must provide the following four variables when creating a Coralogix logger i
76
76
  ## Ruby on Rails
77
77
 
78
78
  1. Currently the coralogix SDK supports Rails version >= 4
79
- 2. Create coralogix.rb file under: config/initializers/ folder.
80
- 3. Copy the following content into the file. Replace the constants with your values:
79
+ 2. Add the coralogix gem in the Gemfile:
80
+
81
+ ##### Example: Gemfile ####
82
+ gem 'coralogix_logger'
83
+
84
+ 3. Run: #####bundle install.####
85
+ 4. Create coralogix.rb file under: config/initializers/ folder.
86
+ 5. Copy the following content into the file. Replace the constants with your values:
81
87
 
82
88
  ##### Example: Rails configuration ####
83
89
  require 'coralogix_logger'
@@ -90,7 +96,7 @@ You must provide the following four variables when creating a Coralogix logger i
90
96
  coralogix_logger = Coralogix::CoralogixLogger.get_logger(SUB_SYSTEM)
91
97
  Rails.logger.extend(ActiveSupport::Logger.broadcast(coralogix_logger))
92
98
 
93
- 4. Now you can use your Rails logger as usual:
99
+ 6. Now you can use your Rails logger as usual:
94
100
 
95
101
  ##### Example: Rails usage ####
96
102
  Rails.logger.info "Hello World from Rails!"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coralogix_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Royee Goldberg