synchrolog-ruby 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3d33af17dfd0c04955ae0b00157d1408fe8ce1cf
4
+ data.tar.gz: c840f448e5524fd3d0757ca6d9cf1b004e8f204d
5
+ SHA512:
6
+ metadata.gz: 2aae13d77c66de0ea8b3009d33ca826e890ee09a32b9a6162558a1108d3a50a313b6ca247e53fa2a24801fb10ee6788f6e04ed71a7fac0272d570df2b91e6414
7
+ data.tar.gz: 4f0550dd7b0e5efdd06017369dde0b727f101268f4ddb9a7556a20a62cfac2fbef8e237c4837a9914b846e76209ee637317750a20c258c04c54d405f0fd1457d
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install: gem install bundler -v 1.14.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in synchrolog-ruby.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Synchrolog roberto@synchrolog.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # Synchrolog
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/synchrolog`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'synchrolog-ruby'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install synchrolog-ruby
22
+
23
+ ## Usage
24
+
25
+ Run:
26
+
27
+ $ rails g synchrolog:install
28
+
29
+ or create file `config/initializers/synchrolog.rb` with the following content:
30
+ ```ruby
31
+ SYNCHROLOG = Synchrolog.new('YOUR_API_KEY')
32
+ Rails.logger.extend(ActiveSupport::Logger.broadcast(SYNCHROLOG.logger))
33
+ ```
34
+
35
+ and add this line to `config/application.rb`:
36
+ ```ruby
37
+ config.middleware.insert_after 0, 'Synchrolog::Middleware'
38
+ ```
39
+
40
+ ## Development
41
+
42
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
43
+
44
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
45
+
46
+ ## Contributing
47
+
48
+ Bug reports and pull requests are welcome on GitHub at https://github.com/synchrolog/synchrolog-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
49
+
50
+
51
+ ## License
52
+
53
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
54
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "synchrolog"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,16 @@
1
+ require 'rails/generators/base'
2
+
3
+ module Synchrolog
4
+ module Generators
5
+ class InstallGenerator < Rails::Generators::Base
6
+ source_root File.expand_path("../templates", __FILE__)
7
+
8
+ desc "Creates a Synchrolog initializer."
9
+
10
+ def copy_initializer
11
+ template "synchrolog.rb", "config/initializers/synchrolog.rb"
12
+ application "config.middleware.insert 0, 'Synchrolog::Middleware'"
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,2 @@
1
+ SYNCHROLOG = Synchrolog.new('YOUR_API_KEY')
2
+ Rails.logger.extend(ActiveSupport::Logger.broadcast(SYNCHROLOG.logger))
@@ -0,0 +1,40 @@
1
+ require 'net/http'
2
+ require 'uri'
3
+
4
+ module Synchrolog
5
+ module ExceptionLogger
6
+ class HTTP
7
+ def initialize(api_key, **args)
8
+ @api_key = api_key
9
+ @host = args[:host]
10
+ end
11
+
12
+ def capture(response, exception, env, anonymous_id, user_id)
13
+ return unless anonymous_id
14
+ json_headers = {'Authorization' => "Basic #{@api_key}", 'Content-Type' =>'application/json'}
15
+ uri = URI.parse("#{@host}/v1/track-backend-error")
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.post(uri.path, body(response, exception, env, anonymous_id, user_id).to_json, json_headers)
18
+ end
19
+
20
+ def body(response, exception, env, anonymous_id, user_id)
21
+ status, headers, body = *response
22
+ return {
23
+ event_type: 'error',
24
+ timestamp: Time.now.utc.strftime("%Y-%m-%dT%H:%M:%S.%3NZ"),
25
+ anonymous_id: anonymous_id,
26
+ user_id: user_id,
27
+ source: 'backend',
28
+ api_key: @api_key,
29
+ error: {
30
+ status: status.to_s,
31
+ description: exception.to_s,
32
+ backtrace: exception.backtrace,
33
+ ip_address: env['REMOTE_ADDR'],
34
+ user_agent: env['HTTP_USER_AGENT']
35
+ }
36
+ }
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,42 @@
1
+ require 'net/https'
2
+ require 'uri'
3
+
4
+ module Synchrolog
5
+ module ExceptionLogger
6
+ class HTTPS
7
+ def initialize(api_key, **args)
8
+ @api_key = api_key
9
+ @host = args[:host]
10
+ end
11
+
12
+ def capture(response, exception, env, anonymous_id, user_id)
13
+ return unless anonymous_id
14
+ json_headers = {'Authorization' => "Basic #{@api_key}", 'Content-Type' =>'application/json'}
15
+ uri = URI.parse("#{@host}/v1/track-backend-error")
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.use_ssl = true
18
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
19
+ http.post(uri.path, body(response, exception, env, anonymous_id, user_id).to_json, json_headers)
20
+ end
21
+
22
+ def body(response, exception, env, anonymous_id, user_id)
23
+ status, headers, body = *response
24
+ return {
25
+ event_type: 'error',
26
+ timestamp: Time.now.utc.strftime("%Y-%m-%dT%H:%M:%S.%3NZ"),
27
+ anonymous_id: anonymous_id,
28
+ user_id: user_id,
29
+ source: 'backend',
30
+ api_key: @api_key,
31
+ error: {
32
+ status: status.to_s,
33
+ description: exception.to_s,
34
+ backtrace: exception.backtrace,
35
+ ip_address: env['REMOTE_ADDR'],
36
+ user_agent: env['HTTP_USER_AGENT']
37
+ }
38
+ }
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,15 @@
1
+ require 'synchrolog/exception_logger/https'
2
+ require 'synchrolog/exception_logger/http'
3
+
4
+ module Synchrolog
5
+ module ExceptionLogger
6
+ def self.new(api_key, **args)
7
+ args[:host] ||= 'https://input.synchrolog.com'
8
+ if /^https:\/\//.match(args[:host])
9
+ Synchrolog::ExceptionLogger::HTTPS.new(api_key, args)
10
+ else
11
+ Synchrolog::ExceptionLogger::HTTP.new(api_key, args)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,37 @@
1
+ require 'net/http'
2
+ require 'uri'
3
+
4
+ module Synchrolog
5
+ module Logger
6
+ class HTTP
7
+ def initialize(api_key, **args)
8
+ @api_key = api_key
9
+ @host = args[:host]
10
+ end
11
+
12
+ def write(message)
13
+ return unless message[:anonymous_id]
14
+ json_headers = {'Authorization' => "Basic #{@api_key}", 'Content-Type' =>'application/json'}
15
+ uri = URI.parse("#{@host}/v1/track-backend")
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.post(uri.path, body(message).to_json, json_headers)
18
+ end
19
+
20
+ def body(message)
21
+ {
22
+ event_type: 'log',
23
+ timestamp: message[:timestamp],
24
+ anonymous_id: message[:anonymous_id],
25
+ user_id: message[:user_id],
26
+ source: 'backend',
27
+ api_key: @api_key,
28
+ log: message
29
+ }
30
+ end
31
+
32
+ def close
33
+ nil
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,39 @@
1
+ require 'net/https'
2
+ require 'uri'
3
+
4
+ module Synchrolog
5
+ module Logger
6
+ class HTTPS
7
+ def initialize(api_key, **args)
8
+ @api_key = api_key
9
+ @host = args[:host]
10
+ end
11
+
12
+ def write(message)
13
+ return unless message[:anonymous_id]
14
+ json_headers = {'Authorization' => "Basic #{@api_key}", 'Content-Type' =>'application/json'}
15
+ uri = URI.parse("#{@host}/v1/track-backend")
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.use_ssl = true
18
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
19
+ http.post(uri.path, body(message).to_json, json_headers)
20
+ end
21
+
22
+ def body(message)
23
+ {
24
+ event_type: 'log',
25
+ timestamp: message[:timestamp],
26
+ anonymous_id: message[:anonymous_id],
27
+ user_id: message[:user_id],
28
+ source: 'backend',
29
+ api_key: @api_key,
30
+ log: message
31
+ }
32
+ end
33
+
34
+ def close
35
+ nil
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,15 @@
1
+ require 'synchrolog/logger/https'
2
+ require 'synchrolog/logger/http'
3
+
4
+ module Synchrolog
5
+ module Logger
6
+ def self.new(api_key, **args)
7
+ args[:host] ||= 'https://input.synchrolog.com'
8
+ if /^https:\/\//.match(args[:host])
9
+ Synchrolog::Logger::HTTPS.new(api_key, args)
10
+ else
11
+ Synchrolog::Logger::HTTP.new(api_key, args)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,36 @@
1
+ require 'securerandom'
2
+ require 'json'
3
+
4
+ module Synchrolog
5
+ class Middleware
6
+ def initialize app
7
+ @app = app
8
+ end
9
+
10
+ def call env
11
+ request = ActionDispatch::Request.new(env)
12
+ if request.original_fullpath == "/synchrolog-time"
13
+ [ 200, {'Content-Type' => 'application/json'}, [{ time: Time.now.utc.strftime("%Y-%m-%dT%H:%M:%S.%3NZ") }.to_json] ]
14
+ else
15
+ if request.cookie_jar['synchrolog_anonymous_id'].nil?
16
+ request.cookie_jar['synchrolog_anonymous_id'] = SecureRandom.hex
17
+ end
18
+ anonymous_id = request.cookie_jar['synchrolog_anonymous_id']
19
+ user_id = request.cookie_jar['synchrolog_user_id']
20
+ SYNCHROLOG.logger.tagged("synchrolog_anonymous_id:#{anonymous_id}", "synchrolog_user_id:#{user_id}") do
21
+ begin
22
+ response = @app.call(env)
23
+ rescue Error
24
+ raise # Don't capture Synchrolog errors
25
+ rescue Exception => exception
26
+ SYNCHROLOG.exception_logger.capture(response, exception, env, anonymous_id, user_id)
27
+ raise
28
+ end
29
+ exception = env['rack.exception'] || env['action_dispatch.exception']
30
+ SYNCHROLOG.exception_logger.capture(response, exception, env, anonymous_id, user_id) if exception
31
+ response
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,3 @@
1
+ module Synchrolog
2
+ VERSION = "0.1.4"
3
+ end
@@ -0,0 +1 @@
1
+ require 'synchrolog'
data/lib/synchrolog.rb ADDED
@@ -0,0 +1,50 @@
1
+ require 'synchrolog/version'
2
+ require 'synchrolog/logger'
3
+ require 'synchrolog/exception_logger'
4
+ require 'synchrolog/middleware'
5
+
6
+ require 'active_support/logger'
7
+ require 'active_support/tagged_logging'
8
+
9
+ module Synchrolog
10
+ class Client
11
+ def initialize(api_key, opts={})
12
+ @api_key = api_key
13
+ @opts = opts
14
+ end
15
+
16
+ def logger
17
+ @logger ||= initialize_logger
18
+ end
19
+
20
+ def exception_logger
21
+ @exception_logger ||= initialize_exception_logger
22
+ end
23
+
24
+ private
25
+
26
+ def initialize_logger
27
+ client = Synchrolog::Logger.new(@api_key, @opts)
28
+ logger = ActiveSupport::Logger.new(client)
29
+ logger.formatter = SynchrologFormatter.new
30
+ ActiveSupport::TaggedLogging.new(logger)
31
+ end
32
+
33
+ def initialize_exception_logger
34
+ Synchrolog::ExceptionLogger.new(@api_key, @opts)
35
+ end
36
+
37
+ class SynchrologFormatter < ActiveSupport::Logger::SimpleFormatter
38
+ def call(severity, timestamp, progname, message)
39
+ anonymous_id_match = message.match(/\[synchrolog_anonymous_id:(\S*)\]/)
40
+ anonymous_id = anonymous_id_match.try(:[], 1)
41
+ message.slice!(anonymous_id_match.begin(0)..anonymous_id_match[0].length) if anonymous_id
42
+
43
+ user_id_match = message.match(/\[synchrolog_user_id:(\S*)\]/)
44
+ user_id = user_id_match.try(:[], 1)
45
+ message.slice!(user_id_match.begin(0)..user_id_match[0].length) if user_id
46
+ { type: severity, timestamp: timestamp.utc.iso8601(3), message: message, anonymous_id: anonymous_id, user_id: user_id }
47
+ end
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,11 @@
1
+ require "bundler/setup"
2
+ require "synchrolog"
3
+
4
+ RSpec.configure do |config|
5
+ # Enable flags like --only-failures and --next-failure
6
+ config.example_status_persistence_file_path = ".rspec_status"
7
+
8
+ config.expect_with :rspec do |c|
9
+ c.syntax = :expect
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe Synchrolog do
4
+ it "has a version number" do
5
+ expect(Synchrolog::VERSION).not_to be nil
6
+ end
7
+
8
+ it "does something useful" do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'synchrolog/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "synchrolog-ruby"
8
+ spec.version = Synchrolog::VERSION
9
+ spec.authors = ["Synchrolog.com"]
10
+ spec.email = ["roberto@synchrolog.com"]
11
+
12
+ spec.summary = "Synchrolog library"
13
+ spec.description = "Synchrolog ruby library"
14
+ spec.homepage = "https://github.com/synchrolog/synchrolog-ruby"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against " \
23
+ # "public gem pushes."
24
+ # end
25
+ spec.files = `git ls-files`.split("\n")
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.14"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec", "~> 3.0"
33
+
34
+ spec.add_runtime_dependency 'activesupport', '>= 4'
35
+
36
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: synchrolog-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4
5
+ platform: ruby
6
+ authors:
7
+ - Synchrolog.com
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-08-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: activesupport
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '4'
69
+ description: Synchrolog ruby library
70
+ email:
71
+ - roberto@synchrolog.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/console
84
+ - bin/setup
85
+ - lib/generators/synchrolog/install_generator.rb
86
+ - lib/generators/synchrolog/templates/synchrolog.rb
87
+ - lib/synchrolog-ruby.rb
88
+ - lib/synchrolog.rb
89
+ - lib/synchrolog/exception_logger.rb
90
+ - lib/synchrolog/exception_logger/http.rb
91
+ - lib/synchrolog/exception_logger/https.rb
92
+ - lib/synchrolog/logger.rb
93
+ - lib/synchrolog/logger/http.rb
94
+ - lib/synchrolog/logger/https.rb
95
+ - lib/synchrolog/middleware.rb
96
+ - lib/synchrolog/version.rb
97
+ - spec/spec_helper.rb
98
+ - spec/synchrolog_spec.rb
99
+ - synchrolog-ruby.gemspec
100
+ homepage: https://github.com/synchrolog/synchrolog-ruby
101
+ licenses:
102
+ - MIT
103
+ metadata: {}
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project:
120
+ rubygems_version: 2.6.11
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Synchrolog library
124
+ test_files: []