contextr 1.0.1 → 1.0.2
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.
- data.tar.gz.sig +0 -0
- data/{COPYING.txt → GPL.txt} +0 -0
- data/History.txt +5 -0
- data/LICENSE.txt +2 -57
- data/MIT.txt +24 -0
- data/Manifest.txt +3 -1
- data/README.txt +2 -2
- data/RUBY.txt +59 -0
- data/lib/contextr/version.rb +1 -1
- metadata +8 -4
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/{COPYING.txt → GPL.txt}
RENAMED
|
File without changes
|
data/History.txt
CHANGED
data/LICENSE.txt
CHANGED
|
@@ -1,59 +1,4 @@
|
|
|
1
1
|
ContextR is copyrighted free software by Gregor Schmidt <ruby@schmidtwisser.de>,
|
|
2
2
|
Software-Architecture-Group, Hasso-Plattner-Institute, Potsdam, Germany.
|
|
3
|
-
You can redistribute it and/or modify it under either the terms of
|
|
4
|
-
(see
|
|
5
|
-
|
|
6
|
-
1. You may make and give away verbatim copies of the source form of the
|
|
7
|
-
software without restriction, provided that you duplicate all of the
|
|
8
|
-
original copyright notices and associated disclaimers.
|
|
9
|
-
|
|
10
|
-
2. You may modify your copy of the software in any way, provided that
|
|
11
|
-
you do at least ONE of the following:
|
|
12
|
-
|
|
13
|
-
a) place your modifications in the Public Domain or otherwise
|
|
14
|
-
make them Freely Available, such as by posting said
|
|
15
|
-
modifications to Usenet or an equivalent medium, or by allowing
|
|
16
|
-
the author to include your modifications in the software.
|
|
17
|
-
|
|
18
|
-
b) use the modified software only within your corporation or
|
|
19
|
-
organization.
|
|
20
|
-
|
|
21
|
-
c) rename any non-standard executables so the names do not conflict
|
|
22
|
-
with standard executables, which must also be provided.
|
|
23
|
-
|
|
24
|
-
d) make other distribution arrangements with the author.
|
|
25
|
-
|
|
26
|
-
3. You may distribute the software in object code or executable
|
|
27
|
-
form, provided that you do at least ONE of the following:
|
|
28
|
-
|
|
29
|
-
a) distribute the executables and library files of the software,
|
|
30
|
-
together with instructions (in the manual page or equivalent)
|
|
31
|
-
on where to get the original distribution.
|
|
32
|
-
|
|
33
|
-
b) accompany the distribution with the machine-readable source of
|
|
34
|
-
the software.
|
|
35
|
-
|
|
36
|
-
c) give non-standard executables non-standard names, with
|
|
37
|
-
instructions on where to get the original software distribution.
|
|
38
|
-
|
|
39
|
-
d) make other distribution arrangements with the author.
|
|
40
|
-
|
|
41
|
-
4. You may modify and include the part of the software into any other
|
|
42
|
-
software (possibly commercial). But some files in the distribution
|
|
43
|
-
are not written by the author, so that they are not under this terms.
|
|
44
|
-
|
|
45
|
-
They are all files except those under benchmark, lib, spec, and test
|
|
46
|
-
but including the lib/ext directory. See each file for the copying
|
|
47
|
-
condition.
|
|
48
|
-
|
|
49
|
-
5. The scripts and library files supplied as input to or produced as
|
|
50
|
-
output from the software do not automatically fall under the
|
|
51
|
-
copyright of the software, but belong to whomever generated them,
|
|
52
|
-
and may be sold commercially, and may be aggregated with this
|
|
53
|
-
software.
|
|
54
|
-
|
|
55
|
-
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
|
56
|
-
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
57
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
58
|
-
PURPOSE.
|
|
59
|
-
|
|
3
|
+
You can redistribute it and/or modify it under either the terms of an MIT-style
|
|
4
|
+
license (see MIT.txt) or the same conditions as Ruby (see RUBY.txt).
|
data/MIT.txt
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Copyright (c) 2007 - Gregor Schmidt <ruby@schmidtwisser.de>
|
|
2
|
+
Software-Architecture-Group, Hasso-Plattner-Institute, Potsdam, Germany
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person
|
|
5
|
+
obtaining a copy of this software and associated documentation
|
|
6
|
+
files (the "Software"), to deal in the Software without
|
|
7
|
+
restriction, including without limitation the rights to use,
|
|
8
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the
|
|
10
|
+
Software is furnished to do so, subject to the following
|
|
11
|
+
conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
18
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
20
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
21
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
22
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
23
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
24
|
+
|
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
|
@@ -9,8 +9,8 @@ For more information see
|
|
|
9
9
|
- http://www.contextr.org/ or
|
|
10
10
|
- http://www.swa.hpi.uni-potsdam.de/cop/
|
|
11
11
|
|
|
12
|
-
This code is published under the same
|
|
13
|
-
information.
|
|
12
|
+
This code is published under an MIT-style license or the same terms as Ruby.
|
|
13
|
+
See LICENSE.txt for more information.
|
|
14
14
|
|
|
15
15
|
(c) 2007 - Gregor Schmidt - Berlin, Germany
|
|
16
16
|
Software-Architecture-Group, Hasso-Plattner-Institute, Potsdam, Germany
|
data/RUBY.txt
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
ContextR is copyrighted free software by Gregor Schmidt <ruby@schmidtwisser.de>,
|
|
2
|
+
Software-Architecture-Group, Hasso-Plattner-Institute, Potsdam, Germany.
|
|
3
|
+
You can redistribute it and/or modify it under either the terms of the GPL
|
|
4
|
+
(see GPL.txt file), or the conditions below:
|
|
5
|
+
|
|
6
|
+
1. You may make and give away verbatim copies of the source form of the
|
|
7
|
+
software without restriction, provided that you duplicate all of the
|
|
8
|
+
original copyright notices and associated disclaimers.
|
|
9
|
+
|
|
10
|
+
2. You may modify your copy of the software in any way, provided that
|
|
11
|
+
you do at least ONE of the following:
|
|
12
|
+
|
|
13
|
+
a) place your modifications in the Public Domain or otherwise
|
|
14
|
+
make them Freely Available, such as by posting said
|
|
15
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
|
16
|
+
the author to include your modifications in the software.
|
|
17
|
+
|
|
18
|
+
b) use the modified software only within your corporation or
|
|
19
|
+
organization.
|
|
20
|
+
|
|
21
|
+
c) rename any non-standard executables so the names do not conflict
|
|
22
|
+
with standard executables, which must also be provided.
|
|
23
|
+
|
|
24
|
+
d) make other distribution arrangements with the author.
|
|
25
|
+
|
|
26
|
+
3. You may distribute the software in object code or executable
|
|
27
|
+
form, provided that you do at least ONE of the following:
|
|
28
|
+
|
|
29
|
+
a) distribute the executables and library files of the software,
|
|
30
|
+
together with instructions (in the manual page or equivalent)
|
|
31
|
+
on where to get the original distribution.
|
|
32
|
+
|
|
33
|
+
b) accompany the distribution with the machine-readable source of
|
|
34
|
+
the software.
|
|
35
|
+
|
|
36
|
+
c) give non-standard executables non-standard names, with
|
|
37
|
+
instructions on where to get the original software distribution.
|
|
38
|
+
|
|
39
|
+
d) make other distribution arrangements with the author.
|
|
40
|
+
|
|
41
|
+
4. You may modify and include the part of the software into any other
|
|
42
|
+
software (possibly commercial). But some files in the distribution
|
|
43
|
+
are not written by the author, so that they are not under this terms.
|
|
44
|
+
|
|
45
|
+
They are all files except those under benchmark, lib, spec, and test
|
|
46
|
+
but including the lib/ext directory. See each file for the copying
|
|
47
|
+
condition.
|
|
48
|
+
|
|
49
|
+
5. The scripts and library files supplied as input to or produced as
|
|
50
|
+
output from the software do not automatically fall under the
|
|
51
|
+
copyright of the software, but belong to whomever generated them,
|
|
52
|
+
and may be sold commercially, and may be aggregated with this
|
|
53
|
+
software.
|
|
54
|
+
|
|
55
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
|
56
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
57
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
58
|
+
PURPOSE.
|
|
59
|
+
|
data/lib/contextr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: contextr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregor Schmidt
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
y3O9DT3o4BiyPe77
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
32
|
|
|
33
|
-
date: 2008-04-
|
|
33
|
+
date: 2008-04-28 00:00:00 +02:00
|
|
34
34
|
default_executable:
|
|
35
35
|
dependencies: []
|
|
36
36
|
|
|
@@ -41,17 +41,21 @@ executables: []
|
|
|
41
41
|
extensions: []
|
|
42
42
|
|
|
43
43
|
extra_rdoc_files:
|
|
44
|
-
-
|
|
44
|
+
- GPL.txt
|
|
45
45
|
- History.txt
|
|
46
46
|
- LICENSE.txt
|
|
47
|
+
- MIT.txt
|
|
47
48
|
- Manifest.txt
|
|
48
49
|
- README.txt
|
|
50
|
+
- RUBY.txt
|
|
49
51
|
files:
|
|
50
|
-
-
|
|
52
|
+
- GPL.txt
|
|
51
53
|
- History.txt
|
|
52
54
|
- LICENSE.txt
|
|
55
|
+
- MIT.txt
|
|
53
56
|
- Manifest.txt
|
|
54
57
|
- README.txt
|
|
58
|
+
- RUBY.txt
|
|
55
59
|
- Rakefile
|
|
56
60
|
- examples/README
|
|
57
61
|
- examples/employer.rb
|
metadata.gz.sig
CHANGED
|
Binary file
|