cotweet_koala 0.8.0.1
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 +88 -0
- data/LICENSE +22 -0
- data/Manifest +29 -0
- data/Rakefile +16 -0
- data/init.rb +2 -0
- data/koala.gemspec +30 -0
- data/lib/koala.rb +292 -0
- data/lib/koala/graph_api.rb +136 -0
- data/lib/koala/http_services.rb +85 -0
- data/lib/koala/realtime_updates.rb +95 -0
- data/lib/koala/rest_api.rb +23 -0
- data/readme.md +104 -0
- data/spec/facebook_data.yml +44 -0
- data/spec/koala/api_base_tests.rb +80 -0
- data/spec/koala/graph_and_rest_api/graph_and_rest_api_no_token_tests.rb +10 -0
- data/spec/koala/graph_and_rest_api/graph_and_rest_api_with_token_tests.rb +11 -0
- data/spec/koala/graph_api/graph_api_no_access_token_tests.rb +105 -0
- data/spec/koala/graph_api/graph_api_with_access_token_tests.rb +139 -0
- data/spec/koala/live_testing_data_helper.rb +15 -0
- data/spec/koala/net_http_service_tests.rb +181 -0
- data/spec/koala/oauth/oauth_tests.rb +308 -0
- data/spec/koala/realtime_updates/realtime_updates_tests.rb +187 -0
- data/spec/koala/rest_api/rest_api_no_access_token_tests.rb +94 -0
- data/spec/koala/rest_api/rest_api_with_access_token_tests.rb +36 -0
- data/spec/koala_spec.rb +18 -0
- data/spec/koala_spec_helper.rb +30 -0
- data/spec/koala_spec_without_mocks.rb +19 -0
- data/spec/mock_facebook_responses.yml +228 -0
- data/spec/mock_http_service.rb +81 -0
- metadata +108 -0
metadata
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cotweet_koala
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 13
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 8
|
9
|
+
- 0
|
10
|
+
- 1
|
11
|
+
version: 0.8.0.1
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Alex Koppel, Chris Baclig, Rafi Jacoby, Context Optional
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2010-06-27 00:00:00 -07:00
|
20
|
+
default_executable:
|
21
|
+
dependencies: []
|
22
|
+
|
23
|
+
description: Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write access to the social graph via the Graph API and the older REST API, as well as support for realtime updates and OAuth and Facebook Connect authentication. Koala is fully tested and supports Net::HTTP and Typhoeus connections out of the box and can accept custom modules for other services.
|
24
|
+
email: alex@alexkoppel.com
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files:
|
30
|
+
- CHANGELOG
|
31
|
+
- LICENSE
|
32
|
+
- lib/koala.rb
|
33
|
+
- lib/koala/graph_api.rb
|
34
|
+
- lib/koala/http_services.rb
|
35
|
+
- lib/koala/realtime_updates.rb
|
36
|
+
- lib/koala/rest_api.rb
|
37
|
+
files:
|
38
|
+
- CHANGELOG
|
39
|
+
- LICENSE
|
40
|
+
- Manifest
|
41
|
+
- Rakefile
|
42
|
+
- init.rb
|
43
|
+
- koala.gemspec
|
44
|
+
- lib/koala.rb
|
45
|
+
- lib/koala/graph_api.rb
|
46
|
+
- lib/koala/http_services.rb
|
47
|
+
- lib/koala/realtime_updates.rb
|
48
|
+
- lib/koala/rest_api.rb
|
49
|
+
- readme.md
|
50
|
+
- spec/facebook_data.yml
|
51
|
+
- spec/koala/api_base_tests.rb
|
52
|
+
- spec/koala/graph_and_rest_api/graph_and_rest_api_no_token_tests.rb
|
53
|
+
- spec/koala/graph_and_rest_api/graph_and_rest_api_with_token_tests.rb
|
54
|
+
- spec/koala/graph_api/graph_api_no_access_token_tests.rb
|
55
|
+
- spec/koala/graph_api/graph_api_with_access_token_tests.rb
|
56
|
+
- spec/koala/live_testing_data_helper.rb
|
57
|
+
- spec/koala/net_http_service_tests.rb
|
58
|
+
- spec/koala/oauth/oauth_tests.rb
|
59
|
+
- spec/koala/realtime_updates/realtime_updates_tests.rb
|
60
|
+
- spec/koala/rest_api/rest_api_no_access_token_tests.rb
|
61
|
+
- spec/koala/rest_api/rest_api_with_access_token_tests.rb
|
62
|
+
- spec/koala_spec.rb
|
63
|
+
- spec/koala_spec_helper.rb
|
64
|
+
- spec/koala_spec_without_mocks.rb
|
65
|
+
- spec/mock_facebook_responses.yml
|
66
|
+
- spec/mock_http_service.rb
|
67
|
+
has_rdoc: true
|
68
|
+
homepage: http://github.com/arsduo/koala
|
69
|
+
licenses: []
|
70
|
+
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options:
|
73
|
+
- --line-numbers
|
74
|
+
- --inline-source
|
75
|
+
- --title
|
76
|
+
- Koala
|
77
|
+
- --main
|
78
|
+
- readme.md
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 3
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
version: "0"
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
hash: 11
|
96
|
+
segments:
|
97
|
+
- 1
|
98
|
+
- 2
|
99
|
+
version: "1.2"
|
100
|
+
requirements: []
|
101
|
+
|
102
|
+
rubyforge_project: koala
|
103
|
+
rubygems_version: 1.3.7
|
104
|
+
signing_key:
|
105
|
+
specification_version: 3
|
106
|
+
summary: A lightweight, flexible library for Facebook with support for the Graph API, the old REST API, realtime updates, and OAuth validation.
|
107
|
+
test_files: []
|
108
|
+
|