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.
Files changed (5) hide show
  1. data/Changelog +4 -0
  2. data/LICENSE +1 -1
  3. data/lib/rim/check_version.rb +1 -1
  4. data/lib/rim.rb +1 -1
  5. metadata +35 -27
data/Changelog CHANGED
@@ -1,3 +1,7 @@
1
+ 1.3.1
2
+ Bugfix: Make regular expression for Changelog case insensitive
3
+ in check_version task.
4
+
1
5
  1.3.0
2
6
  New tasks: rimrc, ripl
3
7
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011 Jan Friedrich
1
+ Copyright (c) 2011-2012 Jan Friedrich
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
@@ -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
@@ -9,7 +9,7 @@ require 'singleton'
9
9
  # versions as possible and is easy to extend. Feel free to dislike it. ;)
10
10
  class Rim
11
11
 
12
- VERSION = '1.3.0'
12
+ VERSION = '1.3.1'
13
13
 
14
14
  begin
15
15
  require 'rake/dsl_definition'
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
- date: 2012-03-20 00:00:00.000000000 Z
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
- files:
26
+
27
+ files:
24
28
  - README.rdoc
25
29
  - Changelog
26
30
  - LICENSE
27
31
  - Rakefile
28
- - lib/rim.rb
29
- - lib/rim/release.rb
32
+ - lib/rim/check_version.rb
33
+ - lib/rim/core.rb
30
34
  - lib/rim/gem.rb
31
- - lib/rim/rimrc.rb
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/install.rb
36
- - lib/rim/check_version.rb
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/git.rb
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
- require_paths:
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: '0'
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: '0'
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
60
66
  requirements: []
67
+
61
68
  rubyforge_project:
62
- rubygems_version: 1.8.17
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
+