current_gem 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ChangeLog +2 -0
- data/README +6 -4
- data/Rakefile +2 -1
- data/lib/current_gem.rb +4 -2
- data/lib/current_gem/version.rb +1 -1
- data/lib/rubygems/commands/current_path_command.rb +4 -2
- data/lib/rubygems/commands/current_version_command.rb +4 -2
- data/lib/rubygems/commands/symlink_current_command.rb +4 -2
- metadata +32 -53
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 692cf381bea3b06102a743e46a69a459f9bf90b1
|
4
|
+
data.tar.gz: f8a832b9f0d2aa934d05770b87ee2f99a10324fb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f17892872129f3c2b3d9854eb5312e74b4b97e261e2327e885b3f2c6118844a0eac269a2d7fbabc5ac937bd8f7680a156c20f9cfbf104b6f0a8c9f3f97f31c68
|
7
|
+
data.tar.gz: c77d17b68116c49e03dd376191136222ebe1c8ee453bcc8a71b4936c2377dc389c67fb7d0b088b699eb13b7c1da83894f2dc249b0189dbc4aee3f704972cbc51
|
data/ChangeLog
CHANGED
data/README
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
== VERSION
|
4
4
|
|
5
|
-
This documentation refers to current_gem version 0.0.
|
5
|
+
This documentation refers to current_gem version 0.0.6
|
6
6
|
|
7
7
|
|
8
8
|
== DESCRIPTION
|
@@ -95,21 +95,23 @@ recent remaining version or, if none are left, removed as well.
|
|
95
95
|
== LINKS
|
96
96
|
|
97
97
|
<b></b>
|
98
|
-
Documentation:: http://
|
98
|
+
Documentation:: http://blackwinter.github.com/current_gem
|
99
99
|
Source code:: http://github.com/blackwinter/current_gem
|
100
100
|
RubyGem:: http://rubygems.org/gems/current_gem
|
101
101
|
|
102
102
|
|
103
103
|
== AUTHORS
|
104
104
|
|
105
|
-
* Jens Wille <mailto:jens.wille@
|
105
|
+
* Jens Wille <mailto:jens.wille@gmail.com>
|
106
106
|
|
107
107
|
|
108
108
|
== LICENSE AND COPYRIGHT
|
109
109
|
|
110
|
-
Copyright (C) 2009-
|
110
|
+
Copyright (C) 2009-2012 University of Cologne,
|
111
111
|
Albertus-Magnus-Platz, 50923 Cologne, Germany
|
112
112
|
|
113
|
+
Copyright (C) 2013 Jens Wille
|
114
|
+
|
113
115
|
current_gem is free software: you can redistribute it and/or modify it under
|
114
116
|
the terms of the GNU Affero General Public License as published by the Free
|
115
117
|
Software Foundation, either version 3 of the License, or (at your option)
|
data/Rakefile
CHANGED
@@ -9,7 +9,8 @@ begin
|
|
9
9
|
:version => CurrentGem::VERSION,
|
10
10
|
:summary => %q{Maintain symlinks to the most recent versions of installed RubyGems.},
|
11
11
|
:author => %q{Jens Wille},
|
12
|
-
:email => %q{jens.wille@
|
12
|
+
:email => %q{jens.wille@gmail.com},
|
13
|
+
:license => %q{AGPL-3.0},
|
13
14
|
:homepage => :blackwinter,
|
14
15
|
|
15
16
|
:required_rubygems_version => '>= 1.8.0'
|
data/lib/current_gem.rb
CHANGED
@@ -3,12 +3,14 @@
|
|
3
3
|
# #
|
4
4
|
# current_gem -- Maintain symlinks to current RubyGems #
|
5
5
|
# #
|
6
|
-
# Copyright (C) 2009-
|
6
|
+
# Copyright (C) 2009-2012 University of Cologne, #
|
7
7
|
# Albertus-Magnus-Platz, #
|
8
8
|
# 50923 Cologne, Germany #
|
9
9
|
# #
|
10
|
+
# Copyright (C) 2013 Jens Wille #
|
11
|
+
# #
|
10
12
|
# Authors: #
|
11
|
-
# Jens Wille <jens.wille@
|
13
|
+
# Jens Wille <jens.wille@gmail.com> #
|
12
14
|
# #
|
13
15
|
# current_gem is free software; you can redistribute it and/or modify it #
|
14
16
|
# under the terms of the GNU Affero General Public License as published by #
|
data/lib/current_gem/version.rb
CHANGED
@@ -3,12 +3,14 @@
|
|
3
3
|
# #
|
4
4
|
# A component of current_gem. #
|
5
5
|
# #
|
6
|
-
# Copyright (C) 2009-
|
6
|
+
# Copyright (C) 2009-2012 University of Cologne, #
|
7
7
|
# Albertus-Magnus-Platz, #
|
8
8
|
# 50923 Cologne, Germany #
|
9
9
|
# #
|
10
|
+
# Copyright (C) 2013 Jens Wille #
|
11
|
+
# #
|
10
12
|
# Authors: #
|
11
|
-
# Jens Wille <jens.wille@
|
13
|
+
# Jens Wille <jens.wille@gmail.com> #
|
12
14
|
# #
|
13
15
|
# current_gem is free software; you can redistribute it and/or modify it #
|
14
16
|
# under the terms of the GNU Affero General Public License as published by #
|
@@ -3,12 +3,14 @@
|
|
3
3
|
# #
|
4
4
|
# A component of current_gem. #
|
5
5
|
# #
|
6
|
-
# Copyright (C) 2009-
|
6
|
+
# Copyright (C) 2009-2012 University of Cologne, #
|
7
7
|
# Albertus-Magnus-Platz, #
|
8
8
|
# 50923 Cologne, Germany #
|
9
9
|
# #
|
10
|
+
# Copyright (C) 2013 Jens Wille #
|
11
|
+
# #
|
10
12
|
# Authors: #
|
11
|
-
# Jens Wille <jens.wille@
|
13
|
+
# Jens Wille <jens.wille@gmail.com> #
|
12
14
|
# #
|
13
15
|
# current_gem is free software; you can redistribute it and/or modify it #
|
14
16
|
# under the terms of the GNU Affero General Public License as published by #
|
@@ -3,12 +3,14 @@
|
|
3
3
|
# #
|
4
4
|
# A component of current_gem. #
|
5
5
|
# #
|
6
|
-
# Copyright (C) 2009-
|
6
|
+
# Copyright (C) 2009-2012 University of Cologne, #
|
7
7
|
# Albertus-Magnus-Platz, #
|
8
8
|
# 50923 Cologne, Germany #
|
9
9
|
# #
|
10
|
+
# Copyright (C) 2013 Jens Wille #
|
11
|
+
# #
|
10
12
|
# Authors: #
|
11
|
-
# Jens Wille <jens.wille@
|
13
|
+
# Jens Wille <jens.wille@gmail.com> #
|
12
14
|
# #
|
13
15
|
# current_gem is free software; you can redistribute it and/or modify it #
|
14
16
|
# under the terms of the GNU Affero General Public License as published by #
|
metadata
CHANGED
@@ -1,85 +1,64 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: current_gem
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 5
|
10
|
-
version: 0.0.5
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.6
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Jens Wille
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2011-05-05 00:00:00 Z
|
11
|
+
date: 2013-12-19 00:00:00.000000000 Z
|
19
12
|
dependencies: []
|
20
|
-
|
21
13
|
description: Maintain symlinks to the most recent versions of installed RubyGems.
|
22
|
-
email: jens.wille@
|
14
|
+
email: jens.wille@gmail.com
|
23
15
|
executables: []
|
24
|
-
|
25
16
|
extensions: []
|
26
|
-
|
27
|
-
extra_rdoc_files:
|
17
|
+
extra_rdoc_files:
|
28
18
|
- README
|
29
19
|
- COPYING
|
30
20
|
- ChangeLog
|
31
|
-
files:
|
21
|
+
files:
|
32
22
|
- lib/current_gem.rb
|
33
23
|
- lib/current_gem/version.rb
|
34
24
|
- lib/rubygems/commands/current_path_command.rb
|
35
|
-
- lib/rubygems/commands/symlink_current_command.rb
|
36
25
|
- lib/rubygems/commands/current_version_command.rb
|
26
|
+
- lib/rubygems/commands/symlink_current_command.rb
|
37
27
|
- lib/rubygems_plugin.rb
|
38
|
-
-
|
28
|
+
- COPYING
|
39
29
|
- ChangeLog
|
30
|
+
- README
|
40
31
|
- Rakefile
|
41
|
-
- COPYING
|
42
32
|
homepage: http://github.com/blackwinter/current_gem
|
43
|
-
licenses:
|
44
|
-
|
33
|
+
licenses:
|
34
|
+
- AGPL-3.0
|
35
|
+
metadata: {}
|
45
36
|
post_install_message:
|
46
|
-
rdoc_options:
|
47
|
-
- --
|
48
|
-
-
|
49
|
-
-
|
50
|
-
- --all
|
51
|
-
- --charset
|
37
|
+
rdoc_options:
|
38
|
+
- "--title"
|
39
|
+
- current_gem Application documentation (v0.0.6)
|
40
|
+
- "--charset"
|
52
41
|
- UTF-8
|
53
|
-
- --
|
54
|
-
-
|
55
|
-
|
42
|
+
- "--line-numbers"
|
43
|
+
- "--all"
|
44
|
+
- "--main"
|
45
|
+
- README
|
46
|
+
require_paths:
|
56
47
|
- lib
|
57
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
-
|
59
|
-
requirements:
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
60
50
|
- - ">="
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
version: "0"
|
66
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
-
none: false
|
68
|
-
requirements:
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
69
55
|
- - ">="
|
70
|
-
- !ruby/object:Gem::Version
|
71
|
-
hash: 55
|
72
|
-
segments:
|
73
|
-
- 1
|
74
|
-
- 8
|
75
|
-
- 0
|
56
|
+
- !ruby/object:Gem::Version
|
76
57
|
version: 1.8.0
|
77
58
|
requirements: []
|
78
|
-
|
79
59
|
rubyforge_project:
|
80
|
-
rubygems_version: 1.
|
60
|
+
rubygems_version: 2.1.11
|
81
61
|
signing_key:
|
82
|
-
specification_version:
|
62
|
+
specification_version: 4
|
83
63
|
summary: Maintain symlinks to the most recent versions of installed RubyGems.
|
84
64
|
test_files: []
|
85
|
-
|