JAuth 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/JAuth.rb +8 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ada384fbf81e137d53f6cefaf80300f700bf1478127ca6fa07eba16717b0bfd0
4
+ data.tar.gz: 20d56dd27707bc280b9147e695798616f85d36bb020389db8f3a01b37c672672
5
+ SHA512:
6
+ metadata.gz: 8ba35aa9689c008053c8bce7972c062c523d1c6491d8aaae3f637df3441092647bd3bb1382364e4567e35e88fa22e35a7c1f9b69754f619906f06087f25d90f3
7
+ data.tar.gz: 1024c6c6e42084e18b2b6dc7bffd4be76fd7fb198a8b08d17bac187d028bf9360ff24891b56adce14f71e4232e88175a85064d8ae60dacae841f2b8e98d34b5e
data/lib/JAuth.rb ADDED
@@ -0,0 +1,8 @@
1
+ module JAuth
2
+ class Authentication
3
+ def self.authenticate(username, password)
4
+ # Your authentication logic goes here
5
+ # Return true if authentication is successful, otherwise false
6
+ end
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: JAuth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Janak Singh Dhami
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-12-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: JAuth is a Ruby gem for handling user authentication in Ruby applications.
14
+ email:
15
+ - info@jsdhami.com.np
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/JAuth.rb
21
+ homepage: https://github.com/jsdhami/jauth
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubygems_version: 3.4.22
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: User authentication gem for Ruby applications
44
+ test_files: []