mojodna-switchboard 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/README.markdown +31 -0
  2. data/bin/switchboard +35 -0
  3. data/examples/election_results.rb +61 -0
  4. data/lib/switchboard/colors.rb +10 -0
  5. data/lib/switchboard/commands/command.rb +85 -0
  6. data/lib/switchboard/commands/config/config.rb +20 -0
  7. data/lib/switchboard/commands/config.rb +1 -0
  8. data/lib/switchboard/commands/default.rb +47 -0
  9. data/lib/switchboard/commands/help/help.rb +15 -0
  10. data/lib/switchboard/commands/help.rb +1 -0
  11. data/lib/switchboard/commands/pubsub/pubsub.rb +16 -0
  12. data/lib/switchboard/commands/pubsub/subscribe.rb +35 -0
  13. data/lib/switchboard/commands/pubsub/subscriptions.rb +32 -0
  14. data/lib/switchboard/commands/pubsub/unsubscribe.rb +31 -0
  15. data/lib/switchboard/commands/pubsub.rb +4 -0
  16. data/lib/switchboard/commands/roster/add.rb +26 -0
  17. data/lib/switchboard/commands/roster/list.rb +24 -0
  18. data/lib/switchboard/commands/roster/remove.rb +29 -0
  19. data/lib/switchboard/commands/roster/roster.rb +7 -0
  20. data/lib/switchboard/commands/roster.rb +4 -0
  21. data/lib/switchboard/commands.rb +6 -0
  22. data/lib/switchboard/core.rb +324 -0
  23. data/lib/switchboard/instance_exec.rb +16 -0
  24. data/lib/switchboard/jacks/auto_accept.rb +16 -0
  25. data/lib/switchboard/jacks/debug.rb +17 -0
  26. data/lib/switchboard/jacks/notify.rb +15 -0
  27. data/lib/switchboard/jacks/oauth_pubsub.rb +50 -0
  28. data/lib/switchboard/jacks/roster_debug.rb +23 -0
  29. data/lib/switchboard/jacks.rb +5 -0
  30. data/lib/switchboard/oauth/request_proxy/mock_request.rb +21 -0
  31. data/lib/switchboard/settings.rb +32 -0
  32. data/lib/switchboard/switchboard.rb +5 -0
  33. data/lib/switchboard/version.rb +3 -0
  34. data/lib/switchboard/xmpp4r/pubsub/helper/oauth_service_helper.rb +107 -0
  35. data/lib/switchboard.rb +1 -0
  36. data/switchboard.gemspec +14 -0
  37. metadata +113 -0
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mojodna-switchboard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Seth Fitzsimmons
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-10-27 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: xmpp4r
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ version:
24
+ description: A toolkit for assembling XMPP clients and interacting with XMPP servers.
25
+ email:
26
+ - seth@mojodna.net
27
+ executables:
28
+ - switchboard
29
+ extensions: []
30
+
31
+ extra_rdoc_files: []
32
+
33
+ files:
34
+ - bin
35
+ - bin/switchboard
36
+ - examples/election_results.rb
37
+ - github-test.rb
38
+ - lib
39
+ - lib/switchboard
40
+ - lib/switchboard/colors.rb
41
+ - lib/switchboard/commands
42
+ - lib/switchboard/commands/command.rb
43
+ - lib/switchboard/commands/config
44
+ - lib/switchboard/commands/config/config.rb
45
+ - lib/switchboard/commands/config.rb
46
+ - lib/switchboard/commands/default.rb
47
+ - lib/switchboard/commands/help
48
+ - lib/switchboard/commands/help/help.rb
49
+ - lib/switchboard/commands/help.rb
50
+ - lib/switchboard/commands/pubsub
51
+ - lib/switchboard/commands/pubsub/pubsub.rb
52
+ - lib/switchboard/commands/pubsub/subscribe.rb
53
+ - lib/switchboard/commands/pubsub/subscriptions.rb
54
+ - lib/switchboard/commands/pubsub/unsubscribe.rb
55
+ - lib/switchboard/commands/pubsub.rb
56
+ - lib/switchboard/commands/roster
57
+ - lib/switchboard/commands/roster/add.rb
58
+ - lib/switchboard/commands/roster/list.rb
59
+ - lib/switchboard/commands/roster/remove.rb
60
+ - lib/switchboard/commands/roster/roster.rb
61
+ - lib/switchboard/commands/roster.rb
62
+ - lib/switchboard/commands.rb
63
+ - lib/switchboard/core.rb
64
+ - lib/switchboard/instance_exec.rb
65
+ - lib/switchboard/jacks
66
+ - lib/switchboard/jacks/auto_accept.rb
67
+ - lib/switchboard/jacks/debug.rb
68
+ - lib/switchboard/jacks/notify.rb
69
+ - lib/switchboard/jacks/oauth_pubsub.rb
70
+ - lib/switchboard/jacks/roster_debug.rb
71
+ - lib/switchboard/jacks.rb
72
+ - lib/switchboard/oauth
73
+ - lib/switchboard/oauth/request_proxy
74
+ - lib/switchboard/oauth/request_proxy/mock_request.rb
75
+ - lib/switchboard/settings.rb
76
+ - lib/switchboard/switchboard.rb
77
+ - lib/switchboard/version.rb
78
+ - lib/switchboard/xmpp4r
79
+ - lib/switchboard/xmpp4r/pubsub
80
+ - lib/switchboard/xmpp4r/pubsub/helper
81
+ - lib/switchboard/xmpp4r/pubsub/helper/oauth_service_helper.rb
82
+ - lib/switchboard.rb
83
+ - README.markdown
84
+ - switchboard-0.0.1.gem
85
+ - switchboard.gemspec
86
+ has_rdoc: false
87
+ homepage:
88
+ post_install_message:
89
+ rdoc_options: []
90
+
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: "0"
98
+ version:
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: "0"
104
+ version:
105
+ requirements: []
106
+
107
+ rubyforge_project:
108
+ rubygems_version: 1.2.0
109
+ signing_key:
110
+ specification_version: 2
111
+ summary: XMPP toolkit
112
+ test_files: []
113
+