cutword 1.0.0.alpha1 → 2.0.0.pre.alpha1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 27719e079601b954bb80ca7e8370d4d5b02403c28a1dd455ac8940623d8d98ba
4
- data.tar.gz: 020f4072438c8ce6ec495c4bf3a9cde0394a97b5a0a79d7583555676124a650f
3
+ metadata.gz: 199a540076326f10851cfc795361210cecfdfdad48a76f1e9f0e6e0452157d76
4
+ data.tar.gz: e63632a8ba506b8de4eef22e7394c9dfe103d7c7e419d9fb55f1ab7522dd5251
5
5
  SHA512:
6
- metadata.gz: 441480882066cee1c48942cbb3a1e0d2eb72dd237e003ac0f671651853a14c3b87312f77c60e72f9a25b8cf7528db11aa67c0aa481939cf6bdb169304b391d0f
7
- data.tar.gz: a5dd7126c77d593dad59a95320ee52bee215374ebb5fa0aa69d8629749d24101b347fadf6ec0fc36c9be889db1af628aa7e3c888b72298b99883e258ab7e0190
6
+ metadata.gz: b3f4880c7319f1bd6b2cb60b6e0073b4ba280c8ea02da3ec5df4dbc620d068c96cfecbefa5ba83d405de6613c7275542cc6325b098145cbe740988321735111b
7
+ data.tar.gz: 1b53266d6711324dde744d3ff18d13b28172d1e150895b7fc0bf34c633080afd98f2318a11f18ac7496945d5ca421230ea309d98580fda215573e7c771974daf
@@ -1,3 +1,3 @@
1
1
  module Cutword
2
- VERSION = '1.0.0.alpha1'.freeze
2
+ VERSION = '2.0.0-alpha1'
3
3
  end
data/lib/cutword.rb CHANGED
@@ -1,16 +1,10 @@
1
- require 'cutword/version'
2
- require 'cutword/get_string'
1
+ # lib/cutword.rb
3
2
 
4
- module Cutword
5
- class << self
6
- def get(text, max_length)
7
- if text.length > max_length
8
- truncated_text = text[0...max_length - 3].strip
9
- truncated_text + '...'
10
- else
11
- text
12
- end
13
- end
3
+ def Cutword(max_length, text)
4
+ if text.length > max_length
5
+ truncated_text = text[0...max_length].strip
6
+ truncated_text + (truncated_text.length < text.length ? '...' : '')
7
+ else
8
+ text
14
9
  end
15
10
  end
16
-
metadata CHANGED
@@ -1,24 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cutword
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.alpha1
4
+ version: 2.0.0.pre.alpha1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Demjhon Silver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-13 00:00:00.000000000 Z
11
+ date: 2024-04-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: This gem provides a string truncation/cut words method for Ruby on Rails
14
- applications.
13
+ description: This gem provides string truncation and word cutting functionality for
14
+ both Rails and Hanami.
15
15
  email: none
16
16
  executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - lib/cutword.rb
21
- - lib/cutword/get_string.rb
22
21
  - lib/cutword/version.rb
23
22
  homepage: https://github.com/demjhonsilver/cutword
24
23
  licenses:
@@ -39,8 +38,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
39
38
  - !ruby/object:Gem::Version
40
39
  version: 1.3.1
41
40
  requirements: []
42
- rubygems_version: 3.4.20
41
+ rubygems_version: 3.4.10
43
42
  signing_key:
44
43
  specification_version: 4
45
- summary: A simple gem for cut words/string truncation in Ruby on Rails.
44
+ summary: A simple gem for truncating words/strings or shortening words and names,
45
+ compatible with Rails and Hanami.
46
46
  test_files: []
@@ -1,12 +0,0 @@
1
- module Cutword
2
- class << self
3
- def get(text, max_length)
4
- if text.length > max_length
5
- truncated_text = text[0...max_length - 3].strip
6
- truncated_text + '...'
7
- else
8
- text
9
- end
10
- end
11
- end
12
- end