authenticaty 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2a7ae14c2b9a56414271aa8c36cb2019ff8aaec8144e0d6ae2ca2201286e5595
4
+ data.tar.gz: 579362c74f69db99fec61a1a710fb718a5cae40ef14120fe3a0d0af2225473a0
5
+ SHA512:
6
+ metadata.gz: 32c693287638e22e7ef0b8c98ce49fed2490cd0bf145043066bf686a881e8e508eb1d6027c374d4c46be94faf31112bc9745048576c6d8b996f1681e0945f499
7
+ data.tar.gz: 89fe567d58d92fbade83f4acbc0f83b499a81456648bf47a9d30e1bc8a0f0642b4481ed5b2871a2b5a800eada24a11a3afa15d06cc18b2d3b463b36f6b0ca601
data/.rspec ADDED
@@ -0,0 +1,4 @@
1
+ --require spec_helper
2
+ --format documentation
3
+ --force-color
4
+ --order rand
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ plugins:
2
+ - rubocop-rspec
3
+ - rubocop-rake
4
+
5
+ inherit_gem:
6
+ standard: config/base.yml
7
+
8
+ AllCops:
9
+ NewCops: enable
10
+ TargetRubyVersion: 3.4
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/standardrb/standard
3
+ ruby_version: 3.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Walmir
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/Makefile ADDED
@@ -0,0 +1,11 @@
1
+ GEM_TO_PUSH = `ls authenticaty*.gem | tail -n 1`
2
+
3
+ release:
4
+ bin/release
5
+
6
+ build:
7
+ gem build authenticaty.gemspec
8
+
9
+ publish:
10
+ @echo "gem push ${GEM_TO_PUSH}"
11
+ @gem push ${GEM_TO_PUSH}
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # Authenticaty
2
+
3
+ Authenticaty is a gem that provides authentication utilities and helpers for Rails applications using Devise.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'authenticaty'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ bundle install
17
+ ```
18
+
19
+ Or install it directly via terminal:
20
+
21
+ ```bash
22
+ gem install authenticaty
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```ruby
28
+ require 'authenticaty'
29
+
30
+ # Example of gem usage
31
+ # Authenticaty.greet
32
+ ```
33
+
34
+ ## Development
35
+
36
+ After cloning the repository, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+
38
+ To install this gem onto your local machine, run `bundle exec rake install`.
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/authenticaty.
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
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,3 @@
1
+ module Authenticaty
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ require_relative "authenticaty/version"
2
+
3
+ module Authenticaty
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,4 @@
1
+ module Authenticaty
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: authenticaty
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lavenda Software
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: This gem provides authentication utilities and helpers for Rails applications
13
+ using Devise.
14
+ email:
15
+ - lavenda@lavenda.com.br
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".rubocop.yml"
22
+ - ".standard.yml"
23
+ - LICENSE.txt
24
+ - Makefile
25
+ - README.md
26
+ - Rakefile
27
+ - lib/authenticaty.rb
28
+ - lib/authenticaty/version.rb
29
+ - sig/authenticaty.rbs
30
+ homepage: https://github.com/LavendaSoftware/authenticaty
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ allowed_push_host: https://rubygems.org
35
+ homepage_uri: https://github.com/LavendaSoftware/authenticaty
36
+ source_code_uri: https://github.com/LavendaSoftware/authenticaty/blob/main/README.md
37
+ changelog_uri: https://github.com/LavendaSoftware/authenticaty/commits/main
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.0
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 4.0.6
53
+ specification_version: 4
54
+ summary: Authentication utilities for Rails applications.
55
+ test_files: []