envless 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 235f9055afdd5a7c21a010411f8b1df7408bdcc11eea997c193318d2accfa899
4
+ data.tar.gz: 692432f91b2aad7ff94ca4091b42cf2cd83a3754e32f4ccba4f1013753ba13c7
5
+ SHA512:
6
+ metadata.gz: 79e301e3ff44b7346647b0a231b1a6152d7741d6f9ea9c8463ade0006b4949eaefab9b524bd6012e0c4152aa7f0ede5a39a3defe27eb99dff578b31604f263d5
7
+ data.tar.gz: bfaf405dcb5d6e588841c5606655ae3fb5ceaa7b698f20272237d594f7009f410e4c7c97471041c0b57cbf143ab23720d969858ef0171c64ab1c68c23eb4c3fd
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/testdouble/standard
3
+ ruby_version: 2.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-06-13
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at puru@dahal.me. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in envless.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "standard", "~> 1.3"
data/Gemfile.lock ADDED
@@ -0,0 +1,75 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ envless (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ diff-lcs (1.5.0)
11
+ json (2.6.3)
12
+ language_server-protocol (3.17.0.3)
13
+ lint_roller (1.0.0)
14
+ parallel (1.23.0)
15
+ parser (3.2.2.3)
16
+ ast (~> 2.4.1)
17
+ racc
18
+ racc (1.7.0)
19
+ rainbow (3.1.1)
20
+ rake (13.0.6)
21
+ regexp_parser (2.8.1)
22
+ rexml (3.2.5)
23
+ rspec (3.12.0)
24
+ rspec-core (~> 3.12.0)
25
+ rspec-expectations (~> 3.12.0)
26
+ rspec-mocks (~> 3.12.0)
27
+ rspec-core (3.12.2)
28
+ rspec-support (~> 3.12.0)
29
+ rspec-expectations (3.12.3)
30
+ diff-lcs (>= 1.2.0, < 2.0)
31
+ rspec-support (~> 3.12.0)
32
+ rspec-mocks (3.12.5)
33
+ diff-lcs (>= 1.2.0, < 2.0)
34
+ rspec-support (~> 3.12.0)
35
+ rspec-support (3.12.0)
36
+ rubocop (1.52.1)
37
+ json (~> 2.3)
38
+ parallel (~> 1.10)
39
+ parser (>= 3.2.2.3)
40
+ rainbow (>= 2.2.2, < 4.0)
41
+ regexp_parser (>= 1.8, < 3.0)
42
+ rexml (>= 3.2.5, < 4.0)
43
+ rubocop-ast (>= 1.28.0, < 2.0)
44
+ ruby-progressbar (~> 1.7)
45
+ unicode-display_width (>= 2.4.0, < 3.0)
46
+ rubocop-ast (1.29.0)
47
+ parser (>= 3.2.1.0)
48
+ rubocop-performance (1.18.0)
49
+ rubocop (>= 1.7.0, < 2.0)
50
+ rubocop-ast (>= 0.4.0)
51
+ ruby-progressbar (1.13.0)
52
+ standard (1.29.0)
53
+ language_server-protocol (~> 3.17.0.2)
54
+ lint_roller (~> 1.0)
55
+ rubocop (~> 1.52.0)
56
+ standard-custom (~> 1.0.0)
57
+ standard-performance (~> 1.1.0)
58
+ standard-custom (1.0.1)
59
+ lint_roller (~> 1.0)
60
+ standard-performance (1.1.0)
61
+ lint_roller (~> 1.0)
62
+ rubocop-performance (~> 1.18.0)
63
+ unicode-display_width (2.4.2)
64
+
65
+ PLATFORMS
66
+ arm64-darwin-21
67
+
68
+ DEPENDENCIES
69
+ envless!
70
+ rake (~> 13.0)
71
+ rspec (~> 3.0)
72
+ standard (~> 1.3)
73
+
74
+ BUNDLED WITH
75
+ 2.4.10
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Puru D.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,98 @@
1
+ <a href="https://envless.dev">
2
+ <img alt="Frictionless and secure way to share and manage app secrets across team." src="https://envless.dev/og.png" />
3
+ <h1 align="center">.envless</h1>
4
+ </a>
5
+
6
+ <p align="center">
7
+ An open-source, frictionless and secure way to share and manage app secrets across teams.
8
+ </p>
9
+
10
+ <p align="center">
11
+ <a href="https://github.com/envless/envless/stargazers">
12
+ <img src="https://img.shields.io/github/stars/envless/envless??style=flat&label=%40envless/envless&logo=github&color=2dd4bf&logoColor=fff" alt="Github" />
13
+ </a>
14
+ <a href="https://twitter.com/envless">
15
+ <img src="https://img.shields.io/twitter/follow/envless?style=flat&label=%40envless&logo=twitter&color=0bf&logoColor=fff" alt="Twitter" />
16
+ </a>
17
+ <a href="https://github.com/envless/envless/actions/workflows/ci.yml">
18
+ <img src="https://github.com/envless/envless/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI" />
19
+ </a>
20
+ <a href="https://github.com/envless/envless/blob/main/LICENSE">
21
+ <img src="https://img.shields.io/github/license/envless/envless?label=license&logo=github&color=f80&logoColor=fff" alt="License" />
22
+ </a>
23
+ <a href="https://dub.sh/envless-slack">
24
+ <img src="https://img.shields.io/badge/Slack-Join%20us%20on%20Slack-purple" alt="Join us on Slack" />
25
+ </a>
26
+ <a href="https://dub.sh/envless-discord">
27
+ <img src="https://img.shields.io/badge/Discord-Join%20us%20on%20Discord-blue" alt="Join us on Discord" />
28
+ </a>
29
+ </p>
30
+
31
+ ## 📖 Table of contents
32
+
33
+ - <a href="#about">About</a>
34
+ - <a href="#community">Community</a>
35
+ - <a href="#contributors">Contributors</a>
36
+ - <a href="#Contributing">Contributing</a>
37
+ - <a href="#License">License</a>
38
+
39
+ <h2 id="about">💡 About </h2>
40
+
41
+ - **What is `Envless` ?** It is an open-source tool that provides a frictionless and secure way to share and manage app secrets across teams.
42
+ - With **`Envless`**, you can easily store and share sensitive data like API keys, passwords, and certificates without compromising security.
43
+ - **`Envless`** uses state-of-the-art encryption and access control features to ensure that your secrets are only accessible to authorized team members.
44
+ - **`Envless`** is designed to be easy to use and integrate into your existing workflow. It supports a wide range of programming languages and deployment environments, including containers, serverless functions, and traditional servers.
45
+ - Whether you're a small team or a large enterprise, Envless can help you simplify your secret management and reduce the risk of data breaches.
46
+ - To get started with **`Envless`**, check out the <a href="https://envless.dev">website</a>.
47
+ - You can also join our community on Discord or Slack to ask questions and share feedback.
48
+
49
+ <h2 id="community">🚀 Community</h2>
50
+
51
+ - We have Slack and Discord where we discuss about out updates, features, requests, best practices, contributions and everything.
52
+ - **Please click on the banners below and join us.**
53
+ .
54
+ .
55
+
56
+ <table>
57
+ <tr>
58
+ <td style="text-align: center;">
59
+ <a href="https://dub.sh/envless-discord">
60
+ <img src="./.github/images/discord-banner.png" width="380" alt="Discord invite banner">
61
+ </a>
62
+ </td>
63
+ <td style="text-align: center;">
64
+ <a href="https://dub.sh/envless-slack">
65
+ <img src="./.github/images/slack-banner.png" width="380" alt="Slack invite banner">
66
+ </a>
67
+ </td>
68
+ </tr>
69
+ </table>
70
+
71
+ <h2 id="Contributing">🤝 Contributing</h2>
72
+
73
+ Whether you are a community member or not, we would love your point of view! Feel free to first check out our
74
+
75
+ - [Contribution Guidelines](https://github.com/envless/envless/blob/main/CONTRIBUTING.md)
76
+ - The guide outlines the process for **creating an issue** and **submitting a pull request.**
77
+
78
+ <h2 id="License">🛡️ License</h2>
79
+
80
+ Envless is licensed under the GNU Affero General Public License v3.0 License - see the [LICENSE](https://github.com/envless/envless/blob/main/LICENSE) file for details.
81
+
82
+ <h2 id="contributors">✨ Contributors</h2>
83
+
84
+ - We ❤️ contributors! Feel free to contribute to this project!.
85
+ - Any contributions you make are truly appreciated.
86
+ - Let's continue contributing to keep the community active and growing.
87
+ - We also welcome you to join our [Slack](https://dub.sh/envless-slack) or [Discord](https://dub.sh/envless-discord) community for either support or contributing guidance.
88
+
89
+ <a href="https://github.com/envless/envless/graphs/contributors">
90
+ <p>
91
+ <img src="https://contrib.rocks/image?repo=envless/envless" alt="A table of avatars from the project's contributors" />
92
+ </p>
93
+ </a>
94
+ <h2>🙏 Support</h2>
95
+ <p>
96
+ Don't forget to leave a star ⭐️
97
+ </p>
98
+ <image src=".github/images/envless.gif">
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[spec standard]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Envless
4
+ VERSION = "0.0.1"
5
+ end
data/lib/envless.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "envless/version"
4
+
5
+ module Envless
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/envless.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Envless
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: envless
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Puru D.
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-06-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "[WIP] - The most secure, open source and frictionless way to share and
14
+ manage app secrets across teams."
15
+ email:
16
+ - puru@dahal.me
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".rspec"
22
+ - ".standard.yml"
23
+ - CHANGELOG.md
24
+ - CODE_OF_CONDUCT.md
25
+ - Gemfile
26
+ - Gemfile.lock
27
+ - LICENSE.txt
28
+ - README.md
29
+ - Rakefile
30
+ - lib/envless.rb
31
+ - lib/envless/version.rb
32
+ - sig/envless.rbs
33
+ homepage: https://envless.dev
34
+ licenses:
35
+ - MIT
36
+ metadata:
37
+ allowed_push_host: https://rubygems.org
38
+ homepage_uri: https://envless.dev
39
+ source_code_uri: https://github.com/envless/envless-ruby
40
+ changelog_uri: https://envless.dev/changelog
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.6.0
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.4.10
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: "[WIP] - The most secure, open source and frictionless way to share and manage
60
+ app secrets across teams."
61
+ test_files: []