xdg 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/.ruby CHANGED
@@ -1,36 +1,45 @@
1
- ---
2
- spec_version: 1.0.0
3
- replaces: []
4
-
5
- loadpath:
6
- - lib
7
- name: xdg
8
- repositories: {}
9
-
1
+ ---
2
+ source:
3
+ - meta
4
+ authors:
5
+ - name: Trans
6
+ email: transfire@gmail.com
7
+ copyrights:
8
+ - holder: Rubyworks
9
+ year: '2008'
10
+ license: BSD-2-Clause
11
+ replacements: []
12
+ alternatives: []
13
+ requirements:
14
+ - name: detroit
15
+ groups:
16
+ - build
17
+ development: true
18
+ - name: qed
19
+ groups:
20
+ - test
21
+ development: true
22
+ dependencies: []
10
23
  conflicts: []
11
-
12
- engine_check: []
13
-
14
- title: XDG
15
- contact: Thomas Sawyer <transfire@gmail.com>
16
- resources:
17
- code: http://github.com/rubyworks/xdg
24
+ repositories:
25
+ - uri: git://github.com/proutils/xdg.git
26
+ scm: git
27
+ name: upstream
28
+ resources:
18
29
  home: http://rubyworks.github.com/xdg
19
- maintainers: []
20
-
21
- requires:
22
- - group:
23
- - test
24
- name: qed
25
- version: 0+
26
- manifest: Manifest.txt
27
- version: 2.2.0
28
- licenses:
29
- - Apache 2.0
30
- copyright: Copyright (c) 2008,2011 Thomas Sawyer
31
- authors:
32
- - Thomas Sawyer
33
- organization: RubyWorks
34
- description: XDG provides a module for supporting the XDG Base Directory Standard. See http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
30
+ code: http://github.com/rubyworks/xdg
31
+ mail: http://groups.goole.com/rubyworks-mailinglist
32
+ extra: {}
33
+ load_path:
34
+ - lib
35
+ revision: 0
36
+ created: '2008-09-27'
35
37
  summary: XDG provides an interface for using XDG directory standard.
36
- created: 2008-09-27
38
+ title: XDG
39
+ version: 2.2.2
40
+ name: xdg
41
+ description: ! 'XDG provides a module for supporting the XDG Base Directory Standard.
42
+
43
+ See http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html'
44
+ organization: Rubyworks
45
+ date: '2011-10-30'
@@ -1,6 +1,17 @@
1
1
  = RELEASE HISTORY
2
2
 
3
- == 2.2.0 / 2011-06-11
3
+ == 2.2.2 / 2011-10-30
4
+
5
+ Just a maintenance release to bring the build configuration
6
+ up to date. Also, change license to BSD-2-Clause.
7
+
8
+ Changes:
9
+
10
+ * Modernize build configuration
11
+ * Switch to BSD-2-Clause license.
12
+
13
+
14
+ == 2.2.1 / 2011-06-11
4
15
 
5
16
  This release changes BaseDir#to_s to return the first directory
6
17
  entry, and moves the old #to_s to #environment_with_defaults
@@ -13,7 +24,7 @@ Changes:
13
24
  * Modify #to_s to return first directory.
14
25
 
15
26
 
16
- == 2.1.0 / 2011-06-10
27
+ == 2.1.0 / 2011-06-09
17
28
 
18
29
  This release changes the BaseDir#list method, where as it used
19
30
  to be an alias for #to_a, it now differs in that it does not
@@ -1,8 +1,12 @@
1
1
  = XDG Standards for Ruby
2
2
 
3
- Author:: Thomas Sawyer
4
- Copyright:: (c) 2011 Thomas Sawyer
5
- License:: Apache 2.0
3
+ {Homepage}[http://rubyworks.github.com/xdg] |
4
+ {Source Code}[http://github.com/rubyworks/xdg] |
5
+ {Report Issue}[http://github.com/rubyworks/xdg/issues] |
6
+ {Mailing List}[http://googlegroups.com/group.rubyworks-mailinglist] |
7
+ <a href="irc://irc.freenode.net/rubyworks">Chat Room</a>
8
+
9
+ {<img src="http://travis-ci.org/rubyworks/xdg.png" />}[http://travis-ci.org/rubyworks/xdg]
6
10
 
7
11
 
8
12
  == Introduction
@@ -19,14 +23,6 @@ You can learn more about the standard at:
19
23
  http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
20
24
 
21
25
 
22
- == Resources
23
-
24
- * {Homepage}[http://rubyworks.github.com/xdg]
25
- * {Source Code}[http://github.com/rubyworks/xdg]
26
- * {Report an Issue}[http://github.com/rubyworks/xdg/issues]
27
- * {Mailing List}[http://googlegroups.com/group.rubyworks-mailinglist]
28
-
29
-
30
26
  == How to Use
31
27
 
32
28
  For working with XDG base directories, XDG provides a very simple
@@ -94,8 +90,8 @@ interface to a classes.
94
90
 
95
91
  === Legacy API
96
92
 
97
- Version 2.0+ of library marks are major departure from the earlier
98
- "fluid" notations of previous versions. Where as one used to do:
93
+ Version 2.0+ of library marks a major departure from the earlier
94
+ "fluid" notation of previous releases. Where as one used to do:
99
95
 
100
96
  XDG.data.home
101
97
 
@@ -115,7 +111,7 @@ need to load:
115
111
 
116
112
  However we STRONGLY RECOMMEND that you do not use the legacy API --use it only
117
113
  if you need to keep some old code working and don't have time to update it at
118
- them moment. Sometime in the future the legacy API will be deprecated.
114
+ the moment. Sometime in the future the legacy API will be deprecated.
119
115
 
120
116
 
121
117
  == How to Install
@@ -142,8 +138,9 @@ topic branch for your work, and submit a pull request.
142
138
 
143
139
  == Copyright & License
144
140
 
145
- Copyright (c) 2008, 2011 Thomas Sawyer
141
+ Copyright (c) 2008 Rubyworks
142
+
143
+ Distributed under the terms of the *FreeBSD* license.
146
144
 
147
- Distributed under the terms of the Apache 2.0 license.
145
+ See COPYING.rdoc file for details.
148
146
 
149
- See APACHE2.txt file for details.
@@ -1,8 +1,7 @@
1
1
  = Extended Base Directory Standard
2
2
 
3
- The extended base directory standard provides
4
-
5
- require 'xdg/base_dir/extended'
3
+ The extended base directory standard provides additional locations
4
+ not apart the offical standard. These are somewhat experimental.
6
5
 
7
6
  == Resource
8
7
 
@@ -11,7 +10,7 @@ The extended base directory standard provides
11
10
  XDG['RESOURCE_HOME'].environment_variables.assert == ['XDG_RESOURCE_HOME']
12
11
 
13
12
  Looking at the data home location by default it should be pointing to
14
- our joe user's home directory under `.local`.
13
+ our joe users home directory under `.local`.
15
14
 
16
15
  XDG['RESOURCE_HOME'].list.assert == ['~/.local']
17
16
 
@@ -27,7 +26,7 @@ The working configuration directory
27
26
  XDG['CONFIG_WORK'].environment_variables.assert == ['XDG_CONFIG_WORK']
28
27
 
29
28
  Looking at the config work location, by default it should be pointing to
30
- the current working directory's `.config` or `config` directory.
29
+ the current working directorys `.config` or `config` directory.
31
30
 
32
31
  XDG['CONFIG_WORK'].list.assert == ['.config', 'config']
33
32
 
@@ -40,7 +39,7 @@ The working cache directory
40
39
  XDG['CACHE_WORK'].environment_variables.assert == ['XDG_CACHE_WORK']
41
40
 
42
41
  Looking at the cache work location, by default it should be pointing to
43
- the current working directory's `.tmp` or `tmp` directory.
42
+ the current working directorys `.tmp` or `tmp` directory.
44
43
 
45
44
  XDG['CACHE_WORK'].list.assert == ['.tmp', 'tmp']
46
45
 
@@ -1,7 +1,5 @@
1
1
  = Base Directory Mixin
2
2
 
3
- require 'xdg/base_dir/mixin'
4
-
5
3
  The base directory mixin is used to easy augment a class for
6
4
  access to a named subdirectory of the XDG directories.
7
5
 
@@ -4,7 +4,7 @@ dir = File.expand_path(File.dirname(File.dirname(__FILE__)))
4
4
 
5
5
  $froot = File.join(dir, 'fixtures/fakeroot/')
6
6
 
7
- p $froot
7
+ puts "Fake root at: `#{$froot}'."
8
8
 
9
9
  #
10
10
  ENV['HOME'] = $froot + 'home/joe'
metadata CHANGED
@@ -1,45 +1,49 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: xdg
3
- version: !ruby/object:Gem::Version
4
- hash: 5
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.2
5
5
  prerelease:
6
- segments:
7
- - 2
8
- - 2
9
- - 1
10
- version: 2.2.1
11
6
  platform: ruby
12
- authors:
13
- - Thomas Sawyer
7
+ authors:
8
+ - Trans
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-06-10 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- name: qed
12
+ date: 2011-10-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: detroit
16
+ requirement: &25706280 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
22
23
  prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
+ version_requirements: *25706280
25
+ - !ruby/object:Gem::Dependency
26
+ name: qed
27
+ requirement: &25705740 !ruby/object:Gem::Requirement
24
28
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 3
29
- segments:
30
- - 0
31
- version: "0"
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
32
33
  type: :development
33
- version_requirements: *id001
34
- description: XDG provides a module for supporting the XDG Base Directory Standard. See http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
35
- email: transfire@gmail.com
36
- executables: []
34
+ prerelease: false
35
+ version_requirements: *25705740
36
+ description: ! 'XDG provides a module for supporting the XDG Base Directory Standard.
37
37
 
38
+ See http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html'
39
+ email:
40
+ - transfire@gmail.com
41
+ executables: []
38
42
  extensions: []
39
-
40
- extra_rdoc_files:
43
+ extra_rdoc_files:
44
+ - HISTORY.rdoc
41
45
  - README.rdoc
42
- files:
46
+ files:
43
47
  - .ruby
44
48
  - lib/xdg/base_dir/extended.rb
45
49
  - lib/xdg/base_dir/global_variables.rb
@@ -66,44 +70,30 @@ files:
66
70
  - test/fakeroot/usr/share/bar.dat
67
71
  - test/test_xdg_legacy.rb
68
72
  - HISTORY.rdoc
69
- - APACHE2.txt
70
73
  - README.rdoc
71
74
  homepage: http://rubyworks.github.com/xdg
72
- licenses:
73
- - Apache 2.0
74
- - Apache 2.0
75
+ licenses:
76
+ - BSD-2-Clause
75
77
  post_install_message:
76
- rdoc_options:
77
- - --title
78
- - XDG API
79
- - --main
80
- - README.rdoc
81
- require_paths:
78
+ rdoc_options: []
79
+ require_paths:
82
80
  - lib
83
- required_ruby_version: !ruby/object:Gem::Requirement
81
+ required_ruby_version: !ruby/object:Gem::Requirement
84
82
  none: false
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- hash: 3
89
- segments:
90
- - 0
91
- version: "0"
92
- required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
88
  none: false
94
- requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- hash: 3
98
- segments:
99
- - 0
100
- version: "0"
89
+ requirements:
90
+ - - ! '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
101
93
  requirements: []
102
-
103
- rubyforge_project: xdg
104
- rubygems_version: 1.8.2
94
+ rubyforge_project:
95
+ rubygems_version: 1.8.10
105
96
  signing_key:
106
97
  specification_version: 3
107
98
  summary: XDG provides an interface for using XDG directory standard.
108
99
  test_files: []
109
-
@@ -1,204 +0,0 @@
1
- .
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
178
-
179
- APPENDIX: How to apply the Apache License to your work.
180
-
181
- To apply the Apache License to your work, attach the following
182
- boilerplate notice, with the fields enclosed by brackets "[]"
183
- replaced with your own identifying information. (Don't include
184
- the brackets!) The text should be enclosed in the appropriate
185
- comment syntax for the file format. We also recommend that a
186
- file or class name and description of purpose be included on the
187
- same "printed page" as the copyright notice for easier
188
- identification within third-party archives.
189
-
190
- Copyright [yyyy] [name of copyright owner]
191
-
192
- Licensed under the Apache License, Version 2.0 (the "License");
193
- you may not use this file except in compliance with the License.
194
- You may obtain a copy of the License at
195
-
196
- http://www.apache.org/licenses/LICENSE-2.0
197
-
198
- Unless required by applicable law or agreed to in writing, software
199
- distributed under the License is distributed on an "AS IS" BASIS,
200
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
- See the License for the specific language governing permissions and
202
- limitations under the License.
203
-
204
-