draft_log 0.0.0
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 +7 -0
- data/Gemfile +16 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +18 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/draft_log.gemspec +67 -0
- data/lib/draft_log.rb +41 -0
- data/lib/draft_log/add_extra_request_log_data.rb +16 -0
- data/lib/draft_log/log_subscriber.rb +70 -0
- data/lib/draft_log/rails_ext/rack/logger.rb +9 -0
- data/lib/draft_log/railtie.rb +12 -0
- data/lib/draft_log/view_log_subscriber.rb +11 -0
- metadata +141 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 36f46dd78b0ded9dcdeba3b153dec5ab87c47806
|
4
|
+
data.tar.gz: 5246d03add703e7f90ae834d8f149a7503358e32
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e66b0b32931677b61f0f6c5fd7ca860c5c6ed386c89024ca3a9e3cadb7c94d3490abf9acdb8fc9d80c4c0a8a53726b8e7576ae9aea82da31780ea925cfd73b01
|
7
|
+
data.tar.gz: 9c213af1dd133002a66775cc082f0d914ccfe5b7552349d7051d3311ba9e4fd3a59bf61189f11558ba9d0264b3c4df1f76f2850d111eb25b386fce44d53c4cdd
|
data/Gemfile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
# Add dependencies to develop your gem here.
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
8
|
+
group :development do
|
9
|
+
gem "shoulda", ">= 0"
|
10
|
+
gem "rdoc", "~> 3.12"
|
11
|
+
gem "bundler", "~> 1.0"
|
12
|
+
gem "juwelier", "~> 2.1.0"
|
13
|
+
gem "simplecov", ">= 0"
|
14
|
+
end
|
15
|
+
|
16
|
+
gem 'awesome_print'
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2018 Murugan
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
= draft_log
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Contributing to draft_log
|
6
|
+
|
7
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
8
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
9
|
+
* Fork the project.
|
10
|
+
* Start a feature/bugfix branch.
|
11
|
+
* Commit and push until you are happy with your contribution.
|
12
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
13
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2018 Firstdraft. See LICENSE.txt for
|
18
|
+
further details.
|
data/Rakefile
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
require 'juwelier'
|
14
|
+
Juwelier::Tasks.new do |gem|
|
15
|
+
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
16
|
+
gem.name = "draft_log"
|
17
|
+
gem.homepage = "http://github.com/firstdraft/draft_log"
|
18
|
+
gem.license = "MIT"
|
19
|
+
gem.summary = %Q{Helpful log for beginners}
|
20
|
+
gem.description = %Q{Helpful log for beginners}
|
21
|
+
gem.email = "murugan@firstdraft.com"
|
22
|
+
gem.authors = ["Murugan"]
|
23
|
+
|
24
|
+
# dependencies defined in Gemfile
|
25
|
+
end
|
26
|
+
Juwelier::RubygemsDotOrgTasks.new
|
27
|
+
require 'rake/testtask'
|
28
|
+
Rake::TestTask.new(:test) do |test|
|
29
|
+
test.libs << 'lib' << 'test'
|
30
|
+
test.pattern = 'test/**/test_*.rb'
|
31
|
+
test.verbose = true
|
32
|
+
end
|
33
|
+
|
34
|
+
desc "Code coverage detail"
|
35
|
+
task :simplecov do
|
36
|
+
ENV['COVERAGE'] = "true"
|
37
|
+
Rake::Task['test'].execute
|
38
|
+
end
|
39
|
+
|
40
|
+
task :default => :test
|
41
|
+
|
42
|
+
require 'rdoc/task'
|
43
|
+
Rake::RDocTask.new do |rdoc|
|
44
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
45
|
+
|
46
|
+
rdoc.rdoc_dir = 'rdoc'
|
47
|
+
rdoc.title = "draft_log #{version}"
|
48
|
+
rdoc.rdoc_files.include('README*')
|
49
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
50
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/draft_log.gemspec
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# Generated by juwelier
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: draft_log 0.0.0 ruby lib
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "draft_log"
|
9
|
+
s.version = "0.0.0"
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
+
s.require_paths = ["lib"]
|
13
|
+
s.authors = ["Murugan"]
|
14
|
+
s.date = "2018-01-16"
|
15
|
+
s.description = "Helpful log for beginners"
|
16
|
+
s.email = "murugan@firstdraft.com"
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE.txt",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
"Gemfile",
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"draft_log.gemspec",
|
28
|
+
"lib/draft_log.rb",
|
29
|
+
"lib/draft_log/add_extra_request_log_data.rb",
|
30
|
+
"lib/draft_log/log_subscriber.rb",
|
31
|
+
"lib/draft_log/rails_ext/rack/logger.rb",
|
32
|
+
"lib/draft_log/railtie.rb",
|
33
|
+
"lib/draft_log/view_log_subscriber.rb"
|
34
|
+
]
|
35
|
+
s.homepage = "http://github.com/firstdraft/draft_log"
|
36
|
+
s.licenses = ["MIT"]
|
37
|
+
s.rubygems_version = "2.5.1"
|
38
|
+
s.summary = "Helpful log for beginners"
|
39
|
+
|
40
|
+
if s.respond_to? :specification_version then
|
41
|
+
s.specification_version = 4
|
42
|
+
|
43
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
44
|
+
s.add_runtime_dependency(%q<awesome_print>, [">= 0"])
|
45
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
46
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
47
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
|
48
|
+
s.add_development_dependency(%q<juwelier>, ["~> 2.1.0"])
|
49
|
+
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
50
|
+
else
|
51
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
52
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
53
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
54
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
55
|
+
s.add_dependency(%q<juwelier>, ["~> 2.1.0"])
|
56
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
57
|
+
end
|
58
|
+
else
|
59
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
60
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
61
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
62
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
63
|
+
s.add_dependency(%q<juwelier>, ["~> 2.1.0"])
|
64
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
data/lib/draft_log.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
require "draft_log/log_subscriber"
|
2
|
+
require "draft_log/view_log_subscriber"
|
3
|
+
require "draft_log/add_extra_request_log_data"
|
4
|
+
require "awesome_print"
|
5
|
+
|
6
|
+
if defined? Rails
|
7
|
+
require "draft_log/railtie"
|
8
|
+
require 'draft_log/rails_ext/rack/logger'
|
9
|
+
end
|
10
|
+
|
11
|
+
module DraftLog
|
12
|
+
module_function
|
13
|
+
|
14
|
+
def setup
|
15
|
+
remove_existing_log_subscriptions
|
16
|
+
ActionController::Base.send :prepend, AddExtraRequestLogData
|
17
|
+
end
|
18
|
+
|
19
|
+
def remove_existing_log_subscriptions
|
20
|
+
ActiveSupport::LogSubscriber.log_subscribers.each do |subscriber|
|
21
|
+
case subscriber
|
22
|
+
when ActionController::Base
|
23
|
+
when ActionView::LogSubscriber
|
24
|
+
unsubscribe(:action_view, subscriber)
|
25
|
+
when ActionController::LogSubscriber
|
26
|
+
unsubscribe(:action_controller, subscriber)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def unsubscribe(component, subscriber)
|
32
|
+
events = subscriber.public_methods(false).reject { |method| method.to_s == 'call' }
|
33
|
+
events.each do |event|
|
34
|
+
ActiveSupport::Notifications.notifier.listeners_for("#{event}.#{component}").each do |listener|
|
35
|
+
if listener.instance_variable_get('@delegate') == subscriber
|
36
|
+
ActiveSupport::Notifications.unsubscribe listener
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module DraftLog
|
2
|
+
module AddExtraRequestLogData
|
3
|
+
def append_info_to_payload(payload)
|
4
|
+
super
|
5
|
+
payload[:query_string] = request.query_parameters
|
6
|
+
payload[:params] = request.params.except(:controller, :action)
|
7
|
+
payload[:cookies] = cookies.to_h.select{|x| !x.ends_with?("_session") }
|
8
|
+
payload[:session] = session.to_hash.select{|x| ["session_id", "_csrf_token"].exclude?(x) }
|
9
|
+
payload[:path_param] = request.path_parameters.except(:controller, :action, :format, :_method, :only_path)
|
10
|
+
payload[:controller_instance_var] = instance_variables.select{|x| !x.to_s.start_with?('@_') }.reject{|y| y == :@marked_for_same_origin_verification }.
|
11
|
+
inject({}) {|result, element| result[element.to_s] = instance_variable_get(element.to_s).to_s; result }
|
12
|
+
payload[:view_log_event_data] = Thread.current[:view_log_payload]
|
13
|
+
Thread.current[:view_log_payload] = nil
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
require "active_support"
|
2
|
+
|
3
|
+
module DraftLog
|
4
|
+
class LogSubscriber < ActiveSupport::LogSubscriber
|
5
|
+
|
6
|
+
def process_action(event)
|
7
|
+
payload = event.payload
|
8
|
+
param_method = payload[:params]["_method"]
|
9
|
+
method = param_method ? param_method.upcase : payload[:method]
|
10
|
+
|
11
|
+
message = %Q{\nWe received a request at #{Time.now.strftime("%I:%M%p on %A, %b %d!")} Someone wants to
|
12
|
+
#{method} #{payload[:path]}
|
13
|
+
|
14
|
+
The route told me to use the #{payload[:controller].ai} and #{payload[:action].ai} action.\n\n}
|
15
|
+
|
16
|
+
message += flexible_path_segment(payload) if payload[:path_param].present?
|
17
|
+
message += custom_query_string(payload) if payload[:query_string].present?
|
18
|
+
message += custom_params(payload) if payload[:params].present?
|
19
|
+
# message += custom_cookies(payload) if payload[:cookies].present?
|
20
|
+
# message += custom_session(payload) if payload[:session].present?
|
21
|
+
message += custom_instance_var(payload) if payload[:controller_instance_var].present?
|
22
|
+
message += view_log(payload) if payload[:view_log_event_data].present?
|
23
|
+
message += "==============================================================================================================\n"
|
24
|
+
|
25
|
+
logger.warn message
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def flexible_path_segment(payload)
|
31
|
+
"I found these inputs in flexible path segments:
|
32
|
+
#{payload[:path_param].ai}\n\n"
|
33
|
+
end
|
34
|
+
|
35
|
+
def custom_query_string(payload)
|
36
|
+
"I found these inputs in the query string:
|
37
|
+
#{payload[:query_string].ai}\n\n"
|
38
|
+
end
|
39
|
+
|
40
|
+
def custom_params(payload)
|
41
|
+
"The final params hash containing all inputs looks like this:
|
42
|
+
# params
|
43
|
+
#{payload[:params].ai}\n\n"
|
44
|
+
end
|
45
|
+
|
46
|
+
def custom_cookies(payload)
|
47
|
+
"Here are the cookies that came along with the request:
|
48
|
+
# cookies
|
49
|
+
#{payload[:cookies].ai}\n\n"
|
50
|
+
end
|
51
|
+
|
52
|
+
def custom_session(payload)
|
53
|
+
" # session
|
54
|
+
#{payload[:session].ai}\n\n"
|
55
|
+
end
|
56
|
+
|
57
|
+
def custom_instance_var(payload)
|
58
|
+
%Q{The "#{payload[:controller].ai}##{payload[:action].ai}" action defined these instance variables:
|
59
|
+
#{payload[:controller_instance_var].ai}\n\n}
|
60
|
+
end
|
61
|
+
|
62
|
+
def view_log(payload)
|
63
|
+
template_path = payload[:view_log_event_data][:identifier].sub("#{Rails.root.to_s}/", '')
|
64
|
+
%Q{The #{(payload[:controller] + "#" + payload[:action]).ai} action told me to use
|
65
|
+
#{template_path.ai}
|
66
|
+
to format the response.\n\n}
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module DraftLog
|
2
|
+
class Railtie < Rails::Railtie
|
3
|
+
|
4
|
+
config.after_initialize do |app|
|
5
|
+
DraftLog.setup
|
6
|
+
ActionController::Base.send :prepend, AddExtraRequestLogData
|
7
|
+
end
|
8
|
+
|
9
|
+
DraftLog::LogSubscriber.attach_to :action_controller
|
10
|
+
DraftLog::ViewLogSubscriber.attach_to :action_view
|
11
|
+
end
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,141 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: draft_log
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Murugan
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-01-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: awesome_print
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: shoulda
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rdoc
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.12'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.12'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: juwelier
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.1.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.1.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Helpful log for beginners
|
98
|
+
email: murugan@firstdraft.com
|
99
|
+
executables: []
|
100
|
+
extensions: []
|
101
|
+
extra_rdoc_files:
|
102
|
+
- LICENSE.txt
|
103
|
+
- README.rdoc
|
104
|
+
files:
|
105
|
+
- Gemfile
|
106
|
+
- LICENSE.txt
|
107
|
+
- README.rdoc
|
108
|
+
- Rakefile
|
109
|
+
- VERSION
|
110
|
+
- draft_log.gemspec
|
111
|
+
- lib/draft_log.rb
|
112
|
+
- lib/draft_log/add_extra_request_log_data.rb
|
113
|
+
- lib/draft_log/log_subscriber.rb
|
114
|
+
- lib/draft_log/rails_ext/rack/logger.rb
|
115
|
+
- lib/draft_log/railtie.rb
|
116
|
+
- lib/draft_log/view_log_subscriber.rb
|
117
|
+
homepage: http://github.com/firstdraft/draft_log
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
metadata: {}
|
121
|
+
post_install_message:
|
122
|
+
rdoc_options: []
|
123
|
+
require_paths:
|
124
|
+
- lib
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
requirements: []
|
136
|
+
rubyforge_project:
|
137
|
+
rubygems_version: 2.5.1
|
138
|
+
signing_key:
|
139
|
+
specification_version: 4
|
140
|
+
summary: Helpful log for beginners
|
141
|
+
test_files: []
|