map_by_method 0.4.0 → 0.4.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/Rakefile +8 -5
- data/lib/map_by_method/version.rb +1 -1
- metadata +9 -9
data/Rakefile
CHANGED
|
@@ -9,14 +9,15 @@ require 'fileutils'
|
|
|
9
9
|
include FileUtils
|
|
10
10
|
require File.join(File.dirname(__FILE__), 'lib', 'map_by_method', 'version')
|
|
11
11
|
|
|
12
|
-
AUTHOR = "
|
|
13
|
-
EMAIL = "
|
|
14
|
-
DESCRIPTION = "
|
|
15
|
-
HOMEPATH = 'http://
|
|
12
|
+
AUTHOR = "Dr Nic Williams"
|
|
13
|
+
EMAIL = "drnicwilliams@gmail.com"
|
|
14
|
+
DESCRIPTION = "Replacement for Symbol.to_proc which is much cleaner and prettier"
|
|
15
|
+
HOMEPATH = 'http://drnicutilities.rubyforge.org'
|
|
16
|
+
RUBYFORGE_PROJECT = "drnicutilities"
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
NAME = "map_by_method"
|
|
19
|
-
REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
|
|
20
|
+
REV = nil #File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
|
|
20
21
|
VERS = ENV['VERSION'] || (MapByMethod::VERSION::STRING + (REV ? ".#{REV}" : ""))
|
|
21
22
|
CLEAN.include ['**/.*.sw?', '*.gem', '.config']
|
|
22
23
|
RDOC_OPTS = ['--quiet', '--title', "map_by_method documentation",
|
|
@@ -48,6 +49,8 @@ spec =
|
|
|
48
49
|
s.email = EMAIL
|
|
49
50
|
s.homepage = HOMEPATH
|
|
50
51
|
s.executables = BIN_FILES
|
|
52
|
+
s.autorequire = "map_by_method"
|
|
53
|
+
s.rubyforge_project = RUBYFORGE_PROJECT
|
|
51
54
|
s.bindir = "bin"
|
|
52
55
|
s.require_path = "lib"
|
|
53
56
|
|
metadata
CHANGED
|
@@ -3,16 +3,16 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: map_by_method
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.4.
|
|
7
|
-
date: 2006-10-
|
|
8
|
-
summary:
|
|
6
|
+
version: 0.4.1
|
|
7
|
+
date: 2006-10-18 00:00:00 +02:00
|
|
8
|
+
summary: Replacement for Symbol.to_proc which is much cleaner and prettier
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
|
-
email:
|
|
12
|
-
homepage: http://
|
|
13
|
-
rubyforge_project:
|
|
14
|
-
description:
|
|
15
|
-
autorequire:
|
|
11
|
+
email: drnicwilliams@gmail.com
|
|
12
|
+
homepage: http://drnicutilities.rubyforge.org
|
|
13
|
+
rubyforge_project: drnicutilities
|
|
14
|
+
description: Replacement for Symbol.to_proc which is much cleaner and prettier
|
|
15
|
+
autorequire: map_by_method
|
|
16
16
|
default_executable:
|
|
17
17
|
bindir: bin
|
|
18
18
|
has_rdoc: true
|
|
@@ -26,7 +26,7 @@ platform: ruby
|
|
|
26
26
|
signing_key:
|
|
27
27
|
cert_chain:
|
|
28
28
|
authors:
|
|
29
|
-
-
|
|
29
|
+
- Dr Nic Williams
|
|
30
30
|
files:
|
|
31
31
|
- README
|
|
32
32
|
- CHANGELOG
|