rubysl-english 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -6
- data/lib/rubysl/english/English.rb +41 -11
- data/lib/rubysl/english/version.rb +1 -1
- data/rubysl-english.gemspec +0 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bd726ed8f1b87a466eb5b3ec569f874b46b3bd4
|
4
|
+
data.tar.gz: 087bfe2011592e0f891e54bb928e0fe254fee56d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6ccb146e06fbbeea9923023594169ec94bc1fcd9a9fbd7b24a791951822eaca311dfaaa8df94ea7dbb3bd89ae4db51e04549c726ee8e340291a76c66a2e9b14
|
7
|
+
data.tar.gz: bbd894d83943dbe3f9001bf51403381e97fa0a15e790da22d6d4fdfc0008d770865b19855992709cafe0ad55942f43f1ad284ef8e151af83f585c5958cc52679
|
data/.travis.yml
CHANGED
@@ -11,11 +11,41 @@
|
|
11
11
|
# With English:
|
12
12
|
#
|
13
13
|
# require "English"
|
14
|
-
#
|
14
|
+
#
|
15
15
|
# $OUTPUT_FIELD_SEPARATOR = ' -- '
|
16
16
|
# "waterbuffalo" =~ /buff/
|
17
17
|
# print $LOADED_FEATURES, $POSTMATCH, $PID, "\n"
|
18
|
-
|
18
|
+
#
|
19
|
+
# Below is a full list of descriptive aliases and their associated global
|
20
|
+
# variable:
|
21
|
+
#
|
22
|
+
# $ERROR_INFO:: $!
|
23
|
+
# $ERROR_POSITION:: $@
|
24
|
+
# $FS:: $;
|
25
|
+
# $FIELD_SEPARATOR:: $;
|
26
|
+
# $OFS:: $,
|
27
|
+
# $OUTPUT_FIELD_SEPARATOR:: $,
|
28
|
+
# $RS:: $/
|
29
|
+
# $INPUT_RECORD_SEPARATOR:: $/
|
30
|
+
# $ORS:: $\
|
31
|
+
# $OUTPUT_RECORD_SEPARATOR:: $\
|
32
|
+
# $INPUT_LINE_NUMBER:: $.
|
33
|
+
# $NR:: $.
|
34
|
+
# $LAST_READ_LINE:: $_
|
35
|
+
# $DEFAULT_OUTPUT:: $>
|
36
|
+
# $DEFAULT_INPUT:: $<
|
37
|
+
# $PID:: $$
|
38
|
+
# $PROCESS_ID:: $$
|
39
|
+
# $CHILD_STATUS:: $?
|
40
|
+
# $LAST_MATCH_INFO:: $~
|
41
|
+
# $IGNORECASE:: $=
|
42
|
+
# $ARGV:: $*
|
43
|
+
# $MATCH:: $&
|
44
|
+
# $PREMATCH:: $`
|
45
|
+
# $POSTMATCH:: $'
|
46
|
+
# $LAST_PAREN_MATCH:: $+
|
47
|
+
#
|
48
|
+
module English end if false
|
19
49
|
|
20
50
|
# The exception object passed to +raise+.
|
21
51
|
alias $ERROR_INFO $!
|
@@ -83,7 +113,7 @@ alias $DEFAULT_OUTPUT $>
|
|
83
113
|
# of the contents of all the files
|
84
114
|
# given as command-line arguments, or <tt>$stdin</tt>
|
85
115
|
# (in the case where there are no
|
86
|
-
# arguments). <tt>$<</tt> supports methods similar to a
|
116
|
+
# arguments). <tt>$<</tt> supports methods similar to a
|
87
117
|
# +File+ object:
|
88
118
|
# +inmode+, +close+,
|
89
119
|
# <tt>closed?</tt>, +each+,
|
@@ -91,7 +121,7 @@ alias $DEFAULT_OUTPUT $>
|
|
91
121
|
# +eof+, <tt>eof?</tt>, +file+,
|
92
122
|
# +filename+, +fileno+,
|
93
123
|
# +getc+, +gets+, +lineno+,
|
94
|
-
# <tt>lineno=</tt>, +path+,
|
124
|
+
# <tt>lineno=</tt>, +path+,
|
95
125
|
# +pos+, <tt>pos=</tt>,
|
96
126
|
# +read+, +readchar+,
|
97
127
|
# +readline+, +readlines+,
|
@@ -119,7 +149,7 @@ alias $CHILD_STATUS $?
|
|
119
149
|
# and <tt>$1</tt> to <tt>$9</tt> are all derived from
|
120
150
|
# <tt>$~</tt>. Assigning to <tt>$~</tt> changes the values of these
|
121
151
|
# derived variables. This variable is local to the current
|
122
|
-
# scope.
|
152
|
+
# scope.
|
123
153
|
alias $LAST_MATCH_INFO $~
|
124
154
|
|
125
155
|
# If set to any value apart from +nil+ or +false+, all pattern matches
|
@@ -135,21 +165,21 @@ alias $ARGV $*
|
|
135
165
|
|
136
166
|
# The string matched by the last successful pattern
|
137
167
|
# match. This variable is local to the current
|
138
|
-
# scope. Read only.
|
168
|
+
# scope. Read only.
|
139
169
|
alias $MATCH $&
|
140
170
|
|
141
171
|
# The string preceding the match in the last
|
142
|
-
# successful pattern match. This variable is local to
|
143
|
-
# the current scope. Read only.
|
172
|
+
# successful pattern match. This variable is local to
|
173
|
+
# the current scope. Read only.
|
144
174
|
alias $PREMATCH $`
|
145
175
|
|
146
176
|
# The string following the match in the last
|
147
|
-
# successful pattern match. This variable is local to
|
148
|
-
# the current scope. Read only.
|
177
|
+
# successful pattern match. This variable is local to
|
178
|
+
# the current scope. Read only.
|
149
179
|
alias $POSTMATCH $'
|
150
180
|
|
151
181
|
# The contents of the highest-numbered group matched in the last
|
152
182
|
# successful pattern match. Thus, in <tt>"cat" =~ /(c|a)(t|z)/</tt>,
|
153
183
|
# <tt>$+</tt> will be set to "t". This variable is local to the
|
154
|
-
# current scope. Read only.
|
184
|
+
# current scope. Read only.
|
155
185
|
alias $LAST_PAREN_MATCH $+
|
data/rubysl-english.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubysl-english
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Shirai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,20 +52,6 @@ dependencies:
|
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.5'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rubysl-prettyprint
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ~>
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '1.0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ~>
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '1.0'
|
69
55
|
description: Ruby standard library english.
|
70
56
|
email:
|
71
57
|
- brixen@gmail.com
|