Sha256: 3ed114fe8d937afdc965f31d13e4d008538d17e5b8361c520c207b43fc596fd0
Contents?: true
Size: 508 Bytes
Versions: 3
Compression:
Stored size: 508 Bytes
Contents
# Content Spinning `ContentSpinning` is a ruby library made to spin some text. It manages nested spinning. ## Example ```ruby "Hi {there|you}! I'm {efficient|productive}.".spin # or ContentSpinning.spin "Hi {there|you}! I'm {efficient|productive}." ``` returns this array : ```ruby [ "Hi there! I'm efficient.", "Hi there! I'm productive.", "Hi you! I'm efficient.", "Hi you! I'm productive." ] ``` ## Install ``` gem install content_spinning ``` ## Todo A few things to do : * Executable
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
content_spinning-0.2.0 | README.md |
content_spinning-0.1.0 | README.md |
content_spinning-0.0.2 | README.md |