helpyr 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: f7b158b0a5d9b79256e1c404874b1891eb49ef25c693cdae21aa989bc99136dd
4
+ data.tar.gz: 38054bb356242af31ae4873c51cf4c850d51b8d3d6076d59655cd436918cf83b
5
+ SHA512:
6
+ metadata.gz: 66e44e2b4dca701b22a72d78230345a490d90748a39f36efeca8f5d7bcf69c0fd857bad7ccbf7ca8eb9ddba7219f09111368f9f59237f4836695e9de82e70d64
7
+ data.tar.gz: 27d2bcda46b6a31a6f14a148d168206be5cecb36d7f9eb109d3a50d018e17f940b94c31cbac5ae715f706d9cc22961f9c90b0ee0dc807e6f637ab586ef16f59d
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 helpyr*.gem | tail -n 1`
2
+
3
+ release:
4
+ bin/release
5
+
6
+ build:
7
+ gem build helpyr.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
+ # Helpyr
2
+
3
+ Helpyr is a gem that provides some helpers for rails applications.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'helpyr'
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 helpyr
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```ruby
28
+ require 'helpyr'
29
+
30
+ # Example of gem usage
31
+ # Helpyr.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]/helpyr.
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 Helpyr
2
+ VERSION = "0.0.1"
3
+ end
data/lib/helpyr.rb ADDED
@@ -0,0 +1,6 @@
1
+ require_relative "helpyr/version"
2
+
3
+ module Helpyr
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
data/sig/helpyr.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Helpyr
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helpyr
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
+ email:
13
+ - lavenda@lavenda.com.br
14
+ executables: []
15
+ extensions: []
16
+ extra_rdoc_files: []
17
+ files:
18
+ - ".rspec"
19
+ - ".rubocop.yml"
20
+ - ".standard.yml"
21
+ - LICENSE.txt
22
+ - Makefile
23
+ - README.md
24
+ - Rakefile
25
+ - lib/helpyr.rb
26
+ - lib/helpyr/version.rb
27
+ - sig/helpyr.rbs
28
+ homepage: https://github.com/LavendaSoftware/helpyr
29
+ licenses:
30
+ - MIT
31
+ metadata:
32
+ allowed_push_host: https://rubygems.org
33
+ homepage_uri: https://github.com/LavendaSoftware/helpyr
34
+ source_code_uri: https://github.com/LavendaSoftware/helpyr/blob/main/README.md
35
+ changelog_uri: https://github.com/LavendaSoftware/helpyr/commits/main
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.4.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 4.0.6
51
+ specification_version: 4
52
+ summary: Helpyr is a gem that provides some helpers for rails applications.
53
+ test_files: []