stackify-api-ruby 1.0.1 → 1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: efb9ae31688a8c3d49b8f246e92f060dee8d6197
4
- data.tar.gz: 639356cd72dc686ed88d215de3c29c8de9bc8f26
3
+ metadata.gz: 3e279fd82f66b4a337b740251468dc61f5f9bb8d
4
+ data.tar.gz: 0a03ef09c48705211493eabd72ebfdfc17f34a2c
5
5
  SHA512:
6
- metadata.gz: 7e9358be11527f83d43d7d63c310b71f954c4aed97c6a83cdeccd8dc040e501c394e028eb662e08bc876a6710f395b185b9eecf96e8e92d06e97376f532674d5
7
- data.tar.gz: 5287da9dc805e5bf78fddb3bb1c0d47b46cf4702b1be881fea00c8d319bde17b59c140d2544fc01d737e611849334acf56a542fe30d8ba50525410549d59c9b0
6
+ metadata.gz: 0ca663b56f8a19bdcacdd896280387095c63e9d621bffe98b573b58851a5092be74cd305541568185c9cbf8be26cb7e7347c7f675b6a9bf241d1e9f1c58cef6a
7
+ data.tar.gz: 56c4de85f2e95928019973e5210c00be97f05882b3c0c45668e6855e00c63265cf002b937c05cb538b06049addf5b3f4a4e773d3904bc10911c62866761e097a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stackify-api-ruby (1.0.1)
4
+ stackify-api-ruby (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -30,7 +30,7 @@ Usage: Logging
30
30
  ------------------
31
31
  ### Rails Environment
32
32
 
33
- stackify-api-ruby starts with start of Rails. Every error, which occurs within your application, will be cought and sent to Stackify automatically. The same situation with logs - you just use the Rails logger as usual:
33
+ stackify-api-ruby starts with start of Rails. Every error, which occurs within your application, will be caught and sent to Stackify automatically. The same situation with logs - you just use the Rails logger as usual:
34
34
 
35
35
  Rails.logger.info "Some log message"
36
36
 
@@ -45,7 +45,7 @@ After that you need to make base configuration:
45
45
  Stackify.setup do |config|
46
46
  config.api_key = "your_api_key"
47
47
  config.env = :development
48
- config.app_name = "Your's app name"
48
+ config.app_name = "Your app name"
49
49
  config.app_location = "/somewhere/public"
50
50
  end
51
51
 
@@ -60,7 +60,7 @@ You can set minimal level of logs, which should be caught by gem:
60
60
 
61
61
  config.log_level = :error
62
62
 
63
- If you want to use proxy for sendig request, you can do it in such way:
63
+ If you want to use proxy for sending request, you can do it in such way:
64
64
 
65
65
  config.with_proxy = true
66
66
  config.proxy_host = "127.0.0.1"
@@ -68,11 +68,11 @@ If you want to use proxy for sendig request, you can do it in such way:
68
68
  config.proxy_user = nil
69
69
  config.proxy_pass = nil
70
70
 
71
- For logging own work stackify-api-ruby uses such logger:
71
+ For internal logging stackify-api-ruby uses such logger:
72
72
 
73
73
  config.logger = Logger.new(File.join(Rails.root, "log", "stackify.log"))
74
74
 
75
- After set up of logs you should wrap up your logger:
75
+ After logs configuring you should wrap up your logger:
76
76
 
77
77
  logger = Logger.new('mylog.log')
78
78
  logger = Stackify::LoggerProxy.new(logger)
@@ -1,3 +1,3 @@
1
1
  module Stackify
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
@@ -5,7 +5,7 @@ require 'stackify/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'stackify-api-ruby'
8
- spec.version = '1.0.1'
8
+ spec.version = '1.0.2'
9
9
  spec.authors = ['Stackify']
10
10
  spec.email = ['support@stackify.com']
11
11
  spec.summary = 'Stackify API for Ruby'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stackify-api-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stackify