rubymurray 0.1.2

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 (9) hide show
  1. data/LICENSE +20 -0
  2. data/README +35 -0
  3. data/Rakefile +379 -0
  4. data/doc/currybook.rdoc +146 -0
  5. data/doc/jamis.rb +591 -0
  6. data/lib/curry.rb +291 -0
  7. data/setup.rb +35 -0
  8. data/test/tc_curry.rb +170 -0
  9. metadata +61 -0
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.11
3
+ specification_version: 1
4
+ name: rubymurray
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.1.2
7
+ date: 2006-02-21 00:00:00 +00:00
8
+ summary: A Ruby port of Perl's Sub::Curry
9
+ require_paths:
10
+ - lib
11
+ email: ross@roscopeco.co.uk
12
+ homepage: http://rubymurray.rubyforge.org
13
+ rubyforge_project: rubymurray
14
+ description: "Ruby Murray is a Ruby port of Perl's Sub::Curry, originally written for Ruby Quiz #64 (Port a library)."
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ authors:
29
+ - Ross Bamford
30
+ files:
31
+ - setup.rb
32
+ - Rakefile
33
+ - README
34
+ - LICENSE
35
+ - lib/curry.rb
36
+ - test/tc_curry.rb
37
+ - doc/jamis.rb
38
+ - doc/currybook.rdoc
39
+ test_files: []
40
+
41
+ rdoc_options:
42
+ - --title
43
+ - Ruby Murray
44
+ - --main
45
+ - README
46
+ - --line-numbers
47
+ - --inline-source
48
+ - --template
49
+ - doc/jamis.rb
50
+ extra_rdoc_files:
51
+ - README
52
+ - LICENSE
53
+ - doc/currybook.rdoc
54
+ executables: []
55
+
56
+ extensions: []
57
+
58
+ requirements: []
59
+
60
+ dependencies: []
61
+