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.
Files changed (3) hide show
  1. data/Rakefile +8 -5
  2. data/lib/map_by_method/version.rb +1 -1
  3. 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 = "you"
13
- EMAIL = "your contact email for bug fixes and info"
14
- DESCRIPTION = "description of gem"
15
- HOMEPATH = 'http://map_by_method.rubyforge.org'
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
 
@@ -2,7 +2,7 @@ module MapByMethod #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.0
7
- date: 2006-10-11 00:00:00 +02:00
8
- summary: description of gem
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: your contact email for bug fixes and info
12
- homepage: http://map_by_method.rubyforge.org
13
- rubyforge_project:
14
- description: description of gem
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
- - you
29
+ - Dr Nic Williams
30
30
  files:
31
31
  - README
32
32
  - CHANGELOG