trace_location 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfb14ac437de0918b84efe14862be77d28176b7475d1b033bf914ae8f6e54e0d
4
- data.tar.gz: ef716fc6e91843c70c19604b578dc6ad018446c61af963e7b13c9517619afe60
3
+ metadata.gz: fb85210c00084f35e0ec599fd74807dcd3d0db6e03ce25802f4088e0aa4f60a1
4
+ data.tar.gz: ae4e038de2ce1a518458211b88ce5a7b89d3444ded0073bd130bb005ad1362c0
5
5
  SHA512:
6
- metadata.gz: cb20ffc9c0988b9462abf62a0d4ca52c65c6226a21d3519c330dfd216da6b46326607b070f4a2fd242990e39a67514f91ed2a7841c363743861bb08e83f2b83f
7
- data.tar.gz: 553834e64150421138a7302b03c11ad1f3b4c5f2c64256eb056df8cd9f10a4457b4da2608002543e7fafd7f71b8cbfed0dbc59a618d68e8038266c8da2003a5a
6
+ metadata.gz: 22fd9789dae1f5bc5027630c09aba9bc544575f3f281ddfa6c9aab33201c54c1f403f578d2d7052d6ca68a011a4b90abe70a4ead8e3441fd9a115cb92c24a0fa
7
+ data.tar.gz: 11420a3b2d4a2af2cc9e1b7f7cda1e02f4b62053de42bf4bbbefece74ce28c46b474ef249e3b90da0d0bb6131a93015f7e7757d55b3d2e677d55ff792cce6154
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trace_location (0.1.0)
4
+ trace_location (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TraceLocation
2
2
 
3
- TraceLocation gem provides logs a tracing result of `:call` and `:return`. It's useful for reading the huge codes (e.g. Ruby on Rails) and tracing its process.
3
+ TraceLocation helps you get tracing the source location of codes, and helps you can get reading the huge open souce libraries in Ruby.
4
4
 
5
5
  ## Installation
6
6
 
@@ -21,12 +21,11 @@ Or install it yourself as:
21
21
  ## Usage
22
22
 
23
23
  You just surround the code which you want to track the process.
24
- For example, when you want to track the process of Rails application request/response:
24
+ For example, when you want to track **the lifecycle of Rails application request/response**:
25
25
 
26
26
  ```
27
27
  % bin/rails c
28
- Running via Spring preloader in process 40741
29
- Loading development environment (Rails 5.2.3)
28
+
30
29
  irb(main):001:0> env = Rack::MockRequest.env_for('http://localhost:3000/api/stories')
31
30
  irb(main):002:0> TraceLocation.trace { status, headers, body = Rails.application.call(env) }
32
31
  Created at /path/to/sampleapp/log/trace_location-2019050105051556706139.log
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TraceLocation
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
10
10
  s.authors = ['Yoshiyuki Hirano']
11
11
  s.email = ['yhirano@me.com']
12
12
  s.homepage = 'https://github.com/yhirano55/trace_location'
13
- s.summary = 'logs a tracing result of :call and :return'
14
- s.description = %(TraceLocation gem provides logs a tracing result of `:call` and `:return`. It's useful for reading the huge codes (e.g. Ruby on Rails) and tracing its process.)
13
+ s.summary = 'helps you get tracing the source location of codes'
14
+ s.description = %(TraceLocation helps you get tracing the source location of codes, and helps you can get reading the huge open souce libraries in Ruby)
15
15
  s.license = 'MIT'
16
16
  s.files = Dir.chdir(File.expand_path('.', __dir__)) do
17
17
  `git ls-files -z`.split("\x0").reject do |f|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trace_location
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshiyuki Hirano
@@ -52,8 +52,8 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
- description: TraceLocation gem provides logs a tracing result of `:call` and `:return`.
56
- It's useful for reading the huge codes (e.g. Ruby on Rails) and tracing its process.
55
+ description: TraceLocation helps you get tracing the source location of codes, and
56
+ helps you can get reading the huge open souce libraries in Ruby
57
57
  email:
58
58
  - yhirano@me.com
59
59
  executables: []
@@ -99,5 +99,5 @@ requirements: []
99
99
  rubygems_version: 3.0.3
100
100
  signing_key:
101
101
  specification_version: 4
102
- summary: logs a tracing result of :call and :return
102
+ summary: helps you get tracing the source location of codes
103
103
  test_files: []