trace_header 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 +4 -4
- data/LICENSE.txt +21 -0
- data/lib/trace_header/version.rb +1 -1
- data/trace_header.gemspec +2 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55abaa0d82906ff3ca4d69a17fe8ab0b06ed014d9c45566e3ee23a9293e8b345
|
4
|
+
data.tar.gz: 581dc9eb622e15065aa8976469185207ca3a644e4c30ca8af656ca2211c116f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d26cbc9e920ff26048048923c3ed0cd964b3550f9561a01d01402ae41f45411c16b6a106354b5140c69e4801ad832f32a5eef575b7d6e54806875b3bcb2445bd
|
7
|
+
data.tar.gz: 1b2d51384dbf22cddcd994e41dce5b78e5a62a498e852f9aee5cf432d2212b8ab52d4d9afcb5e291aeaf0ea9bbc2a0d62633dff9b7bf0be3065f78d9c7cae86a
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 misaki shioi
|
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/lib/trace_header/version.rb
CHANGED
data/trace_header.gemspec
CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = %q{To inspect how the response headers would be changed by Rack middleware}
|
13
13
|
spec.description = %q{TraceHedaer is to inspect how the response headers would be changed by Rack middleware, and display them in your terminal.}
|
14
14
|
spec.homepage = "https://github.com/shioimm/trace_header"
|
15
|
+
spec.license = "MIT"
|
15
16
|
|
16
17
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
17
18
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
@@ -20,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
20
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
22
|
spec.require_paths = ["lib"]
|
22
23
|
|
23
|
-
spec.add_dependency '
|
24
|
+
spec.add_dependency 'activesupport'
|
24
25
|
|
25
26
|
spec.add_development_dependency "bundler", "~> 1.17"
|
26
27
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trace_header
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Misaki Shioi
|
@@ -11,7 +11,7 @@ cert_chain: []
|
|
11
11
|
date: 2019-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
@@ -62,6 +62,7 @@ extra_rdoc_files: []
|
|
62
62
|
files:
|
63
63
|
- ".gitignore"
|
64
64
|
- Gemfile
|
65
|
+
- LICENSE.txt
|
65
66
|
- README.md
|
66
67
|
- Rakefile
|
67
68
|
- bin/console
|
@@ -72,7 +73,8 @@ files:
|
|
72
73
|
- lib/trace_header/version.rb
|
73
74
|
- trace_header.gemspec
|
74
75
|
homepage: https://github.com/shioimm/trace_header
|
75
|
-
licenses:
|
76
|
+
licenses:
|
77
|
+
- MIT
|
76
78
|
metadata: {}
|
77
79
|
post_install_message:
|
78
80
|
rdoc_options: []
|