public
Description: AMQP client implementation in Ruby/EventMachine
Homepage: http://groups.google.com/group/ruby-amqp
Clone URL: git://github.com/tmm1/amqp.git
tmm1 (author)
Tue Oct 27 14:57:53 -0700 2009
commit  abef873a778dc73ae9dc410199eb3422e5f8029f
tree    ab0156ceb567c626f8baea7ccfc6f9fb10d72de6
parent  f371c726635af8bb21cdb9819c59aa17d3fc1d3a
amqp / amqp.gemspec
100644 84 lines (80 sloc) 2.218 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
spec = Gem::Specification.new do |s|
  s.name = 'amqp'
  s.version = '0.6.5'
  s.date = '2009-10-27'
  s.summary = 'AMQP client implementation in Ruby/EventMachine'
  s.email = "amqp@tmm1.net"
  s.homepage = "http://amqp.rubyforge.org/"
  s.description = "AMQP client implementation in Ruby/EventMachine"
  s.has_rdoc = true
  s.rdoc_options = '--include=examples'
 
  # ruby -rpp -e' pp `git ls-files`.split("\n").grep(/^(doc|README)/) '
  s.extra_rdoc_files = [
    "README",
    "doc/EXAMPLE_01_PINGPONG",
    "doc/EXAMPLE_02_CLOCK",
    "doc/EXAMPLE_03_STOCKS",
    "doc/EXAMPLE_04_MULTICLOCK",
    "doc/EXAMPLE_05_ACK",
    "doc/EXAMPLE_05_POP",
    "doc/EXAMPLE_06_HASHTABLE"
  ]
 
  s.authors = ["Aman Gupta"]
  s.add_dependency('eventmachine', '>= 0.12.4')
 
  # ruby -rpp -e' pp `git ls-files`.split("\n") '
  s.files = [
    "README",
    "Rakefile",
    "amqp.gemspec",
    "amqp.todo",
    "doc/EXAMPLE_01_PINGPONG",
    "doc/EXAMPLE_02_CLOCK",
    "doc/EXAMPLE_03_STOCKS",
    "doc/EXAMPLE_04_MULTICLOCK",
    "doc/EXAMPLE_05_ACK",
    "doc/EXAMPLE_05_POP",
    "doc/EXAMPLE_06_HASHTABLE",
    "examples/amqp/simple.rb",
    "examples/mq/ack.rb",
    "examples/mq/clock.rb",
    "examples/mq/pop.rb",
    "examples/mq/hashtable.rb",
    "examples/mq/internal.rb",
    "examples/mq/logger.rb",
    "examples/mq/multiclock.rb",
    "examples/mq/pingpong.rb",
    "examples/mq/primes-simple.rb",
    "examples/mq/primes.rb",
    "examples/mq/stocks.rb",
    "lib/amqp.rb",
    "lib/amqp/buffer.rb",
    "lib/amqp/client.rb",
    "lib/amqp/frame.rb",
    "lib/amqp/protocol.rb",
    "lib/amqp/server.rb",
    "lib/amqp/spec.rb",
    "lib/ext/blankslate.rb",
    "lib/ext/em.rb",
    "lib/ext/emfork.rb",
    "lib/mq.rb",
    "lib/mq/exchange.rb",
    "lib/mq/header.rb",
    "lib/mq/logger.rb",
    "lib/mq/queue.rb",
    "lib/mq/rpc.rb",
    "old/README",
    "old/Rakefile",
    "old/amqp-0.8.json",
    "old/amqp_spec.rb",
    "old/amqpc.rb",
    "old/codegen.rb",
    "protocol/amqp-0.8.json",
    "protocol/amqp-0.8.xml",
    "protocol/codegen.rb",
    "protocol/doc.txt",
    "research/api.rb",
    "research/primes-forked.rb",
    "research/primes-processes.rb",
    "research/primes-threaded.rb"
  ]
end