named_arguments 0.0.4 → 0.0.5
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 +5 -4
- data/lib/named_arguments.rb +1 -1
- metadata +6 -6
data/Rakefile
CHANGED
|
@@ -4,10 +4,11 @@ require 'rubygems'
|
|
|
4
4
|
require 'hoe'
|
|
5
5
|
require './lib/named_arguments.rb'
|
|
6
6
|
|
|
7
|
-
Hoe.new('
|
|
8
|
-
p.rubyforge_name = '
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
Hoe.new('namedarguments', NamedArguments::VERSION) do |p|
|
|
8
|
+
p.rubyforge_name = 'namedarguments'
|
|
9
|
+
p.name = 'named_arguments'
|
|
10
|
+
p.author = 'James Moore'
|
|
11
|
+
p.email = 'james@restphone.com'
|
|
11
12
|
# p.summary = 'FIX'
|
|
12
13
|
# p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
|
|
13
14
|
# p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
|
data/lib/named_arguments.rb
CHANGED
|
@@ -32,7 +32,7 @@ require File.dirname(__FILE__) + '/named_arguments/class_settings_mixin'
|
|
|
32
32
|
# * ClassMethods#type_converter
|
|
33
33
|
# * ClassMethods#option_attr
|
|
34
34
|
module NamedArguments
|
|
35
|
-
VERSION = '0.0.
|
|
35
|
+
VERSION = '0.0.5'
|
|
36
36
|
|
|
37
37
|
def self.included target # :nodoc:
|
|
38
38
|
target.class_eval do
|
metadata
CHANGED
|
@@ -3,14 +3,14 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: named_arguments
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0.
|
|
7
|
-
date: 2007-06-
|
|
6
|
+
version: 0.0.5
|
|
7
|
+
date: 2007-06-04 00:00:00 -07:00
|
|
8
8
|
summary: The author was too lazy to write a summary
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
|
-
email:
|
|
12
|
-
homepage: http://www.zenspider.com/ZSS/Products/
|
|
13
|
-
rubyforge_project:
|
|
11
|
+
email: james@restphone.com
|
|
12
|
+
homepage: http://www.zenspider.com/ZSS/Products/namedarguments/
|
|
13
|
+
rubyforge_project: namedarguments
|
|
14
14
|
description: The author was too lazy to write a description
|
|
15
15
|
autorequire:
|
|
16
16
|
default_executable:
|
|
@@ -27,7 +27,7 @@ signing_key:
|
|
|
27
27
|
cert_chain:
|
|
28
28
|
post_install_message:
|
|
29
29
|
authors:
|
|
30
|
-
-
|
|
30
|
+
- James Moore
|
|
31
31
|
files:
|
|
32
32
|
- History.txt
|
|
33
33
|
- Manifest.txt
|