This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
forked from EmmanuelOga/firering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firering.gemspec
102 lines (92 loc) · 3.63 KB
/
firering.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.5'
s.name = 'firering'
s.version = '1.1.0'
s.date = '2011-05-04'
s.rubyforge_project = 'firering'
s.summary = "Campfire API interface powered by eventmachine em-http-request and yajl-ruby."
s.description = "Campfire API interface powered by eventmachine em-http-request and yajl-ruby."
s.authors = ["Emmanuel Oga"]
s.email = '[email protected]'
s.homepage = 'http://github.com/EmmanuelOga/firering'
s.require_paths = %w[lib]
s.executables = ["campf-notify"]
s.default_executable = 'campf-notify'
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.rdoc LICENSE]
s.add_dependency('eventmachine', ["~> 0.12.10"])
s.add_dependency('em-http-request', ["~> 0.3.0"])
s.add_dependency('yajl-ruby', ["~> 0.7.6"])
s.add_development_dependency('rspec', ["~> 2.1.0"])
s.add_development_dependency('rack', [">= 1.2.0"])
# = MANIFEST =
s.files = %w[
LICENSE
README.rdoc
Rakefile
bin/campf-notify
examples/authenticate.rb
examples/events.rb
examples/recent_messages.rb
examples/rooms.rb
examples/update_room.rb
firering.gemspec
lib/firering.rb
lib/firering/connection.rb
lib/firering/data/message.rb
lib/firering/data/room.rb
lib/firering/data/upload.rb
lib/firering/data/user.rb
lib/firering/instantiator.rb
lib/firering/requests.rb
log/.gitignore
spec/firering/connection_spec.rb
spec/firering/data/message_spec.rb
spec/firering/data/room_spec.rb
spec/firering/data/user_spec.rb
spec/firering/data_spec.rb
spec/fixtures/headers/delete_messages_ID_star.json
spec/fixtures/headers/get_room_ID.json
spec/fixtures/headers/get_room_ID_live.json
spec/fixtures/headers/get_room_ID_recent.json
spec/fixtures/headers/get_room_ID_transcript.json
spec/fixtures/headers/get_room_ID_transcript_ID_ID_ID.json
spec/fixtures/headers/get_room_ID_uploads.json
spec/fixtures/headers/get_rooms.json
spec/fixtures/headers/get_search_harmless.json
spec/fixtures/headers/get_users_ID.json
spec/fixtures/headers/get_users_me.json
spec/fixtures/headers/post_messages_ID_star.json
spec/fixtures/headers/post_room_ID_join.json
spec/fixtures/headers/post_room_ID_leave.json
spec/fixtures/headers/post_room_ID_speak.json
spec/fixtures/headers/post_room_ID_unlock.json
spec/fixtures/headers/put_room_ID.json
spec/fixtures/json/delete_messages_ID_star.json
spec/fixtures/json/get_room_ID.json
spec/fixtures/json/get_room_ID_live.json
spec/fixtures/json/get_room_ID_recent.json
spec/fixtures/json/get_room_ID_transcript.json
spec/fixtures/json/get_room_ID_transcript_ID_ID_ID.json
spec/fixtures/json/get_room_ID_uploads.json
spec/fixtures/json/get_rooms.json
spec/fixtures/json/get_search_harmless.json
spec/fixtures/json/get_users_ID.json
spec/fixtures/json/get_users_me.json
spec/fixtures/json/post_messages_ID_star.json
spec/fixtures/json/post_room_ID_join.json
spec/fixtures/json/post_room_ID_leave.json
spec/fixtures/json/post_room_ID_lock.json
spec/fixtures/json/post_room_ID_speak.json
spec/fixtures/json/post_room_ID_unlock.json
spec/fixtures/json/put_room_ID.json
spec/fixtures/load_server.rb
spec/fixtures/retrieve.rb
spec/spec_helper.rb
spec/support/helpers.rb
]
# = MANIFEST =
s.test_files = s.files.select { |path| path =~ /^spec/ }
end