oauth-activeresource 0.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/MIT-LICENSE +20 -0
- data/README.rdoc +27 -0
- data/Rakefile +38 -0
- data/lib/oauth-activeresource.rb +48 -0
- data/lib/oauth-activeresource/version.rb +3 -0
- data/lib/tasks/oauth_active_resource_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/migrate/20120215083511_create_users.rb +9 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +414 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/users.yml +7 -0
- data/test/dummy/test/unit/user_test.rb +7 -0
- data/test/oauth_activeresource_test.rb +56 -0
- data/test/test_helper.rb +10 -0
- metadata +148 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
</div>
|
24
|
+
</body>
|
25
|
+
</html>
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class OauthActiveResourceTest < ActiveSupport::TestCase
|
4
|
+
|
5
|
+
def setup
|
6
|
+
oauth_mock = stub("oauth")
|
7
|
+
oauth_mock.stubs(:get).with('http://example.com:80/users.json', {'Accept' => 'application/json'}).returns(valid_response_all)
|
8
|
+
oauth_mock.stubs(:post).with('http://example.com:80/users.json', list_users.first.to_json.to_s, {'Content-Type' => 'application/json'}).returns(valid_response_post)
|
9
|
+
User.oauth_connection = oauth_mock
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_user_model_should_inheritate_from_oauth_activeresource
|
13
|
+
assert_equal OauthActiveResource::Base, User.superclass
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_user_model_should_assign_access_token_after_assigning_to_base
|
17
|
+
OauthActiveResource::Base.oauth_connection = "test"
|
18
|
+
assert_equal User.oauth_connection, "test"
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_find_should_request_get
|
22
|
+
user = User.find(:all).first
|
23
|
+
assert_kind_of User, user
|
24
|
+
assert_equal user.name, "test"
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_create_should_request_post
|
28
|
+
user = User.create(list_users.first)
|
29
|
+
assert_kind_of User, user
|
30
|
+
assert_equal user.name, list_users.first[:user][:name]
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def list_users
|
36
|
+
[{:user => {:name => "test"}}]
|
37
|
+
end
|
38
|
+
|
39
|
+
def valid_response_all
|
40
|
+
response = stub("http_response")
|
41
|
+
response.stubs(:code).returns(200)
|
42
|
+
response.stubs(:body).returns(list_users.to_json)
|
43
|
+
response
|
44
|
+
end
|
45
|
+
|
46
|
+
def valid_response_post
|
47
|
+
[{:user => {:name => "test"}}]
|
48
|
+
response = stub("http_response")
|
49
|
+
response.stubs(:code).returns(200)
|
50
|
+
response.stubs(:[]).returns(nil)
|
51
|
+
response.stubs(:body).returns(nil)
|
52
|
+
response
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
5
|
+
require "rails/test_help"
|
6
|
+
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
8
|
+
|
9
|
+
# Load support files
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
metadata
ADDED
@@ -0,0 +1,148 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: oauth-activeresource
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Alberto Pastor
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-02-23 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: &70185366143780 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.2.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70185366143780
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: sqlite3
|
27
|
+
requirement: &70185366142840 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70185366142840
|
36
|
+
description:
|
37
|
+
email:
|
38
|
+
- albert.pastor@gmail.com
|
39
|
+
executables: []
|
40
|
+
extensions: []
|
41
|
+
extra_rdoc_files: []
|
42
|
+
files:
|
43
|
+
- lib/oauth-activeresource/version.rb
|
44
|
+
- lib/oauth-activeresource.rb
|
45
|
+
- lib/tasks/oauth_active_resource_tasks.rake
|
46
|
+
- MIT-LICENSE
|
47
|
+
- Rakefile
|
48
|
+
- README.rdoc
|
49
|
+
- test/dummy/app/assets/javascripts/application.js
|
50
|
+
- test/dummy/app/assets/stylesheets/application.css
|
51
|
+
- test/dummy/app/controllers/application_controller.rb
|
52
|
+
- test/dummy/app/helpers/application_helper.rb
|
53
|
+
- test/dummy/app/models/user.rb
|
54
|
+
- test/dummy/app/views/layouts/application.html.erb
|
55
|
+
- test/dummy/config/application.rb
|
56
|
+
- test/dummy/config/boot.rb
|
57
|
+
- test/dummy/config/database.yml
|
58
|
+
- test/dummy/config/environment.rb
|
59
|
+
- test/dummy/config/environments/development.rb
|
60
|
+
- test/dummy/config/environments/production.rb
|
61
|
+
- test/dummy/config/environments/test.rb
|
62
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
63
|
+
- test/dummy/config/initializers/inflections.rb
|
64
|
+
- test/dummy/config/initializers/mime_types.rb
|
65
|
+
- test/dummy/config/initializers/secret_token.rb
|
66
|
+
- test/dummy/config/initializers/session_store.rb
|
67
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
68
|
+
- test/dummy/config/locales/en.yml
|
69
|
+
- test/dummy/config/routes.rb
|
70
|
+
- test/dummy/config.ru
|
71
|
+
- test/dummy/db/migrate/20120215083511_create_users.rb
|
72
|
+
- test/dummy/db/test.sqlite3
|
73
|
+
- test/dummy/log/development.log
|
74
|
+
- test/dummy/log/test.log
|
75
|
+
- test/dummy/public/404.html
|
76
|
+
- test/dummy/public/422.html
|
77
|
+
- test/dummy/public/500.html
|
78
|
+
- test/dummy/public/favicon.ico
|
79
|
+
- test/dummy/Rakefile
|
80
|
+
- test/dummy/README.rdoc
|
81
|
+
- test/dummy/script/rails
|
82
|
+
- test/dummy/test/fixtures/users.yml
|
83
|
+
- test/dummy/test/unit/user_test.rb
|
84
|
+
- test/oauth_activeresource_test.rb
|
85
|
+
- test/test_helper.rb
|
86
|
+
homepage: https://github.com/albertopq/oauth-activeresource
|
87
|
+
licenses: []
|
88
|
+
post_install_message:
|
89
|
+
rdoc_options: []
|
90
|
+
require_paths:
|
91
|
+
- lib
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
94
|
+
requirements:
|
95
|
+
- - ! '>='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
none: false
|
100
|
+
requirements:
|
101
|
+
- - ! '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 1.8.10
|
107
|
+
signing_key:
|
108
|
+
specification_version: 3
|
109
|
+
summary: Rails gem that allows you to easily interact with an Oauth secured rest API
|
110
|
+
with the ActiveResource model.
|
111
|
+
test_files:
|
112
|
+
- test/dummy/app/assets/javascripts/application.js
|
113
|
+
- test/dummy/app/assets/stylesheets/application.css
|
114
|
+
- test/dummy/app/controllers/application_controller.rb
|
115
|
+
- test/dummy/app/helpers/application_helper.rb
|
116
|
+
- test/dummy/app/models/user.rb
|
117
|
+
- test/dummy/app/views/layouts/application.html.erb
|
118
|
+
- test/dummy/config/application.rb
|
119
|
+
- test/dummy/config/boot.rb
|
120
|
+
- test/dummy/config/database.yml
|
121
|
+
- test/dummy/config/environment.rb
|
122
|
+
- test/dummy/config/environments/development.rb
|
123
|
+
- test/dummy/config/environments/production.rb
|
124
|
+
- test/dummy/config/environments/test.rb
|
125
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
126
|
+
- test/dummy/config/initializers/inflections.rb
|
127
|
+
- test/dummy/config/initializers/mime_types.rb
|
128
|
+
- test/dummy/config/initializers/secret_token.rb
|
129
|
+
- test/dummy/config/initializers/session_store.rb
|
130
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
131
|
+
- test/dummy/config/locales/en.yml
|
132
|
+
- test/dummy/config/routes.rb
|
133
|
+
- test/dummy/config.ru
|
134
|
+
- test/dummy/db/migrate/20120215083511_create_users.rb
|
135
|
+
- test/dummy/db/test.sqlite3
|
136
|
+
- test/dummy/log/development.log
|
137
|
+
- test/dummy/log/test.log
|
138
|
+
- test/dummy/public/404.html
|
139
|
+
- test/dummy/public/422.html
|
140
|
+
- test/dummy/public/500.html
|
141
|
+
- test/dummy/public/favicon.ico
|
142
|
+
- test/dummy/Rakefile
|
143
|
+
- test/dummy/README.rdoc
|
144
|
+
- test/dummy/script/rails
|
145
|
+
- test/dummy/test/fixtures/users.yml
|
146
|
+
- test/dummy/test/unit/user_test.rb
|
147
|
+
- test/oauth_activeresource_test.rb
|
148
|
+
- test/test_helper.rb
|