liquid-spec 0.1.0
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 +7 -0
- data/README.md +4 -0
- data/bin/console +11 -0
- data/bin/liquid-spec +5 -0
- data/bin/setup +8 -0
- data/lib/liquid/spec/version.rb +7 -0
- data/lib/liquid/spec.rb +7 -0
- data/lib/liquid-spec.rb +1 -0
- metadata +51 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fcb6225b88a71e309e42058ecc04e4946bd0770430de0ca2bfc8e961152042ce
|
|
4
|
+
data.tar.gz: e03e1758e5a08b4db67f9797ea2dfa950bd7564f89bcbeb6dad63274ca8e1a1f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 966c1ebe19fc8aba2a118ec4dcfd3b7b84b8b0cdc1a1698bbcd35d7757f8941577289bfac2a7a41d88e3c679ff737f5ee409f20f2d9aabbd6c1ec17d9093a47c
|
|
7
|
+
data.tar.gz: c72b18b9d1db7eba8df4c314e9195027ffae24657bdf957f9880ca4e86af86ac0f37fd1abc4a551bae5a8e16785ab7f8a2ec3b332efc91c0668796728c477423
|
data/README.md
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "bundler/setup"
|
|
5
|
+
require "liquid/spec"
|
|
6
|
+
|
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
+
|
|
10
|
+
require "irb"
|
|
11
|
+
IRB.start(__FILE__)
|
data/bin/liquid-spec
ADDED
data/bin/setup
ADDED
data/lib/liquid/spec.rb
ADDED
data/lib/liquid-spec.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "liquid/spec"
|
metadata
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: liquid-spec
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- "@gopal_ethical"
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-02-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: This gem is place holder for bug bounty poc by @gopal_ethical
|
|
14
|
+
email:
|
|
15
|
+
- bughunter@example.com
|
|
16
|
+
executables:
|
|
17
|
+
- liquid-spec
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- bin/console
|
|
23
|
+
- bin/liquid-spec
|
|
24
|
+
- bin/setup
|
|
25
|
+
- lib/liquid-spec.rb
|
|
26
|
+
- lib/liquid/spec.rb
|
|
27
|
+
- lib/liquid/spec/version.rb
|
|
28
|
+
homepage: https://example.com
|
|
29
|
+
licenses:
|
|
30
|
+
- MI
|
|
31
|
+
metadata: {}
|
|
32
|
+
post_install_message:
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
requirements: []
|
|
47
|
+
rubygems_version: 3.4.20
|
|
48
|
+
signing_key:
|
|
49
|
+
specification_version: 4
|
|
50
|
+
summary: This gem is place holder for bug bounty poc by @gopal_ethical
|
|
51
|
+
test_files: []
|