report_print 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6bc69172badef1f367d722882bf9dfc8dcaffb66926811cc37ddebcffac68a8
4
- data.tar.gz: 1fdb2ce8ed7441c34f6cc792480fc9b7ad614c0d26204cf237ada5c52f9969bc
3
+ metadata.gz: 9575787cbf8dee267bff58678f7ea28b55e5bd63743f600ecd2b95d88c285cdc
4
+ data.tar.gz: 15af33b1fcb4750bc832b448afce69b3d3a30000d688f361f9607f544bbe72de
5
5
  SHA512:
6
- metadata.gz: b701bc0e9ac1896140001a39967d96ea4acc369fc7ae8a619a0e62035aa16ace37dcebcb6757abb5f0d3deb93be1e1f8381b31cc90c1e7aadd4a687cbcec0bec
7
- data.tar.gz: 74c6fb521894a4f14591d5d0e23f1b941c04b5209fe9dfb880b35f84041a27c6f917aee484e6402ec555e466fd5a6e3fb582ba60c3ad1432b452f1385c7b4baa
6
+ metadata.gz: e1aa890b34757c984cb4da73d67e00e8afafd167874c20ea20e27e370b93730c330a33a73ca22635eca909968a2a6d065044162f6c9fd160f21834e8e4f29733
7
+ data.tar.gz: 578ec247c39649b7434f91f9774b479c007606391f419babee2ba1c68f534f5089995fe5647c0c5e19889eaa4129dc2fc3072c0a62519bcaa9cdb45034b4ca1d
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ReportPrint
2
2
 
3
- A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing you both a stylish readable default, and the ability to customize it as needed.
3
+ A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing both a stylish readable default, and the ability to customize it as needed.
4
4
 
5
5
  The name ReportPrint comes from the desire to output detailed reports of the program state at a given point in time, rather than merely inspecting an object.
6
6
 
data/doc/overview.md CHANGED
@@ -1,4 +1,4 @@
1
- A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing you both a stylish readable default, and the ability to customize it as needed.
1
+ A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing both a stylish readable default, and the ability to customize it as needed.
2
2
 
3
3
  The name ReportPrint comes from the desire to output detailed reports of the program state at a given point in time, rather than merely inspecting an object.
4
4
 
data/gem_description.rdoc CHANGED
@@ -1,5 +1,7 @@
1
- A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing you both a stylish readable default, and the ability to customize it as needed.
1
+ A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing both a stylish readable default, and the ability to customize it as needed.
2
2
 
3
3
  The name ReportPrint comes from the desire to output detailed reports of the program state at a given point in time, rather than merely inspecting an object.
4
4
 
5
- After requiring simply use the global `rp` method to print objects like you do with `pp` or `ap`.
5
+ == Usage
6
+
7
+ After requiring simply use the global +rp+ method to print objects like you do with +pp+ or +ap+.
@@ -80,7 +80,7 @@ class ::Range < ::Object
80
80
  end
81
81
  end
82
82
 
83
- class ::Enumerator::ArithmeticSequence ::Enumerator
83
+ class ::Enumerator::ArithmeticSequence < ::Enumerator
84
84
  report_print_options(detect_cycles: false)
85
85
 
86
86
  def report_print(rp)
@@ -1,3 +1,3 @@
1
1
  module ReportPrint
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: report_print
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoit Hiller
@@ -24,11 +24,13 @@ dependencies:
24
24
  - !ruby/object:Gem::Version
25
25
  version: '3.1'
26
26
  description: |
27
- A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing you both a stylish readable default, and the ability to customize it as needed.
27
+ A hybrid between PrettyPrint and AwesomePrint/AmazingPrint. Providing both a stylish readable default, and the ability to customize it as needed.
28
28
 
29
29
  The name ReportPrint comes from the desire to output detailed reports of the program state at a given point in time, rather than merely inspecting an object.
30
30
 
31
- After requiring simply use the global `rp` method to print objects like you do with `pp` or `ap`.
31
+ == Usage
32
+
33
+ After requiring simply use the global +rp+ method to print objects like you do with +pp+ or +ap+.
32
34
  email:
33
35
  - benoit.hiller@gmail.com
34
36
  executables: []