rim 1.3.0 → 1.3.1
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/Changelog +4 -0
- data/LICENSE +1 -1
- data/lib/rim/check_version.rb +1 -1
- data/lib/rim.rb +1 -1
- metadata +35 -27
data/Changelog
CHANGED
data/LICENSE
CHANGED
data/lib/rim/check_version.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -- encoding: utf-8 --
|
2
2
|
require 'rim/release'
|
3
3
|
Rim.after_setup do
|
4
|
-
changelog = filelist(/^Changelog/).first
|
4
|
+
changelog = filelist(/^Changelog/i).first
|
5
5
|
desc "Check version in #{changelog} with Rim#version."
|
6
6
|
task :check_version do
|
7
7
|
line = File.open(changelog) do |f|
|
data/lib/rim.rb
CHANGED
metadata
CHANGED
@@ -1,66 +1,74 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rim
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.0
|
3
|
+
version: !ruby/object:Gem::Version
|
5
4
|
prerelease:
|
5
|
+
version: 1.3.1
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Jan Friedrich
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
12
|
+
|
13
|
+
date: 2012-03-27 00:00:00 Z
|
13
14
|
dependencies: []
|
14
|
-
description: ! 'Goal is to have a project managing that just works on many Ruby
|
15
15
|
|
16
|
+
description: |
|
17
|
+
Goal is to have a project managing that just works on many Ruby
|
16
18
|
versions as possible and is easy to extend. Feel free to dislike it. ;)
|
17
19
|
|
18
|
-
'
|
19
20
|
email: janfri26@gmail.com
|
20
21
|
executables: []
|
22
|
+
|
21
23
|
extensions: []
|
24
|
+
|
22
25
|
extra_rdoc_files: []
|
23
|
-
|
26
|
+
|
27
|
+
files:
|
24
28
|
- README.rdoc
|
25
29
|
- Changelog
|
26
30
|
- LICENSE
|
27
31
|
- Rakefile
|
28
|
-
- lib/rim.rb
|
29
|
-
- lib/rim/
|
32
|
+
- lib/rim/check_version.rb
|
33
|
+
- lib/rim/core.rb
|
30
34
|
- lib/rim/gem.rb
|
31
|
-
- lib/rim/
|
35
|
+
- lib/rim/git.rb
|
32
36
|
- lib/rim/info.rb
|
37
|
+
- lib/rim/install.rb
|
33
38
|
- lib/rim/irb.rb
|
34
39
|
- lib/rim/rdoc.rb
|
35
|
-
- lib/rim/
|
36
|
-
- lib/rim/
|
40
|
+
- lib/rim/release.rb
|
41
|
+
- lib/rim/rimrc.rb
|
37
42
|
- lib/rim/ripl.rb
|
38
43
|
- lib/rim/test.rb
|
39
|
-
- lib/rim
|
40
|
-
- lib/rim/core.rb
|
44
|
+
- lib/rim.rb
|
41
45
|
- test/test_helper_methods.rb
|
42
46
|
homepage: http://gitorious.org/rim
|
43
47
|
licenses: []
|
48
|
+
|
44
49
|
post_install_message:
|
45
50
|
rdoc_options: []
|
46
|
-
|
51
|
+
|
52
|
+
require_paths:
|
47
53
|
- lib
|
48
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
55
|
none: false
|
50
|
-
requirements:
|
51
|
-
- -
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version:
|
54
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
61
|
none: false
|
56
|
-
requirements:
|
57
|
-
- -
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version:
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
60
66
|
requirements: []
|
67
|
+
|
61
68
|
rubyforge_project:
|
62
|
-
rubygems_version: 1.8.
|
69
|
+
rubygems_version: 1.8.19
|
63
70
|
signing_key:
|
64
71
|
specification_version: 3
|
65
72
|
summary: A simple project / gem manager
|
66
73
|
test_files: []
|
74
|
+
|