locale 2.0.4 → 2.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/COPYING +9 -8
  2. data/ChangeLog +4 -0
  3. data/README.rdoc +4 -4
  4. data/lib/locale/version.rb +1 -1
  5. metadata +42 -51
data/COPYING CHANGED
@@ -1,5 +1,6 @@
1
- You can redistribute this program and/or modify it under either the terms of
2
- the LGPL (see the file LGPL), or the conditions below:
1
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
2
+ You can redistribute it and/or modify it under either the terms of the GPL
3
+ version 2 (see the file GPL), or the conditions below:
3
4
 
4
5
  1. You may make and give away verbatim copies of the source form of the
5
6
  software without restriction, provided that you duplicate all of the
@@ -16,22 +17,22 @@ the LGPL (see the file LGPL), or the conditions below:
16
17
  b) use the modified software only within your corporation or
17
18
  organization.
18
19
 
19
- c) rename any non-standard executables so the names do not conflict
20
- with standard executables, which must also be provided.
20
+ c) give non-standard binaries non-standard names, with
21
+ instructions on where to get the original software distribution.
21
22
 
22
23
  d) make other distribution arrangements with the author.
23
24
 
24
- 3. You may distribute the software in object code or executable
25
- form, provided that you do at least ONE of the following:
25
+ 3. You may distribute the software in object code or binary form,
26
+ provided that you do at least ONE of the following:
26
27
 
27
- a) distribute the executables and library files of the software,
28
+ a) distribute the binaries and library files of the software,
28
29
  together with instructions (in the manual page or equivalent)
29
30
  on where to get the original distribution.
30
31
 
31
32
  b) accompany the distribution with the machine-readable source of
32
33
  the software.
33
34
 
34
- c) give non-standard executables non-standard names, with
35
+ c) give non-standard binaries non-standard names, with
35
36
  instructions on where to get the original software distribution.
36
37
 
37
38
  d) make other distribution arrangements with the author.
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ = locale-2.0.5 (2009-11-11)
2
+ * Update license information(obiviously Ruby's and LGPL).
3
+ [Pointed out by Masateru Yoshikawa]
4
+
1
5
  = locale-2.0.4 (2009-05-22)
2
6
  * Enhance Win32 support. [Reported by Dice]
3
7
  * Enhance JRuby support
data/README.rdoc CHANGED
@@ -55,20 +55,20 @@ The most important APIs are defined in Locale module.
55
55
  * Locale.set_app_language_tags - Sets the locale that is supported by the App.
56
56
 
57
57
  == License
58
- This program is licenced under the same licence as Ruby.
59
- (See the file 'COPYING'.)
58
+ This program is licenced under the same licence as Ruby(See COPYING) or
59
+ LGPL(Lesser General Public License: http://www.gnu.org/licenses/lgpl-3.0.txt).
60
60
 
61
61
  * locale/language.rb, locale/region.rb,
62
62
  locale/data/language.tab.gz, locale/data/region.tab.gz:
63
63
  * Copyright (C) 2006 Brian Pontarelli, Antonio Terceiro
64
- * Copyright (C) 2008 Masao Mutoh <mutomasa at gmail.com>
64
+ * Copyright (C) 2008,2009 Masao Mutoh <mutomasa at gmail.com>
65
65
 
66
66
  * setup.rb version 3.4.1
67
67
  * Copyright (C) 2000-2005 Minero Aoki <aamine at loveruby.net>
68
68
  * This file is released under LGPL. See the top of the setup.rb.
69
69
 
70
70
  * Others(Some files are separated from Ruby-GetText-Package-1.92.0)
71
- * Copyright (C) 2008 Masao Mutoh <mutoh at highwhay.ne.jp>
71
+ * Copyright (C) 2008,2009 Masao Mutoh <mutoh at highwhay.ne.jp>
72
72
 
73
73
  == References
74
74
  === Other libraries
@@ -7,6 +7,6 @@
7
7
  license terms as Ruby.
8
8
  =end
9
9
  module Locale
10
- VERSION = "2.0.4"
10
+ VERSION = "2.0.5"
11
11
  end
12
12
 
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.4
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masao Mutoh
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-23 00:00:00 +09:00
12
+ date: 2009-11-14 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Ruby-Locale is the pure ruby library which provides basic APIs for localization.
16
+ description: " Ruby-Locale is the pure ruby library which provides basic APIs for localization.\n"
17
17
  email: mutomasa at gmail.com
18
18
  executables: []
19
19
 
@@ -22,65 +22,56 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - ChangeLog
26
- - samples
27
- - samples/sample_info.rb
28
- - samples/rack
29
- - samples/rack/README
30
- - samples/rack/hello_rack.rb
31
- - samples/rack/hello_rack.ru
32
- - samples/sample_1.rb
33
- - samples/cgi
34
- - samples/cgi/cookie.cgi
35
- - samples/cgi/index.cgi
36
- - samples/cgi/locale.css
37
- - samples/cgi/http.rb
38
- - samples/cgi/README
39
- - setup.rb
40
- - COPYING
41
- - lib
42
- - lib/locale
43
- - lib/locale/driver
44
- - lib/locale/driver/env.rb
45
- - lib/locale/driver/jruby.rb
46
- - lib/locale/driver/posix.rb
47
- - lib/locale/driver/win32_table.rb
48
- - lib/locale/driver/win32.rb
49
- - lib/locale/driver/cgi.rb
50
- - lib/locale/info.rb
51
- - lib/locale/version.rb
52
- - lib/locale/tag.rb
53
- - lib/locale/tag
54
- - lib/locale/tag/cldr.rb
55
- - lib/locale/tag/common.rb
56
- - lib/locale/tag/rfc.rb
57
- - lib/locale/tag/irregular.rb
25
+ - lib/locale.rb
58
26
  - lib/locale/tag/posix.rb
27
+ - lib/locale/tag/irregular.rb
28
+ - lib/locale/tag/rfc.rb
59
29
  - lib/locale/tag/simple.rb
60
- - lib/locale/info
61
- - lib/locale/info/language.rb
62
- - lib/locale/info/region.rb
30
+ - lib/locale/tag/cldr.rb
31
+ - lib/locale/tag/common.rb
63
32
  - lib/locale/taglist.rb
64
- - lib/locale/util
33
+ - lib/locale/driver/posix.rb
34
+ - lib/locale/driver/win32.rb
35
+ - lib/locale/driver/win32_table.rb
36
+ - lib/locale/driver/jruby.rb
37
+ - lib/locale/driver/env.rb
38
+ - lib/locale/driver/cgi.rb
65
39
  - lib/locale/util/memoizable.rb
66
- - lib/locale/data
67
40
  - lib/locale/data/regions.tab.gz
68
41
  - lib/locale/data/languages.tab.gz
69
- - lib/locale.rb
70
- - README.rdoc
71
- - test
72
- - test/test_detect_general.rb
73
- - test/test_driver_win32.rb
42
+ - lib/locale/info/region.rb
43
+ - lib/locale/info/language.rb
44
+ - lib/locale/version.rb
45
+ - lib/locale/info.rb
46
+ - lib/locale/tag.rb
47
+ - setup.rb
48
+ - test/test_tag.rb
49
+ - test/test_memoizable.rb
74
50
  - test/test_driver_jruby.rb
75
51
  - test/test_info.rb
76
- - test/test_memoizable.rb
77
- - test/test_thread.rb
52
+ - test/test_driver_win32.rb
53
+ - test/test_detect_general.rb
78
54
  - test/test_taglist.rb
79
- - test/test_tag.rb
80
55
  - test/test_detect_cgi.rb
56
+ - test/test_thread.rb
81
57
  - Rakefile
58
+ - README.rdoc
59
+ - ChangeLog
60
+ - COPYING
61
+ - samples/rack/hello_rack.ru
62
+ - samples/rack/hello_rack.rb
63
+ - samples/rack/README
64
+ - samples/sample_info.rb
65
+ - samples/cgi/http.rb
66
+ - samples/cgi/locale.css
67
+ - samples/cgi/index.cgi
68
+ - samples/cgi/README
69
+ - samples/cgi/cookie.cgi
70
+ - samples/sample_1.rb
82
71
  has_rdoc: true
83
72
  homepage: http://locale.rubyforge.org/
73
+ licenses: []
74
+
84
75
  post_install_message:
85
76
  rdoc_options: []
86
77
 
@@ -101,9 +92,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
92
  requirements: []
102
93
 
103
94
  rubyforge_project: locale
104
- rubygems_version: 1.3.1
95
+ rubygems_version: 1.3.5
105
96
  signing_key:
106
- specification_version: 2
97
+ specification_version: 3
107
98
  summary: Ruby-Locale is the pure ruby library which provides basic APIs for localization.
108
99
  test_files: []
109
100