rails3-opensocial 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +1 -0
- data/LICENSE +202 -0
- data/NOTICE +60 -0
- data/README +99 -0
- data/Rakefile +0 -0
- data/lib/opensocial.rb +34 -0
- data/lib/opensocial/activity.rb +116 -0
- data/lib/opensocial/appdata.rb +117 -0
- data/lib/opensocial/auth/action_controller_request.rb +93 -0
- data/lib/opensocial/auth/base.rb +114 -0
- data/lib/opensocial/base.rb +53 -0
- data/lib/opensocial/connection.rb +132 -0
- data/lib/opensocial/group.rb +83 -0
- data/lib/opensocial/person.rb +201 -0
- data/lib/opensocial/request.rb +258 -0
- data/lib/opensocial/string/merb_string.rb +32 -0
- data/lib/opensocial/string/os_string.rb +23 -0
- metadata +113 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
# Copyright (c) 2008 Engine Yard
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
# a copy of this software and associated documentation files (the
|
5
|
+
# "Software"), to deal in the Software without restriction, including
|
6
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
# the following conditions:
|
10
|
+
#
|
11
|
+
# The above copyright notice and this permission notice shall be
|
12
|
+
# included in all copies or substantial portions of the Software.
|
13
|
+
#
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|
22
|
+
class String #:nodoc:
|
23
|
+
def snake_case
|
24
|
+
gsub(/\B[A-Z]/, '_\&').downcase
|
25
|
+
end
|
26
|
+
|
27
|
+
def camel_case
|
28
|
+
words = split('_')
|
29
|
+
camel = words[1..-1].map{|e| e.capitalize}.join
|
30
|
+
words[0] + camel
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright (c) 2008 Google Inc.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
class String #:nodoc:
|
16
|
+
# Removes backslash escaping.
|
17
|
+
def os_unescape
|
18
|
+
unescaped = self.gsub(/\\\"/, '"')
|
19
|
+
unescaped = unescaped.gsub('"{', "{")
|
20
|
+
unescaped = unescaped.gsub('}"', "}")
|
21
|
+
unescaped = unescaped.gsub(/\"\"/, "\"")
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails3-opensocial
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Google
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-01-03 00:00:00 +01:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: drogus-oauth
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: json
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: "0"
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: activesupport
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 3.0.0
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: actionpack
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.0.0
|
54
|
+
version:
|
55
|
+
description: OpenSocial Google Gem. Gemified by Robert R Evans
|
56
|
+
email: google@gmail.com
|
57
|
+
executables: []
|
58
|
+
|
59
|
+
extensions: []
|
60
|
+
|
61
|
+
extra_rdoc_files:
|
62
|
+
- README
|
63
|
+
- CHANGELOG.rdoc
|
64
|
+
- LICENSE
|
65
|
+
- NOTICE
|
66
|
+
files:
|
67
|
+
- README
|
68
|
+
- LICENSE
|
69
|
+
- CHANGELOG.rdoc
|
70
|
+
- Rakefile
|
71
|
+
- lib/opensocial.rb
|
72
|
+
- lib/opensocial/activity.rb
|
73
|
+
- lib/opensocial/appdata.rb
|
74
|
+
- lib/opensocial/auth/action_controller_request.rb
|
75
|
+
- lib/opensocial/auth/base.rb
|
76
|
+
- lib/opensocial/base.rb
|
77
|
+
- lib/opensocial/connection.rb
|
78
|
+
- lib/opensocial/group.rb
|
79
|
+
- lib/opensocial/person.rb
|
80
|
+
- lib/opensocial/request.rb
|
81
|
+
- lib/opensocial/string/merb_string.rb
|
82
|
+
- lib/opensocial/string/os_string.rb
|
83
|
+
- NOTICE
|
84
|
+
has_rdoc: true
|
85
|
+
homepage: http://google.com
|
86
|
+
licenses: []
|
87
|
+
|
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: opensocial
|
108
|
+
rubygems_version: 1.3.5
|
109
|
+
signing_key:
|
110
|
+
specification_version: 2
|
111
|
+
summary: OpenSocial Google Gem. Gemified by Robert R Evans
|
112
|
+
test_files: []
|
113
|
+
|