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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e280cf4a9f0026bdb53630862a6b1fc39ed8f06d
4
- data.tar.gz: 5ee7e66d984b51d314473724c48a17db9f858597
3
+ metadata.gz: 4bd726ed8f1b87a466eb5b3ec569f874b46b3bd4
4
+ data.tar.gz: 087bfe2011592e0f891e54bb928e0fe254fee56d
5
5
  SHA512:
6
- metadata.gz: 4634a679a33a5ef345adc1f436fcd2a6187b236920dd719fbd238cd06ecc1276b4b1529f400aa237ee9d6b2ab4ed88a137898637b3b32e2fff316cae168ff041
7
- data.tar.gz: 551c48b750f1eed6a80ffad345acf595dbb6c71e4f291ad793d211502112021224703253e0ebedc6fd40807eb3c9910295b88ec293dabd10a6fff6a7cb75e150
6
+ metadata.gz: f6ccb146e06fbbeea9923023594169ec94bc1fcd9a9fbd7b24a791951822eaca311dfaaa8df94ea7dbb3bd89ae4db51e04549c726ee8e340291a76c66a2e9b14
7
+ data.tar.gz: bbd894d83943dbe3f9001bf51403381e97fa0a15e790da22d6d4fdfc0008d770865b19855992709cafe0ad55942f43f1ad284ef8e151af83f585c5958cc52679
@@ -1,8 +1,7 @@
1
1
  language: ruby
2
- before_install:
3
- - gem update --system
4
- - gem --version
5
- - gem install rubysl-bundler
6
- script: bundle exec mspec spec
2
+ env:
3
+ - RUBYLIB=lib
4
+ script: bundle exec mspec
7
5
  rvm:
8
- - rbx-nightly-18mode
6
+ - 1.9.3
7
+ - rbx-nightly-19mode
@@ -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. Thread local.
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. Thread local.
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. Thread local.
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. Thread local.
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. Thread local.
184
+ # current scope. Read only.
155
185
  alias $LAST_PAREN_MATCH $+
@@ -1,5 +1,5 @@
1
1
  module RubySL
2
2
  module English
3
- VERSION = "1.0.0"
3
+ VERSION = "2.0.0"
4
4
  end
5
5
  end
@@ -19,5 +19,4 @@ Gem::Specification.new do |spec|
19
19
  spec.add_development_dependency "bundler", "~> 1.3"
20
20
  spec.add_development_dependency "rake", "~> 10.0"
21
21
  spec.add_development_dependency "mspec", "~> 1.5"
22
- spec.add_development_dependency "rubysl-prettyprint", "~> 1.0"
23
22
  end
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: 1.0.0
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-12-26 00:00:00.000000000 Z
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