pope_francis_drumsrgr8forn8 0.0.3 → 1.0.0

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
  SHA1:
3
- metadata.gz: 1803bd6539955a7c10f28bf79a048c65a8c6cdc3
4
- data.tar.gz: 5263d0a470dd32e171a00cb27ad50092e8401e43
3
+ metadata.gz: 9a8fd9eab479716138023ce767bd328c85703482
4
+ data.tar.gz: e3333c02964f3e72d4c6751ed6fe26d6883e3f2d
5
5
  SHA512:
6
- metadata.gz: 9a320e220d62365b1f3646ad05c1db3ec5781a94740a444f61fc6fae6850a0dcb1482aacaab0078dafb1ebfe8132dcc120a73343d171a784e95e895a483cf95a
7
- data.tar.gz: 9337bbd1ee38aa5714132b1514f936a145d7488f9ee21a042ba1719df07d003bbfbb01c96333a5aefb1e04808c22174cc3035f22ca4f098df241aca09390f75c
6
+ metadata.gz: b39e0bebc681872dab64352dba2429f20c2edf500ad1f028a1eb16d390623f93b27418ad386d13f68437f784cd68bb49cc50673c1c0dc55a58cd2f2008929ae5
7
+ data.tar.gz: 6458fb72cb2e54c2194d2a8177768d1dc87d5275ff20114b1a2fdbb0f2cfada83aa36c6b4589877c8cac65ce0e5890834dfebfd980c5e4e08a6e5b79d55ddb48
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib = File.expand_path('../../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ require 'pope_francis'
7
+
8
+ puts
9
+ puts "Begin typing an English phrase, then press Enter to translate it to Pig Latin."
10
+ puts "You can repeat as many times as you would like."
11
+ puts
12
+ puts "Press Control-C to exit"
13
+ puts
14
+
15
+ while english_phrase = STDIN.gets do
16
+ puts "Pig Latin: #{english_phrase.to_pig_latin}"
17
+ end
@@ -9,7 +9,7 @@ module PopeFrancis
9
9
  word = "#{word.delete!(word[0])}#{first_char}ay"
10
10
  end
11
11
 
12
- puts english_text.join(" ")
12
+ english_text.join(" ")
13
13
  end
14
14
  end
15
15
 
@@ -1,3 +1,3 @@
1
1
  module PopeFrancis
2
- VERSION = "0.0.3"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pope_francis_drumsrgr8forn8
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nate West
@@ -13,7 +13,8 @@ dependencies: []
13
13
  description: ig-pay atin-lay anslator-tray
14
14
  email:
15
15
  - natescott.west@gmail.com
16
- executables: []
16
+ executables:
17
+ - pope_repl
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
@@ -22,6 +23,7 @@ files:
22
23
  - LICENSE.txt
23
24
  - README.md
24
25
  - Rakefile
26
+ - bin/pope_repl
25
27
  - lib/pope_francis.rb
26
28
  - lib/pope_francis/version.rb
27
29
  - pope_francis.gemspec