locale 2.0.7 → 2.0.8

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.
@@ -0,0 +1,6 @@
1
+ --protected
2
+ --no-private
3
+ --output doc/reference
4
+ --title "locale API Reference"
5
+ -
6
+ doc/text/*
@@ -1,5 +1,13 @@
1
1
  # News
2
2
 
3
+ ## <a id="2-0-8">2.0.8</a>: 2012-08-29
4
+
5
+ Package fix release.
6
+
7
+ ### Fixes
8
+
9
+ * Added missing .yardopts file.
10
+
3
11
  ## <a id="2-0-7">2.0.7</a>: 2012-08-29
4
12
 
5
13
  Package fix release.
@@ -36,7 +44,7 @@ Ruby 1.9 on Windows support release.
36
44
  * Fixed a problem that tests for Windows break other tests on non
37
45
  Windows platform. [Patch by J. Pablo Fernández]
38
46
  * [jruby] Fixed wrong variant format.
39
- [GitHub#mutoh/locale#5] [Patch by Hleb Valoshka.]
47
+ [GitHub#mutoh/locale#5] [Patch by Hleb Valoshka]
40
48
  * Fixed wrong environment variable check. `LC_CTYPES` is checked
41
49
  instead of `LC_MESSAGES`.
42
50
  [GitHub#mutoh/locale#5] [Debian#520181]
@@ -50,3 +58,4 @@ Ruby 1.9 on Windows support release.
50
58
  * J. Pablo Fernández
51
59
  * Martin Hradil
52
60
  * Hleb Valoshka
61
+ * Adeodato Simó
@@ -7,6 +7,6 @@
7
7
  license terms as Ruby.
8
8
  =end
9
9
  module Locale
10
- VERSION = "2.0.7"
10
+ VERSION = "2.0.8"
11
11
  end
12
12
 
@@ -38,7 +38,7 @@ Ruby-Locale is the pure ruby library which provides basic APIs for localization.
38
38
  File.file?(path)
39
39
  end
40
40
  s.files += ["COPYING", "ChangeLog", "README.rdoc", "Rakefile"]
41
- s.files += ["Gemfile", "#{s.name}.gemspec"]
41
+ s.files += ["Gemfile", "#{s.name}.gemspec", ".yardopts"]
42
42
  s.files += Dir.glob("doc/text/*.*")
43
43
  s.test_files = Dir.glob("test/test_*.rb")
44
44
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: locale
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -135,58 +135,59 @@ executables: []
135
135
  extensions: []
136
136
  extra_rdoc_files: []
137
137
  files:
138
+ - lib/locale/tag/simple.rb
139
+ - lib/locale/tag/posix.rb
140
+ - lib/locale/tag/common.rb
141
+ - lib/locale/tag/cldr.rb
142
+ - lib/locale/tag/rfc.rb
143
+ - lib/locale/tag/irregular.rb
144
+ - lib/locale/info.rb
138
145
  - lib/locale/data/languages.tab.gz
139
146
  - lib/locale/data/regions.tab.gz
140
147
  - lib/locale/middleware.rb
148
+ - lib/locale/version.rb
141
149
  - lib/locale/info/region.rb
142
150
  - lib/locale/info/language.rb
143
- - lib/locale/driver/win32.rb
144
- - lib/locale/driver/win32_table.rb
145
- - lib/locale/driver/jruby.rb
146
- - lib/locale/driver/posix.rb
147
151
  - lib/locale/driver/env.rb
152
+ - lib/locale/driver/posix.rb
153
+ - lib/locale/driver/jruby.rb
148
154
  - lib/locale/driver/cgi.rb
149
- - lib/locale/tag/cldr.rb
150
- - lib/locale/tag/simple.rb
151
- - lib/locale/tag/common.rb
152
- - lib/locale/tag/posix.rb
153
- - lib/locale/tag/rfc.rb
154
- - lib/locale/tag/irregular.rb
155
- - lib/locale/version.rb
156
- - lib/locale/util/memoizable.rb
157
- - lib/locale/tag.rb
158
- - lib/locale/info.rb
159
- - lib/locale/driver.rb
155
+ - lib/locale/driver/win32_table.rb
156
+ - lib/locale/driver/win32.rb
160
157
  - lib/locale/taglist.rb
158
+ - lib/locale/driver.rb
159
+ - lib/locale/tag.rb
160
+ - lib/locale/util/memoizable.rb
161
161
  - lib/locale.rb
162
- - samples/sample_1.rb
162
+ - samples/rack/hello_rack.rb
163
163
  - samples/rack/README
164
- - samples/rack/hello_rack.ru
165
164
  - samples/rack/locale_rack.rb
166
- - samples/rack/hello_rack.rb
167
- - samples/sample_info.rb
165
+ - samples/rack/hello_rack.ru
168
166
  - samples/cgi/README
169
- - samples/cgi/http.rb
170
167
  - samples/cgi/cookie.cgi
171
- - samples/cgi/index.cgi
172
168
  - samples/cgi/locale.css
169
+ - samples/cgi/index.cgi
170
+ - samples/cgi/http.rb
171
+ - samples/sample_info.rb
172
+ - samples/sample_1.rb
173
173
  - COPYING
174
174
  - ChangeLog
175
175
  - README.rdoc
176
176
  - Rakefile
177
177
  - Gemfile
178
178
  - locale.gemspec
179
+ - .yardopts
179
180
  - doc/text/news.md
180
- - test/test_thread.rb
181
- - test/test_info.rb
181
+ - test/test_driver_jruby.rb
182
182
  - test/test_taglist.rb
183
- - test/test_driver_win32.rb
184
183
  - test/test_detect_general.rb
185
- - test/test_locale.rb
184
+ - test/test_driver_win32.rb
185
+ - test/test_thread.rb
186
186
  - test/test_memoizable.rb
187
187
  - test/test_detect_cgi.rb
188
+ - test/test_locale.rb
189
+ - test/test_info.rb
188
190
  - test/test_tag.rb
189
- - test/test_driver_jruby.rb
190
191
  homepage: https://github.com/ruby-gettext/locale
191
192
  licenses: []
192
193
  post_install_message:
@@ -212,13 +213,14 @@ signing_key:
212
213
  specification_version: 3
213
214
  summary: Ruby-Locale is the pure ruby library which provides basic APIs for localization.
214
215
  test_files:
215
- - test/test_thread.rb
216
- - test/test_info.rb
216
+ - test/test_driver_jruby.rb
217
217
  - test/test_taglist.rb
218
- - test/test_driver_win32.rb
219
218
  - test/test_detect_general.rb
220
- - test/test_locale.rb
219
+ - test/test_driver_win32.rb
220
+ - test/test_thread.rb
221
221
  - test/test_memoizable.rb
222
222
  - test/test_detect_cgi.rb
223
+ - test/test_locale.rb
224
+ - test/test_info.rb
223
225
  - test/test_tag.rb
224
- - test/test_driver_jruby.rb
226
+ has_rdoc: