string-text 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2c8877c7f9cb5cfe2d0dc601b570a010b4ff24b5cebcb374ac3b7ae0bff4dfb5
4
+ data.tar.gz: 589a2cca9d6850e4c9fb08f1d504db2377fcd82f781a728867ac26a90cd7d65f
5
+ SHA512:
6
+ metadata.gz: 61da90d76afcbbf88ddc44ea0eaedf28ef986d8aa5f2f0281377fa8af073f553cb28d899d2a6ea363e63dcf5c854b681538f5bad4c86d948d68984ccba025bcb
7
+ data.tar.gz: c8b4e49cd741aeee1293bef948c732f9ce98a264cb89f4b6d61319d355d56290882d525968054ebfb661b9e6698cb9d17597b234c4aa7319fc930b1cf0aba899
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.1.2
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in string-text.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # String::Text
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/string-text`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_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
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, 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.
26
+
27
+ 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).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/string-text.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
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
+ task default: :spec
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module String::Text
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "string-text/version"
4
+
5
+ module String::Text
6
+ class Error < StandardError; end
7
+
8
+ refine String do
9
+ def undent
10
+ lines = self.split(/\n/)
11
+ lines.shift while !lines.empty? && !(lines.first =~ /^(\s*)\S/)
12
+ return "" if lines.empty?
13
+ indent = $1.size
14
+ r = []
15
+ while line = lines.shift&.rstrip
16
+ r << (line[indent..-1] || "")
17
+ end
18
+ while !r.empty? && r.last =~ /^\s*$/
19
+ r.pop
20
+ end
21
+ r.join("\n").chomp
22
+ end
23
+
24
+ # Converts a string to a boolean so that "true" becomes true and "false" and
25
+ # the empty string becomes false. Should actually go in to a
26
+ def to_b
27
+ case self
28
+ when "true"; true
29
+ when "false"; false
30
+ when ""; false
31
+ else
32
+ raise ArgumentError, "Expected 'true', 'false', or the empty string, got: #{self.inspect}"
33
+ end
34
+ end
35
+ end
36
+ end
37
+
@@ -0,0 +1,4 @@
1
+ module StringText
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: string-text
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Claus Rasmussen
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Gem string-text
14
+ email:
15
+ - claus.l.rasmussen@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".ruby-version"
22
+ - Gemfile
23
+ - README.md
24
+ - Rakefile
25
+ - lib/string-text.rb
26
+ - lib/string-text/version.rb
27
+ - sig/string_text.rbs
28
+ homepage: http://www.nowhere.com/
29
+ licenses: []
30
+ metadata:
31
+ homepage_uri: http://www.nowhere.com/
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.6.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.3.7
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Text formatting methods
51
+ test_files: []