public
Description: The Maybe Monad in idiomatic Ruby
Homepage:
Clone URL: git://github.com/raganwald/andand.git
Click here to lend your support to: andand and make a donation at www.pledgie.com !
andand / andand.gemspec
100644 33 lines (33 sloc) 0.88 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Gem::Specification.new do |s|
  s.name = "andand"
  s.version = "1.3.1"
  s.date = "2008-11-07"
  s.summary = "The Maybe Monad in idiomatic Ruby"
  s.email = "reg@braythwayt.com"
  s.homepage = "hhttp://github.com/raganwald/andand/tree/master"
  s.description = " Maybe Monad in idiomatic Ruby."
  s.has_rdoc = true
  s.authors = ["Reg Braithwaite"]
  s.files = ["History.txt",
"License.txt",
"Manifest.txt",
"README.textile",
"README.txt",
"Rakefile",
"config/hoe.rb",
"config/requirements.rb",
"lib/andand.rb",
"lib/andand/version.rb",
"log/debug.log",
"script/destroy",
"script/generate",
"script/txt2html",
"setup.rb",
"tasks/deployment.rake",
"tasks/environment.rake"]
  s.test_files = [
"test/test_andand.rb",
"test/test_helper.rb"]
  s.rdoc_options = ["--main", "README.textile"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.textile"]
end