facebooker 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.txt +0 -0
- data/COPYING +19 -0
- data/History.txt +3 -0
- data/Manifest.txt +60 -0
- data/README +44 -0
- data/README.txt +79 -0
- data/Rakefile +38 -0
- data/TODO.txt +10 -0
- data/facebooker.yml.tpl +36 -0
- data/init.rb +52 -0
- data/install.rb +5 -0
- data/lib/facebooker.rb +63 -0
- data/lib/facebooker/affiliation.rb +10 -0
- data/lib/facebooker/album.rb +11 -0
- data/lib/facebooker/cookie.rb +10 -0
- data/lib/facebooker/data.rb +38 -0
- data/lib/facebooker/education_info.rb +11 -0
- data/lib/facebooker/event.rb +26 -0
- data/lib/facebooker/feed.rb +65 -0
- data/lib/facebooker/group.rb +35 -0
- data/lib/facebooker/location.rb +8 -0
- data/lib/facebooker/model.rb +118 -0
- data/lib/facebooker/notifications.rb +17 -0
- data/lib/facebooker/parser.rb +386 -0
- data/lib/facebooker/photo.rb +9 -0
- data/lib/facebooker/rails/controller.rb +174 -0
- data/lib/facebooker/rails/facebook_asset_path.rb +18 -0
- data/lib/facebooker/rails/facebook_form_builder.rb +112 -0
- data/lib/facebooker/rails/facebook_request_fix.rb +14 -0
- data/lib/facebooker/rails/facebook_session_handling.rb +58 -0
- data/lib/facebooker/rails/facebook_url_rewriting.rb +31 -0
- data/lib/facebooker/rails/helpers.rb +535 -0
- data/lib/facebooker/rails/routing.rb +49 -0
- data/lib/facebooker/rails/test_helpers.rb +11 -0
- data/lib/facebooker/rails/utilities.rb +22 -0
- data/lib/facebooker/server_cache.rb +24 -0
- data/lib/facebooker/service.rb +25 -0
- data/lib/facebooker/session.rb +385 -0
- data/lib/facebooker/tag.rb +12 -0
- data/lib/facebooker/user.rb +200 -0
- data/lib/facebooker/version.rb +9 -0
- data/lib/facebooker/work_info.rb +9 -0
- data/lib/net/http_multipart_post.rb +123 -0
- data/lib/tasks/facebooker.rake +16 -0
- data/lib/tasks/tunnel.rake +39 -0
- data/setup.rb +1585 -0
- data/test/event_test.rb +15 -0
- data/test/facebook_cache_test.rb +43 -0
- data/test/facebook_data_test.rb +50 -0
- data/test/facebooker_test.rb +766 -0
- data/test/fixtures/multipart_post_body_with_only_parameters.txt +33 -0
- data/test/fixtures/multipart_post_body_with_single_file.txt +38 -0
- data/test/fixtures/multipart_post_body_with_single_file_that_has_nil_key.txt +38 -0
- data/test/http_multipart_post_test.rb +54 -0
- data/test/model_test.rb +79 -0
- data/test/rails_integration_test.rb +732 -0
- data/test/session_test.rb +396 -0
- data/test/test_helper.rb +54 -0
- data/test/user_test.rb +101 -0
- metadata +130 -0
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: facebooker
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chad Fowler
|
8
|
+
- Patrick Ewing
|
9
|
+
- Mike Mangino
|
10
|
+
- Shane Vitarana
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
|
15
|
+
date: 2008-02-13 00:00:00 -06:00
|
16
|
+
default_executable:
|
17
|
+
dependencies:
|
18
|
+
- !ruby/object:Gem::Dependency
|
19
|
+
name: hoe
|
20
|
+
version_requirement:
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.5.0
|
26
|
+
version:
|
27
|
+
description: "== DESCRIPTION: Facebooker is a Ruby wrapper over the Facebook[http://facebook.com] {REST API}[http://developer.facebook.com]. Its goals are: * Idiomatic Ruby * No dependencies outside of the Ruby standard library * Concrete classes and methods modeling the Facebook data, so it's easy for a Rubyist to understand what's available * Well tested == FEATURES/PROBLEMS:"
|
28
|
+
email: mmangino@elevatedrails.com
|
29
|
+
executables: []
|
30
|
+
|
31
|
+
extensions: []
|
32
|
+
|
33
|
+
extra_rdoc_files:
|
34
|
+
- CHANGELOG.txt
|
35
|
+
- History.txt
|
36
|
+
- Manifest.txt
|
37
|
+
- README.txt
|
38
|
+
- TODO.txt
|
39
|
+
- test/fixtures/multipart_post_body_with_only_parameters.txt
|
40
|
+
- test/fixtures/multipart_post_body_with_single_file.txt
|
41
|
+
- test/fixtures/multipart_post_body_with_single_file_that_has_nil_key.txt
|
42
|
+
files:
|
43
|
+
- CHANGELOG.txt
|
44
|
+
- COPYING
|
45
|
+
- History.txt
|
46
|
+
- Manifest.txt
|
47
|
+
- README
|
48
|
+
- README.txt
|
49
|
+
- Rakefile
|
50
|
+
- TODO.txt
|
51
|
+
- facebooker.yml.tpl
|
52
|
+
- init.rb
|
53
|
+
- install.rb
|
54
|
+
- lib/facebooker.rb
|
55
|
+
- lib/facebooker/affiliation.rb
|
56
|
+
- lib/facebooker/album.rb
|
57
|
+
- lib/facebooker/cookie.rb
|
58
|
+
- lib/facebooker/data.rb
|
59
|
+
- lib/facebooker/education_info.rb
|
60
|
+
- lib/facebooker/event.rb
|
61
|
+
- lib/facebooker/feed.rb
|
62
|
+
- lib/facebooker/group.rb
|
63
|
+
- lib/facebooker/location.rb
|
64
|
+
- lib/facebooker/model.rb
|
65
|
+
- lib/facebooker/notifications.rb
|
66
|
+
- lib/facebooker/parser.rb
|
67
|
+
- lib/facebooker/photo.rb
|
68
|
+
- lib/facebooker/rails/controller.rb
|
69
|
+
- lib/facebooker/rails/facebook_asset_path.rb
|
70
|
+
- lib/facebooker/rails/facebook_form_builder.rb
|
71
|
+
- lib/facebooker/rails/facebook_request_fix.rb
|
72
|
+
- lib/facebooker/rails/facebook_session_handling.rb
|
73
|
+
- lib/facebooker/rails/facebook_url_rewriting.rb
|
74
|
+
- lib/facebooker/rails/helpers.rb
|
75
|
+
- lib/facebooker/rails/routing.rb
|
76
|
+
- lib/facebooker/rails/test_helpers.rb
|
77
|
+
- lib/facebooker/rails/utilities.rb
|
78
|
+
- lib/facebooker/server_cache.rb
|
79
|
+
- lib/facebooker/service.rb
|
80
|
+
- lib/facebooker/session.rb
|
81
|
+
- lib/facebooker/tag.rb
|
82
|
+
- lib/facebooker/user.rb
|
83
|
+
- lib/facebooker/version.rb
|
84
|
+
- lib/facebooker/work_info.rb
|
85
|
+
- lib/net/http_multipart_post.rb
|
86
|
+
- lib/tasks/facebooker.rake
|
87
|
+
- lib/tasks/tunnel.rake
|
88
|
+
- setup.rb
|
89
|
+
- test/event_test.rb
|
90
|
+
- test/facebook_cache_test.rb
|
91
|
+
- test/facebook_data_test.rb
|
92
|
+
- test/facebooker_test.rb
|
93
|
+
- test/fixtures/multipart_post_body_with_only_parameters.txt
|
94
|
+
- test/fixtures/multipart_post_body_with_single_file.txt
|
95
|
+
- test/fixtures/multipart_post_body_with_single_file_that_has_nil_key.txt
|
96
|
+
- test/http_multipart_post_test.rb
|
97
|
+
- test/model_test.rb
|
98
|
+
- test/rails_integration_test.rb
|
99
|
+
- test/session_test.rb
|
100
|
+
- test/test_helper.rb
|
101
|
+
- test/user_test.rb
|
102
|
+
has_rdoc: true
|
103
|
+
homepage:
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options:
|
106
|
+
- --main
|
107
|
+
- README.txt
|
108
|
+
require_paths:
|
109
|
+
- lib
|
110
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: "0"
|
115
|
+
version:
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: "0"
|
121
|
+
version:
|
122
|
+
requirements: []
|
123
|
+
|
124
|
+
rubyforge_project: facebooker
|
125
|
+
rubygems_version: 1.0.1
|
126
|
+
signing_key:
|
127
|
+
specification_version: 2
|
128
|
+
summary: Pure, idiomatic Ruby wrapper for the Facebook REST API.
|
129
|
+
test_files:
|
130
|
+
- test/test_helper.rb
|