spongebobify 0.1.0 → 0.1.1

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: 5c2def4e295a78acc3fa25e95a918da0535419a23806fe8e225032012f9f4142
4
- data.tar.gz: e6cfc30814d7a0dfe5d3a8e94add6aa5e94592227e7900c5a0188c00114c1edd
3
+ metadata.gz: 3c8d9ac362561187e6379f332314cbad22e4edd4e15cd1aaaa7292a3fb664ea0
4
+ data.tar.gz: f5d97a575abeb5988cc1c3b2d69c09dcbab6c71b63ac84148aa539600ddc0a96
5
5
  SHA512:
6
- metadata.gz: 0a36faf0c7825ac6203ab543c339adc8cf014bf69c36faaba62dd0bc9096709cbd7c1ce117fcd827f7ba4b096047d9ff787480610fa04381f8b9e01f05a8764a
7
- data.tar.gz: e63f6f5b83ac39542f330b33358b449cdd73e3d52432644f095d0a786939f088dd4bc6e9aa3bbfba52b39112af98de3dec831753eeb1ee6595ac092aab203c78
6
+ metadata.gz: 21a22c0b5c8edd8c01596e34b66bfd2368aab6c405d14b19806ab61c0c9cad366df1aab68a4ffd960dead1b49d8a2fb3ebc8b25cc1d079a8e6bfae30d4576937
7
+ data.tar.gz: a704dbb2632328ac67cdc0e4e5a3d1325c19f196d2212b51641526d422c429c5ada43aaeb42c3d5987fdabaedcd3aa1ca5a6ac0dfcd07a0dbf2e24334d6b5c73
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spongebobify (0.1.0)
4
+ spongebobify (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,40 +1,35 @@
1
- # Spongebobify
1
+ # sPoNgEbObIfY
2
2
 
3
- 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/spongebobify`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ cOnVeRt nOrMaL PaRlAnCe iNtO WaY MoRe sArCaStIc sPoNgEbOb cLuCkInG ChIcKeN StYlE.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ ## iNsTaLlAtIoN
6
6
 
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
7
+ aDd tHiS LiNe tO YoUr aPpLiCaTiOn's gEmFiLe:
10
8
 
11
9
  ```ruby
12
10
  gem 'spongebobify'
13
11
  ```
14
12
 
15
- And then execute:
13
+ aNd tHeN ExEcUtE:
16
14
 
17
15
  $ bundle install
18
16
 
19
- Or install it yourself as:
17
+ oR InStAlL It yOuRsElF As:
20
18
 
21
19
  $ gem install spongebobify
22
20
 
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- 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).
21
+ ## uSaGe
32
22
 
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/spongebobify.
23
+ ```
24
+ $ bin/spongebobify boring text lacking in sarcasm
25
+ => bOrInG TeXt lAcKiNg iN SaRcAsM
26
+ ```
36
27
 
28
+ ```
29
+ $ bin/spongebobify < input.txt
30
+ => bOrInG TeXt lAcKiNg iN SaRcAsM
31
+ ```
37
32
 
38
- ## License
33
+ ## lIcEnSe
39
34
 
40
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+ tHe gEm iS AvAiLaBlE As oPeN SoUrCe uNdEr tHe tErMs oF ThE [MiT LiCeNsE](https://opensource.org/licenses/MIT).
data/bin/spongebobify CHANGED
@@ -5,7 +5,7 @@ require 'spongebobify'
5
5
 
6
6
  if ARGV.length > 0
7
7
  puts Spongebobify.process(ARGV.join(" "))
8
- else
8
+ elsif !STDIN.tty?
9
9
  STDIN.each_line do |line|
10
10
  puts Spongebobify.process(line || [])
11
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spongebobify
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spongebobify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OneNeptune