iprog_string_utils 0.1.0

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: e468b12c337ea75a95a1aadf0046e6495f6982254fd192ca10afdfb7ecadee50
4
+ data.tar.gz: 58b3f0e5e203c0d1e297c6a53709983b93ed6aa550d4bd6275ec73c58c2878ca
5
+ SHA512:
6
+ metadata.gz: b53e8ff2f0c6275361bddbcee8d3116252469dba920b1d0dcedb46a4e50068429ec7726e35b65ddc2512af1f5cb2098a8314b4704b37ff703690a9ad6ff716a4
7
+ data.tar.gz: e30846c690c2afa9c4f9a24aab912ccb4333d2cea87d6905a98fc7da2c6c09fd6af8b3017ef4515decc2551bba23a3beae41917343476a03733a1bb4e7d1ad15
data/.rubocop.yml ADDED
@@ -0,0 +1,35 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+ SuggestExtensions: false
4
+
5
+ Style/StringLiterals:
6
+ Enabled: true
7
+ EnforcedStyle: double_quotes
8
+
9
+ Style/StringLiteralsInInterpolation:
10
+ Enabled: true
11
+ EnforcedStyle: double_quotes
12
+
13
+ Layout/LineLength:
14
+ Enabled: false
15
+
16
+ Style/Documentation:
17
+ Enabled: false
18
+
19
+ Lint/MissingSuper:
20
+ Enabled: false
21
+
22
+ Metrics/AbcSize:
23
+ Enabled: false
24
+
25
+ Metrics/MethodLength:
26
+ Enabled: false
27
+
28
+ Metrics/CyclomaticComplexity:
29
+ Enabled: false
30
+
31
+ Metrics/PerceivedComplexity:
32
+ Enabled: false
33
+
34
+ Metrics/BlockLength:
35
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-08-10
4
+
5
+ - Initial release
@@ -0,0 +1,35 @@
1
+
2
+ ### Usage Section Breakdown
3
+
4
+ 1. **Convert to `camelCase`:**
5
+ - Demonstrates how to convert a regular string or a PascalCase string to camelCase.
6
+
7
+ 2. **Convert to `snake_case`:**
8
+ - Shows how to convert different strings to snake_case, handling spaces and mixed cases.
9
+
10
+ 3. **Convert to `kebab-case`:**
11
+ - Demonstrates converting strings to kebab-case, including those with mixed cases.
12
+
13
+ 4. **Truncate a String with Ellipsis:**
14
+ - Examples of truncating strings with a default ellipsis or a custom string.
15
+
16
+ 5. **Reverse the Order of Words:**
17
+ - Shows how to reverse the order of words in a string.
18
+
19
+ 6. **Strip HTML Tags:**
20
+ - Demonstrates removing HTML tags from a string, leaving just the text content.
21
+
22
+ 7. **Check if a String is a Palindrome:**
23
+ - Examples of checking if strings are palindromes, including phrases with spaces and punctuation.
24
+
25
+ 8. **Convert to Boolean:**
26
+ - Demonstrates converting common boolean string values to actual boolean values, with handling for invalid inputs.
27
+
28
+ 9. **Trim Custom Characters:**
29
+ - Shows how to remove specific characters from the start and end of a string.
30
+
31
+ ### Customization
32
+
33
+ Feel free to customize the `README.md` further by adding more examples, refining the explanations, or including any additional information relevant to your gem.
34
+
35
+ Let me know if there's anything else you'd like to add or adjust!
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Jayson Presto
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/README.md ADDED
@@ -0,0 +1,128 @@
1
+ # Iprog String Utils
2
+
3
+ IprogStringUtils is a Ruby gem that extends the `String` class with a set of useful string manipulation utilities. It includes methods for converting strings to various cases, truncating strings, reversing words, stripping HTML tags, and more.
4
+
5
+ <img src="https://github.com/iprog21/iprog_export_model_to_xlsx/blob/main/iprog-logo.png" width="150" alt="IPROG TECH" align="right" />
6
+
7
+ This gem is provided by [**IPROG TECH**](https://www.iprog.tech/), an information technology company specializing in web development services using Ruby on Rails. IPROG TECH also offers free programming tutorials.
8
+
9
+ **Providing Good Quality Web Services:**
10
+ - Startup
11
+ - Maintenance
12
+ - Upgrading & Conversion
13
+
14
+ # Getting Started
15
+
16
+ ## Installation
17
+ To install the gem and add it to your application's Gemfile, run on your terminal:
18
+
19
+ ```bash
20
+ bundle add iprog_string_utils
21
+ ```
22
+
23
+ If you're not using Bundler to manage dependencies, install the gem by running:
24
+
25
+ ```bash
26
+ gem install iprog_string_utils
27
+ ```
28
+
29
+ ## Features
30
+
31
+ - Convert strings to `camelCase`, `snake_case`, and `kebab-case`
32
+ - Truncate strings with an ellipsis
33
+ - Reverse the order of words in a string
34
+ - Strip HTML tags from strings
35
+ - Check if a string is a palindrome
36
+ - Convert strings to boolean values
37
+ - And more!
38
+
39
+ ## Usage
40
+ ### camel case
41
+ ```ruby
42
+ "hello world".camel_case
43
+ => "helloWorld"
44
+
45
+ "Hello World Example".camel_case
46
+ => "helloWorldExample"
47
+ ```
48
+
49
+ ### snake case
50
+ ```ruby
51
+ "ThisIsATest".snake_case
52
+ => "this_is_a_test"
53
+
54
+ "Hello World Example".snake_case
55
+ => "hello_world_example"
56
+ ```
57
+
58
+ ### kebab case
59
+ ```ruby
60
+ "Hello World!".kebab_case
61
+ => "hello-world"
62
+
63
+ "ThisIsAnotherTest".kebab_case
64
+ => "this-is-another-test"
65
+ ```
66
+
67
+ ## truncate a string with ellipsis or custom
68
+ ```ruby
69
+ "This is a very long string".truncate(10)
70
+ => "This is a..."
71
+
72
+ "This is a long string".truncate(15, '--')
73
+ => "This is a lon--"
74
+ ```
75
+
76
+ ## reverse the order of words
77
+ ```ruby
78
+ "hello world".reverse_words
79
+ => "world hello"
80
+
81
+ "one two three".reverse_words
82
+ => "three two one"
83
+ ```
84
+
85
+ ## strip html tags
86
+ ```ruby
87
+ "<p>Hello <strong>world</strong>!</p>".strip_html
88
+ => "Hello world!"
89
+
90
+ "<div>Some <em>text</em></div>".strip_html
91
+ => "Some text"
92
+ ```
93
+
94
+ ## check if a string is a palindrome
95
+ ```ruby
96
+ "madam".palindrome?
97
+ => true
98
+
99
+ "racecar".palindrome?
100
+ => true
101
+
102
+ "hello".palindrome?
103
+ => false
104
+
105
+ "A man, a plan, a canal, Panama".palindrome?
106
+ => true
107
+ ```
108
+
109
+ ## trim custom characters
110
+ ```ruby
111
+ "...hello...".trim_custom('.')
112
+ => "hello"
113
+
114
+ "$$$money$$$".trim_custom('$')
115
+ => "money"
116
+
117
+ "###header###".trim_custom('#')
118
+ => "header"
119
+ ```
120
+
121
+ ## Contributing
122
+ Bug reports and pull requests are welcome on GitHub at https://github.com/iprog21/iprog_string_utils.
123
+
124
+ ## License
125
+ This gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
126
+
127
+ ## Code of Conduct
128
+ This project has adopted the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to iprog.tech@gmail.com.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
data/iprog-logo.png ADDED
Binary file
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module IprogStringUtils
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,73 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "iprog_string_utils/version"
4
+
5
+ module IprogStringUtils
6
+ def camel_case
7
+ split(/[^a-zA-Z0-9]/).map.with_index do |word, index|
8
+ index.zero? ? word.downcase : word.capitalize
9
+ end.join
10
+ end
11
+
12
+ def snake_case
13
+ gsub(/([a-z\d])([A-Z])/, '\1_\2') # Insert underscore between a lowercase/digit and an uppercase letter
14
+ .gsub(/([A-Z]+)([A-Z][a-z\d]+)/, '\1_\2') # Handle cases like "ATest" by inserting an underscore between uppercase letters followed by a lowercase or digit
15
+ .gsub(/\W/, "_") # Replace non-word characters with underscores
16
+ .downcase # Convert the entire string to lowercase
17
+ .gsub(/__+/, "_") # Collapse multiple underscores into a single underscore
18
+ .gsub(/^_|_$/, "") # Remove leading and trailing underscores
19
+ end
20
+
21
+ def kebab_case
22
+ gsub(/([a-z\d])([A-Z])/, '\1-\2') # Insert hyphen between a lowercase/digit and an uppercase letter
23
+ .gsub(/([A-Z]+)([A-Z][a-z\d]+)/, '\1-\2') # Handle cases like "ATest" by inserting a hyphen between uppercase letters followed by a lowercase or digit
24
+ .gsub(/\W/, "-") # Replace non-word characters with hyphens
25
+ .downcase # Convert the entire string to lowercase
26
+ .gsub(/--+/, "-") # Collapse multiple hyphens into a single hyphen
27
+ .gsub(/^-|-$/, "") # Remove leading and trailing hyphens
28
+ end
29
+
30
+ def title_case
31
+ split.map(&:capitalize).join(" ")
32
+ end
33
+
34
+ def reverse_words
35
+ split.reverse.join(" ")
36
+ end
37
+
38
+ def count_words
39
+ split.size
40
+ end
41
+
42
+ def truncate(max_length, ellipsis = "...")
43
+ return self if length <= max_length
44
+
45
+ truncated_string = self[0, max_length]
46
+
47
+ "#{truncated_string.rstrip}#{ellipsis}"
48
+ end
49
+
50
+ def strip_html
51
+ gsub(%r{</?[^>]*>}, "")
52
+ end
53
+
54
+ def to_bool
55
+ return true if downcase == "true"
56
+ return false if downcase == "false"
57
+
58
+ nil
59
+ end
60
+
61
+ def palindrome?
62
+ cleaned = gsub(/\W/, "").downcase
63
+ cleaned == cleaned.reverse
64
+ end
65
+
66
+ def trim_custom(char = " ")
67
+ gsub(/^#{Regexp.escape(char)}+|#{Regexp.escape(char)}+$/, "")
68
+ end
69
+ end
70
+
71
+ class String
72
+ include IprogStringUtils
73
+ end
@@ -0,0 +1,4 @@
1
+ module IprogStringUtils
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iprog_string_utils
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jayson Presto
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-08-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: IprogStringUtils is a Ruby gem that provides a set of string manipulation
14
+ utilities. These utilities include methods for converting strings to different cases
15
+ such as camelCase, snake_case, and kebab-case, truncating strings with an ellipsis,
16
+ reversing the order of words, stripping HTML tags, and more. This gem is designed
17
+ to enhance the functionality of the Ruby String class with common string operations.
18
+ email:
19
+ - iprog21@jaysonpresto.me
20
+ executables: []
21
+ extensions: []
22
+ extra_rdoc_files: []
23
+ files:
24
+ - ".rubocop.yml"
25
+ - CHANGELOG.md
26
+ - CODE_OF_CONDUCT.md
27
+ - LICENSE.txt
28
+ - README.md
29
+ - Rakefile
30
+ - iprog-logo.png
31
+ - lib/iprog_string_utils.rb
32
+ - lib/iprog_string_utils/version.rb
33
+ - sig/iprog_string_utils.rbs
34
+ homepage: https://github.com/iprog21/iprog_string_utils.git
35
+ licenses:
36
+ - MIT
37
+ metadata:
38
+ homepage_uri: https://github.com/iprog21/iprog_string_utils.git
39
+ source_code_uri: https://github.com/iprog21/iprog_string_utils.git
40
+ changelog_uri: https://github.com/iprog21/iprog_string_utils/blob/master/CHANGELOG.md
41
+ code_of_conduct_uri: https://github.com/iprog21/iprog_string_utils/blob/main/CODE_OF_CONDUCT.md
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 3.0.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubygems_version: 3.5.14
58
+ signing_key:
59
+ specification_version: 4
60
+ summary: A collection of string manipulation utilities for Ruby.
61
+ test_files: []