openid-token-proxy 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +4 -0
- data/Guardfile +41 -0
- data/LICENSE.md +22 -0
- data/README.md +211 -0
- data/Rakefile +16 -0
- data/app/controllers/openid_token_proxy/application_controller.rb +4 -0
- data/app/controllers/openid_token_proxy/callback_controller.rb +22 -0
- data/config/initializers/inflections.rb +3 -0
- data/config/routes.rb +3 -0
- data/docs/diagrams.sketch +0 -0
- data/docs/openid-token-proxy-flow.png +0 -0
- data/docs/regular-openid-flow.png +0 -0
- data/lib/openid-token-proxy.rb +1 -0
- data/lib/openid_token_proxy/client.rb +48 -0
- data/lib/openid_token_proxy/config.rb +56 -0
- data/lib/openid_token_proxy/engine.rb +5 -0
- data/lib/openid_token_proxy/error.rb +7 -0
- data/lib/openid_token_proxy/token/authentication.rb +54 -0
- data/lib/openid_token_proxy/token/expired.rb +12 -0
- data/lib/openid_token_proxy/token/invalid_application.rb +12 -0
- data/lib/openid_token_proxy/token/invalid_audience.rb +12 -0
- data/lib/openid_token_proxy/token/invalid_issuer.rb +12 -0
- data/lib/openid_token_proxy/token/malformed.rb +12 -0
- data/lib/openid_token_proxy/token/refresh.rb +30 -0
- data/lib/openid_token_proxy/token/required.rb +12 -0
- data/lib/openid_token_proxy/token/unverifiable_signature.rb +12 -0
- data/lib/openid_token_proxy/token.rb +80 -0
- data/lib/openid_token_proxy/version.rb +3 -0
- data/lib/openid_token_proxy.rb +40 -0
- data/openid-token-proxy.gemspec +35 -0
- data/spec/controllers/openid_token_proxy/callback_controller_spec.rb +72 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/accounts_controller.rb +10 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/controllers/home_controller.rb +7 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/home/index.html.erb +25 -0
- data/spec/dummy/app/views/layouts/application.html.erb +54 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +27 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +34 -0
- data/spec/dummy/config/environments/production.rb +75 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/openid.rb +5 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/keys.json +26 -0
- data/spec/fixtures/openid-configuration.json +30 -0
- data/spec/lib/openid_token_proxy/client_spec.rb +150 -0
- data/spec/lib/openid_token_proxy/config_spec.rb +201 -0
- data/spec/lib/openid_token_proxy/error_spec.rb +11 -0
- data/spec/lib/openid_token_proxy/token/authentication_spec.rb +67 -0
- data/spec/lib/openid_token_proxy/token/refresh_spec.rb +71 -0
- data/spec/lib/openid_token_proxy/token_spec.rb +138 -0
- data/spec/lib/openid_token_proxy_spec.rb +38 -0
- data/spec/spec_helper.rb +88 -0
- data/spec/support/env.rb +4 -0
- data/spec/support/fixture.rb +3 -0
- metadata +359 -0
@@ -0,0 +1,80 @@
|
|
1
|
+
require 'openid_token_proxy/token/expired'
|
2
|
+
require 'openid_token_proxy/token/invalid_application'
|
3
|
+
require 'openid_token_proxy/token/invalid_audience'
|
4
|
+
require 'openid_token_proxy/token/invalid_issuer'
|
5
|
+
require 'openid_token_proxy/token/malformed'
|
6
|
+
require 'openid_token_proxy/token/required'
|
7
|
+
require 'openid_token_proxy/token/unverifiable_signature'
|
8
|
+
|
9
|
+
module OpenIDTokenProxy
|
10
|
+
class Token
|
11
|
+
attr_accessor :access_token, :id_token, :refresh_token
|
12
|
+
|
13
|
+
def initialize(access_token, id_token = nil, refresh_token = nil)
|
14
|
+
@access_token = access_token
|
15
|
+
if id_token.is_a? Hash
|
16
|
+
id_token = OpenIDConnect::ResponseObject::IdToken.new(id_token)
|
17
|
+
end
|
18
|
+
@id_token = id_token
|
19
|
+
@refresh_token = refresh_token
|
20
|
+
end
|
21
|
+
|
22
|
+
def to_s
|
23
|
+
@access_token
|
24
|
+
end
|
25
|
+
|
26
|
+
# Retrieves data from identity attributes
|
27
|
+
def [](key)
|
28
|
+
id_token.raw_attributes[key]
|
29
|
+
end
|
30
|
+
|
31
|
+
# Validates this token's expiration state, application, audience and issuer
|
32
|
+
def validate!(assertions = {})
|
33
|
+
raise Expired if expired?
|
34
|
+
|
35
|
+
# TODO: Nonce validation
|
36
|
+
|
37
|
+
if assertions[:audience]
|
38
|
+
audiences = Array(id_token.aud)
|
39
|
+
raise InvalidAudience unless audiences.include? assertions[:audience]
|
40
|
+
end
|
41
|
+
|
42
|
+
if assertions[:client_id]
|
43
|
+
appid = id_token.raw_attributes['appid']
|
44
|
+
raise InvalidApplication if appid && appid != assertions[:client_id]
|
45
|
+
end
|
46
|
+
|
47
|
+
if assertions[:issuer]
|
48
|
+
issuer = id_token.iss
|
49
|
+
raise InvalidIssuer unless issuer == assertions[:issuer]
|
50
|
+
end
|
51
|
+
|
52
|
+
true
|
53
|
+
end
|
54
|
+
|
55
|
+
def expired?
|
56
|
+
id_token.exp.to_i <= Time.now.to_i
|
57
|
+
end
|
58
|
+
|
59
|
+
# Decodes given access token and validates its signature by public key(s)
|
60
|
+
# Use :skip_verification as second argument to skip signature validation
|
61
|
+
def self.decode!(access_token, keys = OpenIDTokenProxy.config.public_keys)
|
62
|
+
raise Required if access_token.blank?
|
63
|
+
|
64
|
+
Array(keys).each do |key|
|
65
|
+
begin
|
66
|
+
object = OpenIDConnect::RequestObject.decode(access_token, key)
|
67
|
+
rescue JSON::JWT::InvalidFormat => e
|
68
|
+
raise Malformed.new(e.message)
|
69
|
+
rescue JSON::JWT::VerificationFailed
|
70
|
+
# Iterate through remaining public keys (if any)
|
71
|
+
# Raises TokenInvalid if none applied (see below)
|
72
|
+
else
|
73
|
+
return Token.new(access_token, object.raw_attributes)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
raise UnverifiableSignature
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require File.expand_path('../../config/initializers/inflections', __FILE__)
|
2
|
+
|
3
|
+
require 'openid_connect'
|
4
|
+
|
5
|
+
require 'openid_token_proxy/error'
|
6
|
+
|
7
|
+
require 'openid_token_proxy/client'
|
8
|
+
require 'openid_token_proxy/config'
|
9
|
+
require 'openid_token_proxy/engine'
|
10
|
+
require 'openid_token_proxy/token'
|
11
|
+
require 'openid_token_proxy/token/authentication'
|
12
|
+
require 'openid_token_proxy/token/refresh'
|
13
|
+
require 'openid_token_proxy/version'
|
14
|
+
|
15
|
+
module OpenIDTokenProxy
|
16
|
+
class << self
|
17
|
+
def client
|
18
|
+
@client ||= Client.new
|
19
|
+
end
|
20
|
+
|
21
|
+
def config
|
22
|
+
@config ||= Config.new
|
23
|
+
end
|
24
|
+
|
25
|
+
def configure
|
26
|
+
yield config
|
27
|
+
end
|
28
|
+
|
29
|
+
# Sets and yields a new global config for the duration of the given block
|
30
|
+
def configure_temporarily
|
31
|
+
original = config
|
32
|
+
@config = original.dup
|
33
|
+
client.config = @config
|
34
|
+
yield @config
|
35
|
+
ensure
|
36
|
+
@config = original
|
37
|
+
client.config = @config
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
lib = File.expand_path('../lib', __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
|
6
|
+
require 'openid_token_proxy/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = 'openid-token-proxy'
|
10
|
+
spec.version = OpenIDTokenProxy::VERSION
|
11
|
+
spec.authors = ['Tim Kurvers']
|
12
|
+
spec.email = ['ruby@hyper.no']
|
13
|
+
spec.summary = 'Retrieves and refreshes OpenID tokens on behalf of a user'
|
14
|
+
spec.description = 'Retrieves and refreshes OpenID tokens on behalf of a user when dealing with complex authentication schemes, such as client-side certificates'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0")
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(spec|features)/})
|
20
|
+
spec.require_paths = ['lib']
|
21
|
+
|
22
|
+
spec.add_dependency 'openid_connect', '~> 0.8.3'
|
23
|
+
spec.add_dependency 'rails', '~> 4.0'
|
24
|
+
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.6'
|
26
|
+
spec.add_development_dependency 'coveralls', '~> 0.7.12'
|
27
|
+
spec.add_development_dependency 'guard', '~> 2.12.5'
|
28
|
+
spec.add_development_dependency 'guard-rspec', '~> 4.5.0'
|
29
|
+
spec.add_development_dependency 'pry', '~> 0.10.1'
|
30
|
+
spec.add_development_dependency 'pry-rails', '~> 0.3.4'
|
31
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
32
|
+
spec.add_development_dependency 'rspec-rails', '~> 3.2.1'
|
33
|
+
spec.add_development_dependency 'simplecov', '~> 0.9.2'
|
34
|
+
spec.add_development_dependency 'webmock', '~> 1.21.0'
|
35
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe OpenIDTokenProxy::CallbackController, type: :controller do
|
4
|
+
routes { OpenIDTokenProxy::Engine.routes }
|
5
|
+
let(:access_token) { 'access token' }
|
6
|
+
let(:auth_code) { 'authorization code' }
|
7
|
+
let(:client) { OpenIDTokenProxy.client }
|
8
|
+
let(:token) { double(access_token: access_token) }
|
9
|
+
|
10
|
+
context 'when authorization code is missing' do
|
11
|
+
it 'results in 400 BAD REQUEST with error message' do
|
12
|
+
get :handle
|
13
|
+
expect(response.body).to eq "Required parameter 'code' missing."
|
14
|
+
expect(response).to have_http_status :bad_request
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
context 'when authorization code is given' do
|
19
|
+
context 'when authorization code could not be exchanged' do
|
20
|
+
it 'results in 400 BAD REQUEST with error message' do
|
21
|
+
error = OpenIDTokenProxy::Client::AuthCodeError.new 'msg'
|
22
|
+
expect(client).to receive(:retrieve_token!).with(
|
23
|
+
auth_code: auth_code
|
24
|
+
).and_raise error
|
25
|
+
get :handle, code: auth_code
|
26
|
+
expect(response.body).to eq 'Could not exchange authorization code: msg.'
|
27
|
+
expect(response).to have_http_status :bad_request
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'when authorization code could be exchanged' do
|
32
|
+
before do
|
33
|
+
expect(client).to receive(:retrieve_token!).and_return token
|
34
|
+
end
|
35
|
+
|
36
|
+
context 'with no-op token acquirement hook' do
|
37
|
+
it 'redirects to root' do
|
38
|
+
OpenIDTokenProxy.configure_temporarily do |config|
|
39
|
+
config.token_acquirement_hook = proc { }
|
40
|
+
get :handle, code: auth_code
|
41
|
+
expect(response).to redirect_to controller.main_app.root_url
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
context 'when returning URI from token acquirement hook' do
|
47
|
+
it 'redirects to returned URI' do
|
48
|
+
OpenIDTokenProxy.configure_temporarily do |config|
|
49
|
+
uri = '/#token'
|
50
|
+
config.token_acquirement_hook = proc { |token, error|
|
51
|
+
uri
|
52
|
+
}
|
53
|
+
get :handle, code: auth_code
|
54
|
+
expect(response).to redirect_to uri
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
context 'when performing an action within token acquirement hook' do
|
60
|
+
it 'takes no additional action' do
|
61
|
+
OpenIDTokenProxy.configure_temporarily do |config|
|
62
|
+
config.token_acquirement_hook = proc { |token, error|
|
63
|
+
render text: 'Custom action'
|
64
|
+
}
|
65
|
+
get :handle, code: auth_code
|
66
|
+
expect(response.body).to eq 'Custom action'
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
data/spec/dummy/Rakefile
ADDED
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Visit <a href="<%= OpenIDTokenProxy.client.authorization_uri %>"> authorization URI</a> and sign in.
|
2
|
+
|
3
|
+
<% if raw_token %>
|
4
|
+
<hr />
|
5
|
+
|
6
|
+
<dl>
|
7
|
+
<dt>Token</dt>
|
8
|
+
<dd><%= current_token %></dd>
|
9
|
+
<dt>Refresh token</dt>
|
10
|
+
<dd><%= raw_refresh_token || '-' %></dd>
|
11
|
+
</dl>
|
12
|
+
|
13
|
+
<hr />
|
14
|
+
|
15
|
+
<%= link_to 'Use your token', account_path(token: current_token, refresh_token: raw_refresh_token) %> for API authentication.
|
16
|
+
|
17
|
+
<hr />
|
18
|
+
|
19
|
+
<dd>
|
20
|
+
<% current_token.id_token.raw_attributes.each_pair do |key, value| %>
|
21
|
+
<dt><%= key.humanize %></dt>
|
22
|
+
<dd><%= value %></dd>
|
23
|
+
<% end %>
|
24
|
+
</dl>
|
25
|
+
<% end %>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>OpenID token proxy</title>
|
5
|
+
<meta charset="utf8" />
|
6
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
7
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
8
|
+
<%= csrf_meta_tags %>
|
9
|
+
<style>
|
10
|
+
body {
|
11
|
+
font: 14px 'Helvetica';
|
12
|
+
line-height: 1.2em;
|
13
|
+
}
|
14
|
+
|
15
|
+
dt {
|
16
|
+
font-weight: bold;
|
17
|
+
margin: 1em 0 .2em;
|
18
|
+
}
|
19
|
+
|
20
|
+
dd {
|
21
|
+
margin: 0 1em;
|
22
|
+
word-break: break-all;
|
23
|
+
}
|
24
|
+
|
25
|
+
hr {
|
26
|
+
margin: 2em 0;
|
27
|
+
border: 1px solid #DDDDDD;
|
28
|
+
}
|
29
|
+
</style>
|
30
|
+
</head>
|
31
|
+
<body>
|
32
|
+
<%
|
33
|
+
client = OpenIDTokenProxy.client
|
34
|
+
config = OpenIDTokenProxy.config
|
35
|
+
%>
|
36
|
+
|
37
|
+
<dl>
|
38
|
+
<dt>Client ID</dt>
|
39
|
+
<dd><%= config.client_id %></dd>
|
40
|
+
<dt>Client secret</dt>
|
41
|
+
<dd><%= config.client_secret %></dd>
|
42
|
+
<dt>Issuer</dt>
|
43
|
+
<dd><%= config.issuer %></dd>
|
44
|
+
<dt>Public keys</dt>
|
45
|
+
<dd><%= config.public_keys.count %></dd>
|
46
|
+
<dt>Authorization URI</dt>
|
47
|
+
<dd><%= client.authorization_uri %></dd>
|
48
|
+
</dl>
|
49
|
+
|
50
|
+
<hr />
|
51
|
+
|
52
|
+
<%= yield %>
|
53
|
+
</body>
|
54
|
+
</html>
|
data/spec/dummy/bin/rake
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
# require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "action_view/railtie"
|
8
|
+
require "sprockets/railtie"
|
9
|
+
require "rails/test_unit/railtie"
|
10
|
+
|
11
|
+
Bundler.require(*Rails.groups)
|
12
|
+
|
13
|
+
module Dummy
|
14
|
+
class Application < Rails::Application
|
15
|
+
# Settings in config/environments/* take precedence over those specified here.
|
16
|
+
# Application configuration should go into files in config/initializers
|
17
|
+
# -- all .rb files in that directory are automatically loaded.
|
18
|
+
|
19
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
20
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
21
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
22
|
+
|
23
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
24
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
25
|
+
# config.i18n.default_locale = :de
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
23
|
+
# This option may cause significant delays in view rendering with a large
|
24
|
+
# number of complex assets.
|
25
|
+
config.assets.debug = true
|
26
|
+
|
27
|
+
# Adds additional error checking when serving assets at runtime.
|
28
|
+
# Checks for improperly declared sprockets dependencies.
|
29
|
+
# Raises helpful error messages.
|
30
|
+
config.assets.raise_runtime_errors = true
|
31
|
+
|
32
|
+
# Raises error for missing translations
|
33
|
+
# config.action_view.raise_on_missing_translations = true
|
34
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both threaded web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
+
config.serve_static_files = false
|
24
|
+
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
31
|
+
|
32
|
+
# Generate digests for assets URLs.
|
33
|
+
config.assets.digest = true
|
34
|
+
|
35
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
36
|
+
|
37
|
+
# Specifies the header that your server uses for sending files.
|
38
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
39
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
40
|
+
|
41
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
42
|
+
# config.force_ssl = true
|
43
|
+
|
44
|
+
# Set to :debug to see everything in the log.
|
45
|
+
config.log_level = :info
|
46
|
+
|
47
|
+
# Prepend all log lines with the following tags.
|
48
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
49
|
+
|
50
|
+
# Use a different logger for distributed setups.
|
51
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
52
|
+
|
53
|
+
# Use a different cache store in production.
|
54
|
+
# config.cache_store = :mem_cache_store
|
55
|
+
|
56
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
57
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
58
|
+
|
59
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
60
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
61
|
+
# config.action_mailer.raise_delivery_errors = false
|
62
|
+
|
63
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
64
|
+
# the I18n.default_locale when a translation cannot be found).
|
65
|
+
config.i18n.fallbacks = true
|
66
|
+
|
67
|
+
# Send deprecation notices to registered listeners.
|
68
|
+
config.active_support.deprecation = :notify
|
69
|
+
|
70
|
+
# Disable automatic flushing of the log to improve performance.
|
71
|
+
# config.autoflush_log = false
|
72
|
+
|
73
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
74
|
+
config.log_formatter = ::Logger::Formatter.new
|
75
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_files = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
|
37
|
+
# Raises error for missing translations
|
38
|
+
# config.action_view.raise_on_missing_translations = true
|
39
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Precompile additional assets.
|
7
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
8
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|