dorian-json-pluck 0.0.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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/bin/json-pluck +12 -0
  3. metadata +48 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1a52031f757a9d347e1e2d48a5be2bac0ce0c7afed10e98d5eb8f4e6f7158884
4
+ data.tar.gz: 9b990cebe579bd96e8cab4b9efa4018b87c684bbe01bdd48069646acaeb11dbb
5
+ SHA512:
6
+ metadata.gz: d8cf043cf5865328e3fbe338a8e69d34c7874922a290cfae85dd39f338bd8bfb33c3d24df6d1b987a1e5761740b18168c7d83b919a7e1e82182d47665870bb3a
7
+ data.tar.gz: 0c897e8a1d0c284097befb43204be74612dfe7e0db23f1d2a4b86baad2fe253b5ec9b2f1d4f2dc15d2ee54362693b53c8e3c47f4c896f6821e8b1188b265ea84
data/bin/json-pluck ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ if ARGV.size != 1 || ARGV[0] == "--help" || ARGV[0] == "-h"
5
+ puts "USAGE: ... | each CODE"
6
+ exit
7
+ end
8
+
9
+ $stdin.each_line do |it|
10
+ it.strip!
11
+ eval(ARGV.first)
12
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dorian-json-pluck
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Dorian Marié
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-08-17 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |-
14
+ Evaluates some code on json-pluck line of the input
15
+
16
+ e.g. `ls -l | json-pluck "puts it.split.first"`
17
+ email: dorian@dorianmarie.com
18
+ executables:
19
+ - json-pluck
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - bin/json-pluck
24
+ homepage: https://github.com/dorianmariecom/dorian-json-pluck
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ rubygems_mfa_required: 'true'
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.5.11
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Evaluates some code on json-pluck line of the input
48
+ test_files: []