google-directory 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +34 -0
- data/lib/google-directory/config.rb +132 -0
- data/lib/google-directory/version.rb +3 -0
- data/lib/google_directory.rb +111 -0
- data/lib/tasks/google-directory_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/google_directory.yaml +7 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/google_directory.rb +14 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +126 -0
- data/test/dummy/log/test.log +16 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/google-directory_test.rb +7 -0
- data/test/test_helper.rb +18 -0
- metadata +181 -0
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,126 @@
|
|
1
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
6
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
7
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
8
|
+
Decompressing gzip encoded response (12983 bytes)
|
9
|
+
Decompressed (116848 bytes)
|
10
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 21 Apr 2015 22:37:20 GMT", "date"=>"Tue, 21 Apr 2015 22:32:20 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"12983", "server"=>"GSE", "age"=>"206", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
11
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/admin/directory/v1/users/saeko@kioru.com {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>"", "Authorization"=>"Bearer ya29.GQEo3gF-dMx62MiAPN1IPKj4M3FetiHbfRjlo04J-QUACZCgHcmeEI8mim3dCDXmhP3Qgtx3urpjaQ6zUAwZkaRsZwybsPVaeIK1OKAvZa7sfkBahjOG-10g_h6I-bHuRdCrqSK9W1XF5g", "Cache-Control"=>"no-store"}
|
12
|
+
Decompressing gzip encoded response (162 bytes)
|
13
|
+
Decompressed (249 bytes)
|
14
|
+
Google::APIClient::Request Result: 401 {"vary"=>"Origin, X-Origin", "www-authenticate"=>"Bearer realm=\"https://accounts.google.com/\", error=invalid_token", "content-type"=>"application/json; charset=UTF-8", "date"=>"Tue, 21 Apr 2015 22:36:48 GMT", "expires"=>"Tue, 21 Apr 2015 22:36:48 GMT", "cache-control"=>"private, max-age=0", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "server"=>"GSE", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close", "transfer-encoding"=>"chunked"}
|
15
|
+
Attempting refresh of access token & retry of request
|
16
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/admin/directory/v1/users/saeko@kioru.com {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>"", "Authorization"=>"Bearer ya29.XAFogk_BfRzXQI-5nY-sAdKA2DhJgl1tyCJipeqcHoMD0ltX2lQZ-9UrOxC-U9oQnF7sjSPx1OqyjxMHhQtmPnTxgCy9DFdC6mnLweg0_BrOpcQPDwvT0TIUPu5dNidLDRyHKWepkT5pqg", "Cache-Control"=>"no-store"}
|
17
|
+
Decompressing gzip encoded response (149 bytes)
|
18
|
+
Decompressed (232 bytes)
|
19
|
+
Google::APIClient::Request Result: 403 {"vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "date"=>"Tue, 21 Apr 2015 22:36:49 GMT", "expires"=>"Tue, 21 Apr 2015 22:36:49 GMT", "cache-control"=>"private, max-age=0", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "server"=>"GSE", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close", "transfer-encoding"=>"chunked"}
|
20
|
+
== Google ERROR ==
|
21
|
+
- execute({:api_method=>#<Google::APIClient::Method:0x3fc77cb2d2b0 ID:directory.users.get>, :parameters=>{"userKey"=>"saeko@kioru.com"}})
|
22
|
+
- response:
|
23
|
+
--- !ruby/object:Faraday::Response
|
24
|
+
on_complete_callbacks: []
|
25
|
+
env: !ruby/struct:Faraday::Env
|
26
|
+
method: :get
|
27
|
+
body: |
|
28
|
+
{
|
29
|
+
"error": {
|
30
|
+
"errors": [
|
31
|
+
{
|
32
|
+
"domain": "global",
|
33
|
+
"reason": "forbidden",
|
34
|
+
"message": "Not Authorized to access this resource/api"
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"code": 403,
|
38
|
+
"message": "Not Authorized to access this resource/api"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
url: !ruby/object:URI::HTTPS
|
42
|
+
scheme: https
|
43
|
+
user:
|
44
|
+
password:
|
45
|
+
host: www.googleapis.com
|
46
|
+
port: 443
|
47
|
+
path: "/admin/directory/v1/users/saeko@kioru.com"
|
48
|
+
query:
|
49
|
+
opaque:
|
50
|
+
registry:
|
51
|
+
fragment:
|
52
|
+
parser:
|
53
|
+
request: !ruby/struct:Faraday::RequestOptions
|
54
|
+
params_encoder: !ruby/module 'Faraday::FlatParamsEncoder'
|
55
|
+
proxy:
|
56
|
+
bind:
|
57
|
+
timeout:
|
58
|
+
open_timeout:
|
59
|
+
boundary:
|
60
|
+
oauth:
|
61
|
+
request_headers: !ruby/hash:Faraday::Utils::Headers
|
62
|
+
User-Agent: |-
|
63
|
+
Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2
|
64
|
+
(gzip)
|
65
|
+
Accept-Encoding: gzip
|
66
|
+
Content-Type: ''
|
67
|
+
Authorization: Bearer ya29.XAFogk_BfRzXQI-5nY-sAdKA2DhJgl1tyCJipeqcHoMD0ltX2lQZ-9UrOxC-U9oQnF7sjSPx1OqyjxMHhQtmPnTxgCy9DFdC6mnLweg0_BrOpcQPDwvT0TIUPu5dNidLDRyHKWepkT5pqg
|
68
|
+
Cache-Control: no-store
|
69
|
+
ssl: !ruby/struct:Faraday::SSLOptions
|
70
|
+
verify: true
|
71
|
+
ca_file: "/Users/Omac/.rbenv/versions/2.1.4/lib/ruby/gems/2.1.0/gems/google-api-client-0.8.6/lib/cacerts.pem"
|
72
|
+
ca_path:
|
73
|
+
verify_mode:
|
74
|
+
cert_store:
|
75
|
+
client_cert:
|
76
|
+
client_key:
|
77
|
+
certificate:
|
78
|
+
private_key:
|
79
|
+
verify_depth:
|
80
|
+
version:
|
81
|
+
symbolized_key_set: !ruby/object:Set
|
82
|
+
hash:
|
83
|
+
:verify: true
|
84
|
+
:ca_file: true
|
85
|
+
parallel_manager:
|
86
|
+
params:
|
87
|
+
response:
|
88
|
+
response_headers: !ruby/hash:Faraday::Utils::Headers
|
89
|
+
vary: Origin, X-Origin
|
90
|
+
content-type: application/json; charset=UTF-8
|
91
|
+
date: Tue, 21 Apr 2015 22:36:49 GMT
|
92
|
+
expires: Tue, 21 Apr 2015 22:36:49 GMT
|
93
|
+
cache-control: private, max-age=0
|
94
|
+
x-content-type-options: nosniff
|
95
|
+
x-frame-options: SAMEORIGIN
|
96
|
+
x-xss-protection: 1; mode=block
|
97
|
+
server: GSE
|
98
|
+
alternate-protocol: 443:quic,p=1
|
99
|
+
connection: close
|
100
|
+
transfer-encoding: chunked
|
101
|
+
status: 403
|
102
|
+
|
103
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/admin/directory/v1/users/saeko@redcuc.edu.mx {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>"", "Authorization"=>"Bearer ya29.XAFogk_BfRzXQI-5nY-sAdKA2DhJgl1tyCJipeqcHoMD0ltX2lQZ-9UrOxC-U9oQnF7sjSPx1OqyjxMHhQtmPnTxgCy9DFdC6mnLweg0_BrOpcQPDwvT0TIUPu5dNidLDRyHKWepkT5pqg", "Cache-Control"=>"no-store"}
|
104
|
+
Decompressing gzip encoded response (459 bytes)
|
105
|
+
Decompressed (731 bytes)
|
106
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 21 Apr 2015 22:37:31 GMT", "date"=>"Tue, 21 Apr 2015 22:37:31 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"MO4FtId2-yiZq_-3TpU3AZTf2Ak/Jc3tavO7FgPl-uwCuAjNksmOsTk\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "server"=>"GSE", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close", "transfer-encoding"=>"chunked"}
|
107
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
108
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
109
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
110
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
111
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
112
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Wed, 22 Apr 2015 01:33:47 GMT", "date"=>"Wed, 22 Apr 2015 01:28:47 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"116848", "server"=>"GSE", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "age"=>"0", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
113
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
114
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
115
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Wed, 22 Apr 2015 01:33:47 GMT", "date"=>"Wed, 22 Apr 2015 01:28:47 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"116848", "server"=>"GSE", "age"=>"57", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
116
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
117
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
118
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Wed, 22 Apr 2015 01:33:47 GMT", "date"=>"Wed, 22 Apr 2015 01:28:47 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"116848", "server"=>"GSE", "age"=>"85", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
119
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
120
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
121
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Wed, 22 Apr 2015 01:33:47 GMT", "date"=>"Wed, 22 Apr 2015 01:28:47 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"116848", "server"=>"GSE", "age"=>"254", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
122
|
+
Google::APIClient - Initializing client with options {:application_name=>"Saeko Directory API", :application_version=>"1.0.0"}
|
123
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/admin/directory_v1/rest {"User-Agent"=>"Saeko Directory API/1.0.0 google-api-ruby-client/0.8.6 Mac OS X/10.10.2\n (gzip)", "Accept-Encoding"=>"gzip", "Content-Type"=>""}
|
124
|
+
Decompressing gzip encoded response (12983 bytes)
|
125
|
+
Decompressed (116848 bytes)
|
126
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Wed, 22 Apr 2015 01:35:02 GMT", "date"=>"Wed, 22 Apr 2015 01:30:02 GMT", "etag"=>"\"ye6orv2F-1npMW3u9suM3a7C5Bo/Gkp35yY2tnMjjfSgryNCrENSB-w\"", "vary"=>"Origin, X-Origin", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"12983", "server"=>"GSE", "age"=>"263", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic,p=1", "connection"=>"close"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
-------------------------------
|
3
|
+
GoogleDirectoryTest: test_truth
|
4
|
+
-------------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
7
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
8
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
9
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
10
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
12
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13
|
+
-------------------------------
|
14
|
+
GoogleDirectoryTest: test_truth
|
15
|
+
-------------------------------
|
16
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
5
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
|
6
|
+
require "rails/test_help"
|
7
|
+
|
8
|
+
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
9
|
+
# to be shown.
|
10
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
11
|
+
|
12
|
+
# Load support files
|
13
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
14
|
+
|
15
|
+
# Load fixtures from the engine
|
16
|
+
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
17
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: google-directory
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Omar Osorio
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-04-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: google-api-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.2'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sqlite3
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Relying on the Google Ruby API gem you are able to set up a Rails project
|
56
|
+
for consuming the Directory API (or the Admin SDK). Even multiple domain access
|
57
|
+
is allowed using scopes.
|
58
|
+
email:
|
59
|
+
- omar@kioru.com
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- MIT-LICENSE
|
65
|
+
- Rakefile
|
66
|
+
- lib/google-directory/config.rb
|
67
|
+
- lib/google-directory/version.rb
|
68
|
+
- lib/google_directory.rb
|
69
|
+
- lib/tasks/google-directory_tasks.rake
|
70
|
+
- test/dummy/README.rdoc
|
71
|
+
- test/dummy/Rakefile
|
72
|
+
- test/dummy/app/assets/javascripts/application.js
|
73
|
+
- test/dummy/app/assets/stylesheets/application.css
|
74
|
+
- test/dummy/app/controllers/application_controller.rb
|
75
|
+
- test/dummy/app/helpers/application_helper.rb
|
76
|
+
- test/dummy/app/views/layouts/application.html.erb
|
77
|
+
- test/dummy/bin/bundle
|
78
|
+
- test/dummy/bin/rails
|
79
|
+
- test/dummy/bin/rake
|
80
|
+
- test/dummy/bin/setup
|
81
|
+
- test/dummy/config.ru
|
82
|
+
- test/dummy/config/application.rb
|
83
|
+
- test/dummy/config/boot.rb
|
84
|
+
- test/dummy/config/database.yml
|
85
|
+
- test/dummy/config/environment.rb
|
86
|
+
- test/dummy/config/environments/development.rb
|
87
|
+
- test/dummy/config/environments/production.rb
|
88
|
+
- test/dummy/config/environments/test.rb
|
89
|
+
- test/dummy/config/google_directory.yaml
|
90
|
+
- test/dummy/config/initializers/assets.rb
|
91
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
92
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
93
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
94
|
+
- test/dummy/config/initializers/google_directory.rb
|
95
|
+
- test/dummy/config/initializers/inflections.rb
|
96
|
+
- test/dummy/config/initializers/mime_types.rb
|
97
|
+
- test/dummy/config/initializers/session_store.rb
|
98
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
99
|
+
- test/dummy/config/locales/en.yml
|
100
|
+
- test/dummy/config/routes.rb
|
101
|
+
- test/dummy/config/secrets.yml
|
102
|
+
- test/dummy/db/development.sqlite3
|
103
|
+
- test/dummy/db/schema.rb
|
104
|
+
- test/dummy/db/test.sqlite3
|
105
|
+
- test/dummy/log/development.log
|
106
|
+
- test/dummy/log/test.log
|
107
|
+
- test/dummy/public/404.html
|
108
|
+
- test/dummy/public/422.html
|
109
|
+
- test/dummy/public/500.html
|
110
|
+
- test/dummy/public/favicon.ico
|
111
|
+
- test/google-directory_test.rb
|
112
|
+
- test/test_helper.rb
|
113
|
+
homepage: https://github.com/Omac/google-directory
|
114
|
+
licenses:
|
115
|
+
- MIT
|
116
|
+
metadata: {}
|
117
|
+
post_install_message:
|
118
|
+
rdoc_options: []
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
requirements: []
|
132
|
+
rubyforge_project:
|
133
|
+
rubygems_version: 2.2.2
|
134
|
+
signing_key:
|
135
|
+
specification_version: 4
|
136
|
+
summary: Simple Google Directory API client wrapper for Rails
|
137
|
+
test_files:
|
138
|
+
- test/dummy/app/assets/javascripts/application.js
|
139
|
+
- test/dummy/app/assets/stylesheets/application.css
|
140
|
+
- test/dummy/app/controllers/application_controller.rb
|
141
|
+
- test/dummy/app/helpers/application_helper.rb
|
142
|
+
- test/dummy/app/views/layouts/application.html.erb
|
143
|
+
- test/dummy/bin/bundle
|
144
|
+
- test/dummy/bin/rails
|
145
|
+
- test/dummy/bin/rake
|
146
|
+
- test/dummy/bin/setup
|
147
|
+
- test/dummy/config/application.rb
|
148
|
+
- test/dummy/config/boot.rb
|
149
|
+
- test/dummy/config/database.yml
|
150
|
+
- test/dummy/config/environment.rb
|
151
|
+
- test/dummy/config/environments/development.rb
|
152
|
+
- test/dummy/config/environments/production.rb
|
153
|
+
- test/dummy/config/environments/test.rb
|
154
|
+
- test/dummy/config/google_directory.yaml
|
155
|
+
- test/dummy/config/initializers/assets.rb
|
156
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
157
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
158
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
159
|
+
- test/dummy/config/initializers/google_directory.rb
|
160
|
+
- test/dummy/config/initializers/inflections.rb
|
161
|
+
- test/dummy/config/initializers/mime_types.rb
|
162
|
+
- test/dummy/config/initializers/session_store.rb
|
163
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
164
|
+
- test/dummy/config/locales/en.yml
|
165
|
+
- test/dummy/config/routes.rb
|
166
|
+
- test/dummy/config/secrets.yml
|
167
|
+
- test/dummy/config.ru
|
168
|
+
- test/dummy/db/development.sqlite3
|
169
|
+
- test/dummy/db/schema.rb
|
170
|
+
- test/dummy/db/test.sqlite3
|
171
|
+
- test/dummy/log/development.log
|
172
|
+
- test/dummy/log/test.log
|
173
|
+
- test/dummy/public/404.html
|
174
|
+
- test/dummy/public/422.html
|
175
|
+
- test/dummy/public/500.html
|
176
|
+
- test/dummy/public/favicon.ico
|
177
|
+
- test/dummy/Rakefile
|
178
|
+
- test/dummy/README.rdoc
|
179
|
+
- test/google-directory_test.rb
|
180
|
+
- test/test_helper.rb
|
181
|
+
has_rdoc:
|