BequestDeCendresWordGenerator 0.1.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: 00e78b3d333c49f0e342e4de636478c591f5fef530f7f7982946f0cd30cddcf8
4
+ data.tar.gz: 41abfbfb31b36ba0ffac7de2ff0e77410ee8ffe296f3ad74fcb4141691caf0a0
5
+ SHA512:
6
+ metadata.gz: 7913ac0e7ed3a1ebf37a0b0f64e3d0c6d9c383f3b6b79c0591fbebab74954320c7dd2651ec6f77a112a3d06d07fd7d6d8df3e0c1cc5ad46df43196eacbc7795f
7
+ data.tar.gz: aebc59554ed15eb8bb7f2738338c8edf31118214bda340d0d213fc8525a2a0877ee9c09b39064ac1015e9f4b64d6b7efbd0a285b821a1b36e72822d532107a00
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # BequestDeCendresWordGenerator
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/BequestDeCendresWordGenerator`. 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/[USERNAME]/BequestDeCendresWordGenerator.
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 BequestDeCendresWordGenerator
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "BequestDeCendresWordGenerator/version"
4
+
5
+ module BequestDeCendresWordGenerator
6
+ class Error < StandardError; end
7
+
8
+ class GeneratePortManteau
9
+ def self.current_location
10
+ puts "Really fast Snakes Reel in the ground with Salt. Larry the railroad guy Like hotdog with Salt and ketchup. Relish and jam. Larry also likes Popcorn with Tomato paste and Tomales. Deryl on the other hand Slices pepperoni with Strawberry jam. Likes them toasted. Strawberry jam Likes being toasted with Raspberry jam. Delish. Latelly Raspberry prefers being Toasted with Doughnuts."
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,4 @@
1
+ module BequestDeCendresWordGenerator
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: BequestDeCendresWordGenerator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - LWFlouisa
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-08-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: As part of the library for Bequest De Cendres language generation features,
14
+ one of these is based on creating port manteau. And folding words over on themself.
15
+ email:
16
+ - lwflouisa@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - Rakefile
23
+ - lib/BequestDeCendresWordGenerator.rb
24
+ - lib/BequestDeCendresWordGenerator/version.rb
25
+ - sig/BequestDeCendresWordGenerator.rbs
26
+ homepage: https://lwflouisa.itch.io/
27
+ licenses: []
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 3.0.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.3.5
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Develops port manteau based around the concept of words being folded over
48
+ on themselves like an omulet.
49
+ test_files: []