-
Notifications
You must be signed in to change notification settings - Fork 0
/
superfeedr-blather.gemspec
75 lines (70 loc) · 2.4 KB
/
superfeedr-blather.gemspec
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
# -*- coding: utf-8 -*-
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{superfeedr-blather}
s.version = "0.2.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["dave@kapoq.com"]
s.date = %q{2011-01-05}
s.description = %q{You get some patches for Blather and some classes that wrap the stuff you want from Superfeedr (entries, authors etc.). Under-the-hood, Blather uses EventMachine and Nokogiri so it’s fast and convenient. If you want to daemonize your client, daemon-kit comes ready with a blather template.}
s.email = %q{dave@kapoq.com}
s.extra_rdoc_files = [
"LICENSE",
"README",
"README.rdoc"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README",
"README.rdoc",
"Rakefile",
"VERSION",
"autotest/discover.rb",
"examples/echo.rb",
"examples/sub_unsub.rb",
"examples/timer.rb",
"lib/blather/event.rb",
"lib/blather/namespaces.rb",
"lib/blather/pubsub.rb",
"lib/blather/subscriptions.rb",
"lib/blather/unsubscribe.rb",
"lib/superfeedr-blather.rb",
"lib/superfeedr/superfeedr.rb",
"spec/fixtures/notification.xml",
"spec/fixtures/resource_list.xml",
"spec/fixtures/resources_list_request.xml",
"spec/spec_helper.rb",
"spec/stanza/notification_spec.rb",
"spec/stanza/subscriptions_spec.rb",
"superfeedr-blather.gemspec"
]
s.homepage = %q{http://github.com/kapoq/superfeedr-blather}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{superfeedr-blather implements a Superfeedr PubSub XMPP client in Ruby using the Blather gem.}
s.test_files = [
"examples/echo.rb",
"examples/sub_unsub.rb",
"examples/timer.rb",
"spec/spec_helper.rb",
"spec/stanza/notification_spec.rb",
"spec/stanza/subscriptions_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<blather>, ["~> 0.4"])
else
s.add_dependency(%q<blather>, ["~> 0.4"])
end
else
s.add_dependency(%q<blather>, ["~> 0.4"])
end
end