mslm 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.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +0 -0
  3. data/CONTRIBUTING.md +154 -0
  4. data/LICENSE +21 -0
  5. data/README.md +59 -0
  6. metadata +53 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8931aea001b95a0bc54f8d00a791a0e8f1a4380307c6168183ca6df9ceecbeb9
4
+ data.tar.gz: 4e24e41c3d2044f3d53a1f8c54f13f919c75db982389b7c796829c55642fcd75
5
+ SHA512:
6
+ metadata.gz: 8c0f758fb53468f12def53aafb623e2bed4241904cbd9cfefaa2ec1d6bb32fb50af44ee308b75d0bf1e181160367c5d693f8fc88e884855af35574138153cbbf
7
+ data.tar.gz: 6d11265f3409d30ce8ec10db4359f41bba31ba4c455e9346f75f6bac40fdf98766546a8514453467d027175785cea9d13326aed2b3eb557f7fb48f0d5f7d166e
data/CHANGELOG.md ADDED
File without changes
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,154 @@
1
+ # Contributing
2
+
3
+ Thanks for taking the time to contribute!
4
+
5
+ All types of contributions are encouraged and valued. Please try to read the
6
+ relevant sections in this document before making your contribution. It will
7
+ make it a lot easier for us maintainers and smooth out the experience for all
8
+ involved. The community looks forward to your contributions.
9
+
10
+ > And if you like the project, but just don't have time to contribute, that's
11
+ > fine. There are other easy ways to support the project and show your
12
+ > appreciation, which we would also be very happy about:
13
+ > - Star the project
14
+ > - Post about it on social media
15
+ > - Refer this project in your own project's README
16
+ > - Mention the project at local meetups and tell your friends/colleagues
17
+
18
+ ## I Have a Question
19
+
20
+ > Please ensure you've already read the available
21
+ > [Documentation](https://mslm.io/docs/api/libraries/ruby), which may have
22
+ > answered your question.
23
+
24
+ Before you ask a question, it is best to search for existing
25
+ [Issues](https://github.com/mslmio/sdk-ruby/issues) that might help you. In
26
+ case you have found a suitable issue and still need clarification, you can
27
+ write your question in this issue. It is also advisable to search the internet
28
+ for answers first.
29
+
30
+ If you then still feel the need to ask a question and need clarification, we
31
+ recommend the following:
32
+
33
+ - Open an [Issue](https://github.com/mslmio/sdk-ruby/issues/new).
34
+ - Provide as much context as you can about what you're running into.
35
+ - Provide project and platform versions (nodejs, npm, etc), depending on what
36
+ seems relevant.
37
+
38
+ We will then take care of the issue as soon as possible.
39
+
40
+ ## I Want To Contribute
41
+
42
+ > ### Legal Notice
43
+ >
44
+ > When contributing to this project, you must agree that you have authored 100%
45
+ > of the content, that you have the necessary rights to the content and that
46
+ > the content you contribute may be provided under the project licence.
47
+
48
+ ### Reporting Bugs
49
+
50
+ #### Before Submitting a Bug Report
51
+
52
+ A good bug report shouldn't leave others needing to chase you up for more
53
+ information. Therefore, we ask you to investigate carefully, collect
54
+ information and describe the issue in detail in your report. Please complete
55
+ the following steps in advance to help us fix any potential bug as fast as
56
+ possible.
57
+
58
+ - Make sure that you are using the latest version.
59
+ - Determine if your bug is really a bug and not an error on your side e.g.
60
+ using incompatible environment components/versions (Make sure that you have
61
+ read the
62
+ [documentation](https://mslm.io/docs/api/libraries/ruby). If you
63
+ are looking for support, you might want to check [this
64
+ section](#i-have-a-question)).
65
+ - To see if other users have experienced (and potentially already solved) the
66
+ same issue you are having, check if there is not already a bug report
67
+ existing for your bug or error in the [bug
68
+ tracker](https://github.com/mslmio/sdk-ruby/issues?q=label%3Abug).
69
+ - Also make sure to search the internet (including Stack Overflow) to see if
70
+ users outside of the GitHub community have discussed the issue.
71
+ - Collect information about the bug:
72
+ - Stack trace (Traceback)
73
+ - OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
74
+ - Version of the interpreter, compiler, SDK, runtime environment, package
75
+ manager, depending on what seems relevant.
76
+ - Possibly your input and the output
77
+ - Can you reliably reproduce the issue? And can you also reproduce it with
78
+ older versions?
79
+
80
+ #### How Do I Submit a Good Bug Report?
81
+
82
+ > You must never report security related issues, vulnerabilities or bugs
83
+ > including sensitive information to the issue tracker, or elsewhere in public.
84
+ > Instead sensitive bugs must be sent by email to .
85
+
86
+ We use GitHub issues to track bugs and errors. If you run into an issue with the project:
87
+
88
+ - Open an [Issue](https://github.com/mslmio/sdk-ruby/issues/new). (Since we
89
+ can't be sure at this point whether it is a bug or not, we ask you not to
90
+ talk about a bug yet and not to label the issue.)
91
+ - Explain the behavior you would expect and the actual behavior.
92
+ - Please provide as much context as possible and describe the *reproduction
93
+ steps* that someone else can follow to recreate the issue on their own. This
94
+ usually includes your code. For good bug reports you should isolate the
95
+ problem and create a reduced test case.
96
+ - Provide the information you collected in the previous section.
97
+
98
+ Once it's filed:
99
+
100
+ - The project team will label the issue accordingly.
101
+ - A team member will try to reproduce the issue with your provided steps. If
102
+ there are no reproduction steps or no obvious way to reproduce the issue, the
103
+ team will ask you for those steps and mark the issue as `needs-repro`. Bugs
104
+ with the `needs-repro` tag will not be addressed until they are reproduced.
105
+ - If the team is able to reproduce the issue, it will be marked `needs-fix`, as
106
+ well as possibly other tags (such as `critical`), and the issue will be left
107
+ to be [implemented by someone](#your-first-code-contribution).
108
+
109
+ ### Suggesting Enhancements
110
+
111
+ This section guides you through submitting an enhancement suggestion,
112
+ **including completely new features and minor improvements to existing
113
+ functionality**. Following these guidelines will help maintainers and the
114
+ community to understand your suggestion and find related suggestions.
115
+
116
+ #### Before Submitting an Enhancement
117
+
118
+ - Make sure that you are using the latest version.
119
+ - Read the [documentation](https://mslm.io/docs/api/libraries/ruby) carefully and
120
+ find out if the functionality is already covered, maybe by an individual
121
+ configuration.
122
+ - Perform a [search](https://github.com/mslmio/sdk-ruby/issues) to see if
123
+ the enhancement has already been suggested. If it has, add a comment to the
124
+ existing issue instead of opening a new one.
125
+ - Find out whether your idea fits with the scope and aims of the project. It's
126
+ up to you to make a strong case to convince the project's developers of the
127
+ merits of this feature. Keep in mind that we want features that will be
128
+ useful to the majority of our users and not just a small subset. If you're
129
+ just targeting a minority of users, consider writing an add-on/plugin
130
+ library.
131
+
132
+ #### How Do I Submit a Good Enhancement Suggestion?
133
+
134
+ Enhancement suggestions are tracked as [GitHub issues](https://github.com/mslmio/sdk-ruby/issues).
135
+
136
+ - Use a **clear and descriptive title** for the issue to identify the
137
+ suggestion.
138
+ - Provide a **step-by-step description of the suggested enhancement** in as
139
+ many details as possible.
140
+ - **Describe the current behavior** and **explain which behavior you expected
141
+ to see instead** and why. At this point you can also tell which alternatives
142
+ do not work for you.
143
+ - You may want to **include screenshots or screen recordings** which help you
144
+ demonstrate the steps or point out the part which the suggestion is related
145
+ to.
146
+ - **Explain why this enhancement would be useful** to most users. You may also
147
+ want to point out the other projects that solved it better and which could
148
+ serve as inspiration.
149
+
150
+ ## Security Issue Notifications
151
+
152
+ If you discover a potential security issue in this project we ask that you
153
+ notify Mslm Security via [security@mslm.io](mailto:security@mslm.io). Please do
154
+ not create a public github issue.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022-now Mslm
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,59 @@
1
+ # Mslm Ruby SDK
2
+
3
+ The official Ruby SDK for Mslm APIs.
4
+
5
+ ## Requirements
6
+
7
+ ...
8
+
9
+ ## Authentication
10
+
11
+ Mslm's APIs require an API key. If you don't have one, please read
12
+ [Authentication](https://mslm.io/docs/api/authentication) to understand how to
13
+ get an API key before continuing.
14
+
15
+ ## Installation
16
+
17
+ ...
18
+
19
+ ## Usage
20
+
21
+ ...
22
+
23
+ ## Additional Resources
24
+
25
+ See the official [API Reference Documentation](https://mslm.io/docs/api) for
26
+ details on each API's actual interface, which is implemented by this SDK.
27
+
28
+ ## Contributing
29
+
30
+ See [CONTRIBUTING](CONTRIBUTING.md) for more information.
31
+
32
+ ## Security
33
+
34
+ See [Security Issue
35
+ Notifications](CONTRIBUTING.md#security-issue-notifications) for more
36
+ information.
37
+
38
+ ## License
39
+
40
+ This project is licensed under the [MIT License](LICENSE).
41
+
42
+ ## About Mslm
43
+
44
+ At Mslm, we're all about making things better. Where others see norm, we see
45
+ opportunity.
46
+
47
+ We build world-class solutions to the toughest problems. Excellence is a core
48
+ value that defines our approach from top to bottom.
49
+
50
+ We're all about creating positive value for ourselves, our partners and our
51
+ societies.
52
+
53
+ We do it by focusing on quality and the long-term, while intelligently
54
+ maneuvering the complex realities of day-to-day business.
55
+
56
+ Our partners share our perspective, and we jointly produce truly world-class
57
+ solutions to the toughest problems.
58
+
59
+ [![image](https://avatars.githubusercontent.com/u/50307970?s=200&v=4)](https://mslm.io/)
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mslm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sahal Abdullah
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-03-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: RubyGem offering email verification and OTP (One-Time Password) generation
14
+ and verification capabilities. Seamlessly integrate email verification and OTP functionality
15
+ into Ruby applications with ease.
16
+ email:
17
+ - sahal.abdullah@mslm.io
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - CHANGELOG.md
23
+ - CONTRIBUTING.md
24
+ - LICENSE
25
+ - README.md
26
+ homepage: https://github.com/mslmio/sdk-ruby
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://github.com/mslmio/sdk-ruby
31
+ source_code_uri: https://github.com/mslmio/sdk-ruby
32
+ changelog_uri: https://github.com/mslmio/sdk-ruby/blob/main/CHANGELOG.md
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.3.5
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Provides functionalities for email verification and OTP (One-Time Password)
52
+ generation and verification.
53
+ test_files: []