slothify 1.0.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 +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +7 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +56 -0
- data/Rakefile +10 -0
- data/bin/console +7 -0
- data/bin/setup +6 -0
- data/examples/creature.rb +38 -0
- data/lib/slothify.rb +5 -0
- data/lib/slothify/string.rb +41 -0
- data/lib/slothify/version.rb +3 -0
- data/slothify.gemspec +26 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 36e2c20884eb664d4905958709dbb29a248e0074
|
4
|
+
data.tar.gz: 9ee5cbc8325b86ffcd6428be6833e1d8a2155031
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c6b34c65b60e7622a3c5eb2019d93e50ec39874d89b74d5a17df0010c651417bffc9a3015181ead74bb45b0a3e0874f309f7646604202f1a18b7e48ef5532070
|
7
|
+
data.tar.gz: 6a428e251b7a6acc85b2a1d5982e2da8a89f373755f7d85621f523ce3c37d99a67d6d8709a7c1085b0e10171a001ce27844dc42dfe2fd06f99e4acad9e682ae0
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Kriselda Rabino
|
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,56 @@
|
|
1
|
+
[](https://travis-ci.org/krissy/slothify)
|
2
|
+
|
3
|
+
# Slothify
|
4
|
+
|
5
|
+
Slothify is a little [refinement](http://ruby-doc.org/core-2.3.0/doc/syntax/refinements_rdoc.html) to ruby's String class that lets you express yourself a little slowerrrr.
|
6
|
+
|
7
|
+
## Installation and Setup
|
8
|
+
|
9
|
+
Add it to your project's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'slothify'
|
13
|
+
```
|
14
|
+
|
15
|
+
And execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
OR
|
20
|
+
|
21
|
+
Install the gem locally:
|
22
|
+
|
23
|
+
$ gem install slothify
|
24
|
+
|
25
|
+
|
26
|
+
Unlike direct monkey patches, Ruby refinements allow you to redefine or add functionality to existing classes locally, without the risk of changing things on a global scope.
|
27
|
+
|
28
|
+
To activate a refinement, you need to add the `using Slothify` syntax at the top of your file, class or module.
|
29
|
+
|
30
|
+
## Example Usage
|
31
|
+
|
32
|
+
require 'slothify'
|
33
|
+
|
34
|
+
module YourModule
|
35
|
+
using Slothify
|
36
|
+
puts "Hello, fast world!".slothify
|
37
|
+
# => "Helloooo, fastttt worldddd!"
|
38
|
+
|
39
|
+
puts "Oh, hai.".slothify(10)
|
40
|
+
# => "Ohhhhhhhhhhh, haiiiiiiiiiii."
|
41
|
+
end
|
42
|
+
|
43
|
+
## Development
|
44
|
+
|
45
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
46
|
+
|
47
|
+
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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/krissy/slothify.
|
52
|
+
|
53
|
+
|
54
|
+
## License
|
55
|
+
|
56
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# Run this example: ruby examples/creature.rb
|
2
|
+
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
3
|
+
require 'slothify'
|
4
|
+
|
5
|
+
class Creature
|
6
|
+
using Slothify
|
7
|
+
|
8
|
+
SUPER_SLOW = 10
|
9
|
+
attr_reader :name, :type, :speed
|
10
|
+
|
11
|
+
def initialize(name, type, speed = :average)
|
12
|
+
@name = name
|
13
|
+
@type = type
|
14
|
+
@speed = speed
|
15
|
+
end
|
16
|
+
|
17
|
+
def speak(str)
|
18
|
+
message = str
|
19
|
+
if type == :sloth
|
20
|
+
message = (speed == :super_slow ? str.slothify(SUPER_SLOW) : str.slothify)
|
21
|
+
end
|
22
|
+
puts "#{name} the #{type.to_s}: #{message}"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# A thrilling conversation between creatures
|
27
|
+
farida = Creature.new("Farida", :ferret)
|
28
|
+
craig = Creature.new("Craig", :sloth, :slow)
|
29
|
+
senior_steve = Creature.new("Senior Steve", :sloth, :super_slow)
|
30
|
+
|
31
|
+
farida.speak("Hello, fast world!")
|
32
|
+
craig.speak("Hi there.")
|
33
|
+
senior_steve.speak("Why hello, party people...")
|
34
|
+
|
35
|
+
# Output:
|
36
|
+
# => "Hello, fast world!"
|
37
|
+
# => "Hiiii, thereeee!"
|
38
|
+
# => "Whyyyyyyyyy hellooooooooo, partyyyyyyyyy peopleeeeeeeee!"
|
data/lib/slothify.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
module Slothify
|
2
|
+
|
3
|
+
class InvalidLengthError < StandardError; end
|
4
|
+
DEFAULT_LENGTH = 3
|
5
|
+
MIN_LENGTH = 1
|
6
|
+
MAX_LENGTH = 300 # Because really, you're just taking the piss now
|
7
|
+
|
8
|
+
refine String do
|
9
|
+
# Slothify your strings
|
10
|
+
#
|
11
|
+
# Example:
|
12
|
+
# >> "Hello, world!".slothify(5)
|
13
|
+
# => "Helloooooo, worldddddd!"
|
14
|
+
#
|
15
|
+
# Arguments:
|
16
|
+
# length: (Fixnum)
|
17
|
+
def slothify(length = DEFAULT_LENGTH)
|
18
|
+
raise InvalidLengthError, "Please input a length between #{MIN_LENGTH} and #{MAX_LENGTH}" unless valid_length(length)
|
19
|
+
|
20
|
+
# Split up the string to modify one word at at time
|
21
|
+
self.split.map do |word|
|
22
|
+
# Find the last alphabetic character to extend
|
23
|
+
last_alpha_index = word.rindex(/[[:alpha:]]/)
|
24
|
+
if last_alpha_index.nil?
|
25
|
+
# No alpha characters found, don't do anything
|
26
|
+
word
|
27
|
+
else
|
28
|
+
# Insert the specified number of repeat chars
|
29
|
+
word.insert last_alpha_index, word[last_alpha_index] * length
|
30
|
+
end
|
31
|
+
end.join(" ")
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def valid_length(l)
|
37
|
+
(MIN_LENGTH..MAX_LENGTH) === l
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
data/slothify.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'slothify/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "slothify"
|
8
|
+
spec.version = Slothify::VERSION
|
9
|
+
spec.authors = ["Kriselda Rabino"]
|
10
|
+
spec.email = ["kriselda.rabino@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Slothify all the strings!"
|
13
|
+
spec.description = "Slothify is a little String refinement that lets you express yourself a little slowerrrr"
|
14
|
+
spec.homepage = "http://rubygems.org/gems/slothify"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
25
|
+
spec.add_development_dependency "pry", "~> 0.10.3"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: slothify
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kriselda Rabino
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.10.3
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.10.3
|
69
|
+
description: Slothify is a little String refinement that lets you express yourself
|
70
|
+
a little slowerrrr
|
71
|
+
email:
|
72
|
+
- kriselda.rabino@gmail.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- bin/console
|
84
|
+
- bin/setup
|
85
|
+
- examples/creature.rb
|
86
|
+
- lib/slothify.rb
|
87
|
+
- lib/slothify/string.rb
|
88
|
+
- lib/slothify/version.rb
|
89
|
+
- slothify.gemspec
|
90
|
+
homepage: http://rubygems.org/gems/slothify
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options: []
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
requirements: []
|
109
|
+
rubyforge_project:
|
110
|
+
rubygems_version: 2.5.1
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: Slothify all the strings!
|
114
|
+
test_files: []
|