json_to_table 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/Gemfile.lock +1 -1
- data/README.md +6 -2
- data/lib/json_to_table/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 222ade7bb7112dacb7b0c8b4ed7166b3f9f48ae437ef6346609f2f5add0f3e0c
|
|
4
|
+
data.tar.gz: '0097ead026dc252a565de259df61997bcaf26cad8f7545564e6b9dc005fce414'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18d8125cd455c691cc7ad0afa0c3ceb161cf62b05ef56643f6ca28552a35640a86ef5fd7bacacea512275be942bd7cef4a5823c14b8cf6de10af901dc6520587
|
|
7
|
+
data.tar.gz: 8ca21ad5fff021b68cad067ce97d6bd8e7022ff062bc7639b3c137a76e2c06ddd9975fa96e64ff7094369eed86a84ced1a8fa87541c2114132f67fa40167de61
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,13 +4,17 @@ display JSON as TABLE
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
Write in Gemfile or gemspec file
|
|
8
|
+
|
|
7
9
|
```ruby
|
|
8
10
|
gem 'json_to_table'
|
|
9
11
|
```
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
then install gems
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
```ruby
|
|
16
|
+
$ bundle install
|
|
17
|
+
```
|
|
14
18
|
|
|
15
19
|
Or install it yourself as:
|
|
16
20
|
|