rexy 0.0.1 → 0.0.2
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 +8 -8
- data/bin/rexy +1 -1
- data/lib/rexy.rb +3 -6
- data/test/test_rexy.rb +2 -10
- metadata +3 -3
- data/lib/rexy/translator.rb +0 -16
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTc4MDFkMjQ0NjBhYjA3YzAwNDNkNTQ2NjUxOWVkNzVmN2Y1YzRjMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTI3YmNmNzlhNmY5YmUyNDJiMDM3MDA1MzRhMDUzMzYwZjYzY2VmZQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTk2NDZjN2NhNzQ1YTQ5NzhkNjk5YTQ3YzFhMWM1N2QyMmVmMTFlNDUyZjg3
|
10
|
+
ODdhZmNmMmZlOGM5M2Y2Mjk3MGNiOWRkNmZhNWNiY2FmMDU1Y2QzYzFjOGQy
|
11
|
+
Y2EyYzVkNGIyZmMxZDBkOTBhOWMwYTlhMmVkOGQ3MGI5NWEyNGU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZjBiNjlhOGZiMDU3MzY2YzliZTZjYmY0NWZhNDEwNzMyOWI1NTBkMTllYzk5
|
14
|
+
MWVjNmJkZjA1ZDAyODUyOGM4NmJkMTdmZTNmODg4MGNkZjQ4NDAxNGFiNTAw
|
15
|
+
NWRlN2ZiMGI5MWI2NGEzMDYyY2YyMzI0MGYwNmUzY2Y4NzNjYTA=
|
data/bin/rexy
CHANGED
data/lib/rexy.rb
CHANGED
data/test/test_rexy.rb
CHANGED
@@ -2,15 +2,7 @@ require 'test/unit'
|
|
2
2
|
require 'rexy'
|
3
3
|
|
4
4
|
class RexyTest < Test::Unit::TestCase
|
5
|
-
def
|
6
|
-
|
7
|
-
end
|
8
|
-
|
9
|
-
def test_any_hello
|
10
|
-
assert_equal "hello world", Rexy.hi("ruby")
|
11
|
-
end
|
12
|
-
|
13
|
-
def test_spanish_hello
|
14
|
-
assert_equal "rexy mundo", Rexy.hi("spanish")
|
5
|
+
def test_rexy
|
6
|
+
assert_match "Rexy", Rexy.hi
|
15
7
|
end
|
16
8
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rexy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claudio B
|
@@ -12,13 +12,13 @@ date: 2010-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
13
13
|
description: Rexy makes shit happen
|
14
14
|
email: claudiob@gmail.com
|
15
|
-
executables:
|
15
|
+
executables:
|
16
|
+
- rexy
|
16
17
|
extensions: []
|
17
18
|
extra_rdoc_files: []
|
18
19
|
files:
|
19
20
|
- Rakefile
|
20
21
|
- lib/rexy.rb
|
21
|
-
- lib/rexy/translator.rb
|
22
22
|
- bin/rexy
|
23
23
|
- test/test_rexy.rb
|
24
24
|
homepage: http://rubygems.org/gems/rexy
|
data/lib/rexy/translator.rb
DELETED