queshy_gem 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.
- checksums.yaml +7 -0
- data/lib/queshy_gem.rb +10 -0
- metadata +43 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 66ba510a17357df02767309caf7b50e4657bd18facaf6da78f83d2d149f9e0a9
|
4
|
+
data.tar.gz: 8dcfe6225270b63e1a7f4dd2008ded4c07cb35988fd52fc53a31d69dfc51330c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9ac20c484e4bf1b6e7f72a4dc488edbd0630e9cec2703e62d66f43933602696fae43428193196e435bd656363e831bdab464f3bf021ee75720d169bd7bd138a6
|
7
|
+
data.tar.gz: 704887c669579a8b6e08e8380cfe5ef70ee10f25232b1574292c2e2b2c4803b1a6c3eaa41029309597a06a6000812decc4a47b639b14f69211eba9278d825c7e
|
data/lib/queshy_gem.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
module QushyGem
|
2
|
+
# Some example secrets
|
3
|
+
SECRETS = {
|
4
|
+
api_key: "sk_test_51BTwEjKqq",
|
5
|
+
database_password: "super_secret_password123",
|
6
|
+
aws_key: "AKIAQYLPMN5HHHFPZAM2",
|
7
|
+
private_key: "-----BEGIN RSA PRIVATE KEY-----\nMIIBOgIBAAJBAKj34GkxFhD90vcNLYLInFEX"
|
8
|
+
aws_secret_access_key: "1tUm636uS1yOEcfP5pvfqJ/ml36mF7AkyHsEU0IU"
|
9
|
+
}
|
10
|
+
end
|
metadata
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: queshy_gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Queshy
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-02-05 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A basic gem containing some secrets
|
14
|
+
email: test@example.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- lib/queshy_gem.rb
|
20
|
+
homepage: https://rubygems.org/gems/queshy_gem
|
21
|
+
licenses:
|
22
|
+
- MIT
|
23
|
+
metadata: {}
|
24
|
+
post_install_message:
|
25
|
+
rdoc_options: []
|
26
|
+
require_paths:
|
27
|
+
- lib
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
requirements: []
|
39
|
+
rubygems_version: 3.4.20
|
40
|
+
signing_key:
|
41
|
+
specification_version: 4
|
42
|
+
summary: A test gem with secrets
|
43
|
+
test_files: []
|