distinct_output 0.1.0 → 0.1.1
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 +4 -4
- data/distinct_output.gemspec +3 -10
- data/lib/distinct_output/version.rb +1 -1
- metadata +21 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5eaae8a68e20133dbaaf10c1ca3d1352fab4c240
|
4
|
+
data.tar.gz: 53c2cf73966ea4107a4fb4a1ca77192c00ddfec9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 163d31effd14189b54d0e35aec5aaf2cef2cec2ed7cb7198aafc3d688d248a14a20e151d0cf32430636b904ae2e7a70e2adcf3d80004275a178d98551edeaaf5
|
7
|
+
data.tar.gz: f93a75b58597fc727553c163298137da431fbdb142b75699f7c7c869c2365a59f29e3d7199e43eb88502250d3dd9e7cf81fb0e3a257902b54500d868012e8d70
|
data/distinct_output.gemspec
CHANGED
@@ -9,19 +9,11 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Kshitij Raj Lohani"]
|
10
10
|
spec.email = ["k.lohani01@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{displays the output of any variable in a distinct manner (framed by bars and colors) so that it becomes easily noticable to the developers during the debugging process.}
|
13
|
+
spec.description = %q{displays the output of any variable in a distinct manner (framed by bars and colors) so that it becomes easily noticable to the developers during the debugging process.}
|
14
14
|
spec.homepage = "https://github.com/kshitijlohani/distinct_output"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
-
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
-
# delete this section to allow pushing this gem 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 public gem pushes."
|
23
|
-
# end
|
24
|
-
|
25
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
18
|
spec.bindir = "exe"
|
27
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
@@ -30,4 +22,5 @@ Gem::Specification.new do |spec|
|
|
30
22
|
spec.add_development_dependency "bundler", "~> 1.10"
|
31
23
|
spec.add_development_dependency "rake", "~> 10.0"
|
32
24
|
spec.add_development_dependency "rspec"
|
25
|
+
spec.add_development_dependency "rainbow"
|
33
26
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: distinct_output
|
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
|
- Kshitij Raj Lohani
|
@@ -52,7 +52,23 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rainbow
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: displays the output of any variable in a distinct manner (framed by bars
|
70
|
+
and colors) so that it becomes easily noticable to the developers during the debugging
|
71
|
+
process.
|
56
72
|
email:
|
57
73
|
- k.lohani01@gmail.com
|
58
74
|
executables: []
|
@@ -94,5 +110,7 @@ rubyforge_project:
|
|
94
110
|
rubygems_version: 2.4.5
|
95
111
|
signing_key:
|
96
112
|
specification_version: 4
|
97
|
-
summary:
|
113
|
+
summary: displays the output of any variable in a distinct manner (framed by bars
|
114
|
+
and colors) so that it becomes easily noticable to the developers during the debugging
|
115
|
+
process.
|
98
116
|
test_files: []
|