gusto_packs 0.0.1.pre

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: 0e05479c7c4212d8d0e5f2bb31f42815d7645914f24e115a8fa6839ea1795006
4
+ data.tar.gz: 006b6aa43a8301cbfbe208317ce3a9da176dbaba3317f9c940035537cd7797ed
5
+ SHA512:
6
+ metadata.gz: 6df58fbfee21e62c4805591f3a007317e8ea958820d539c4631568b7a3512b889c55197f7b7be07dccd5ead8d005b88c3bea64a73413dc2dc49e38c826ebd118
7
+ data.tar.gz: 7f672983a91d7cbb64cdf3a913df4938d7ae85ea33104bd7a707ec4fa5e4ee40aede02e1efb34b3e549e36c3dc907c75eebdfd7ee0a6f98a270239ce2b79a6b5
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # GustoPacks
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gusto_packs`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ ```bash
14
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ ```
16
+
17
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
+
19
+ ```bash
20
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/martinemde/gusto_packs.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GustoPacks
4
+ VERSION = "0.0.1.pre"
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "gusto_packs/version"
4
+
5
+ module GustoPacks
6
+ puts "This is the public placeholder for a private gem to avoid dependency confusion attacks."
7
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gusto_packs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre
5
+ platform: ruby
6
+ authors:
7
+ - Gusto Engineering
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-04-04 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: gusto_packs placeholder to avoid dependency confusion attacks. This gem
13
+ is not intended to be used directly.
14
+ email:
15
+ - dev@gusto.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - Rakefile
22
+ - lib/gusto_packs.rb
23
+ - lib/gusto_packs/version.rb
24
+ homepage: https://gusto.com
25
+ licenses: []
26
+ metadata:
27
+ allowed_push_host: https://rubygems.org
28
+ homepage_uri: https://gusto.com
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 3.1.0
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.2
44
+ specification_version: 4
45
+ summary: gusto_packs placeholder to avoid dependency confusion attacks
46
+ test_files: []