jump_in 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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +0 -0
- data/Rakefile +23 -0
- data/lib/jump_in/authentication/by_password.rb +13 -0
- data/lib/jump_in/authentication/strategy.rb +16 -0
- data/lib/jump_in/authentication.rb +97 -0
- data/lib/jump_in/password_reset.rb +54 -0
- data/lib/jump_in/tokenizer.rb +21 -0
- data/lib/jump_in/version.rb +3 -0
- data/lib/jump_in.rb +8 -0
- data/lib/tasks/jump_in_tasks.rake +4 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/controllers/application_controller.rb +8 -0
- data/spec/dummy/app/controllers/password_resets_controller.rb +34 -0
- data/spec/dummy/app/controllers/sessions_controller.rb +16 -0
- data/spec/dummy/app/controllers/users_controller.rb +32 -0
- data/spec/dummy/app/mailers/system_mailer.rb +8 -0
- data/spec/dummy/app/models/user.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +18 -0
- data/spec/dummy/app/views/password_resets/edit.html.erb +9 -0
- data/spec/dummy/app/views/password_resets/new.html.erb +7 -0
- data/spec/dummy/app/views/sessions/new.html.erb +7 -0
- data/spec/dummy/app/views/system_mailer/password_reset.html.erb +2 -0
- data/spec/dummy/app/views/users/show.html.erb +1 -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/bin/setup +29 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -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/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +10 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migrate/20150706144746_create_users.rb +11 -0
- data/spec/dummy/db/migrate/20150717123339_add_password_reset_token_to_users.rb +5 -0
- data/spec/dummy/db/schema.rb +25 -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/dummy/spec/controllers/password_resets_controller_spec.rb +53 -0
- data/spec/dummy/spec/controllers/sessions_controller_spec.rb +36 -0
- data/spec/dummy/spec/controllers/users_controller_spec.rb +20 -0
- data/spec/dummy/spec/factories.rb +9 -0
- data/spec/dummy/spec/integration/logging_spec.rb +18 -0
- data/spec/dummy/spec/integration/reset_password_spec.rb +39 -0
- data/spec/dummy/spec/modules/authentication_spec.rb +157 -0
- data/spec/dummy/spec/modules/password_reset_spec.rb +206 -0
- data/spec/dummy/spec/modules/tokenizer_spec.rb +19 -0
- data/spec/dummy/spec/rails_helper.rb +23 -0
- data/spec/dummy/spec/spec_helper.rb +15 -0
- data/spec/dummy/spec/support/common_methods.rb +64 -0
- metadata +170 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 318fdf2dd172c63b434927189856adf7faebc4f4
|
4
|
+
data.tar.gz: 32a22b706b0948f5da995cdf6f85b3f9746d0dc7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a8ff65b78df304466eaa27caf64c18fc61bd08af9898ece2c73eb2935f90c91ccb4eaeb1f581a8bc710b77a45e02de42f871d7c7deaf7daa57cff2cc3baa94fb
|
7
|
+
data.tar.gz: be6c454eda28bd44567a53e04b9f58dcb532bcc262e336125d356786754898217b10a25a248ad24cf2fc2549dc8348ae0302ae9f37c0bbb72d1319c0c73d46af
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2015 KatarzynaT-B
|
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.
|
data/README.rdoc
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'JumpIn'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
Bundler::GemHelper.install_tasks
|
23
|
+
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'jump_in/authentication/strategy'
|
2
|
+
require 'jump_in/authentication/by_password'
|
3
|
+
|
4
|
+
module JumpIn
|
5
|
+
module Authentication
|
6
|
+
|
7
|
+
STRATEGIES = [ByPassword]
|
8
|
+
|
9
|
+
def self.included(base)
|
10
|
+
base.send :helper_method, :current_user, :logged_in? if base.respond_to? :helper_method
|
11
|
+
end
|
12
|
+
|
13
|
+
# LOGGING IN
|
14
|
+
def jump_in(user:, permanent: false, expires: nil, **params)
|
15
|
+
return false if logged_in?
|
16
|
+
if authenticate_by_strategy(user: user, params: params)
|
17
|
+
login(user: user, permanent: permanent, expires: expires)
|
18
|
+
else
|
19
|
+
return false
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def authenticate_by_strategy(user:, params:)
|
24
|
+
if strategy = detected_strategy(user: user, params: params)
|
25
|
+
strategy.authenticate_user
|
26
|
+
else
|
27
|
+
false
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def login(user:, permanent: false, expires: nil)
|
32
|
+
if permanent
|
33
|
+
set_cookies(user: user, expires: expires)
|
34
|
+
else
|
35
|
+
set_session(user: user)
|
36
|
+
end
|
37
|
+
true
|
38
|
+
end
|
39
|
+
|
40
|
+
def set_cookies(user:, expires:)
|
41
|
+
expires = (expires || 20.years).from_now
|
42
|
+
cookies.signed[:jump_in_class] = { value: user.class.to_s, expires: expires }
|
43
|
+
cookies.signed[:jump_in_id] = { value: user.id, expires: expires }
|
44
|
+
end
|
45
|
+
|
46
|
+
def set_session(user:)
|
47
|
+
session[:jump_in_class] = user.class.to_s
|
48
|
+
session[:jump_in_id] = user.id
|
49
|
+
end
|
50
|
+
|
51
|
+
# LOGGING OUT
|
52
|
+
def jump_out
|
53
|
+
if session[:jump_in_id] && session[:jump_in_class]
|
54
|
+
delete_session
|
55
|
+
elsif cookies[:jump_in_id] && cookies[:jump_in_class]
|
56
|
+
delete_cookies
|
57
|
+
end
|
58
|
+
true
|
59
|
+
end
|
60
|
+
|
61
|
+
def delete_cookies
|
62
|
+
cookies.delete :jump_in_class
|
63
|
+
cookies.delete :jump_in_id
|
64
|
+
end
|
65
|
+
|
66
|
+
def delete_session
|
67
|
+
session.delete :jump_in_class
|
68
|
+
session.delete :jump_in_id
|
69
|
+
end
|
70
|
+
|
71
|
+
# HELPER METHODS
|
72
|
+
def current_user
|
73
|
+
return nil unless session_or_cookies_set?
|
74
|
+
klass = (session[:jump_in_class] || cookies.signed[:jump_in_class]).constantize
|
75
|
+
id = (session[:jump_in_id] || cookies.signed[:jump_in_id])
|
76
|
+
@current_user ||= klass.find_by_id(id)
|
77
|
+
end
|
78
|
+
|
79
|
+
def logged_in?
|
80
|
+
!!current_user
|
81
|
+
end
|
82
|
+
|
83
|
+
private
|
84
|
+
def session_or_cookies_set?
|
85
|
+
(session[:jump_in_id] && session[:jump_in_class]) ||
|
86
|
+
(cookies.signed[:jump_in_id] && cookies.signed[:jump_in_class])
|
87
|
+
end
|
88
|
+
|
89
|
+
def detected_strategy(user: user, params: params)
|
90
|
+
if strategy = STRATEGIES.detect { |strategy| strategy.detected?(params) }
|
91
|
+
strategy.new(user: user, params: params)
|
92
|
+
else
|
93
|
+
false
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module JumpIn
|
2
|
+
module PasswordReset
|
3
|
+
|
4
|
+
# CREATING TOKEN
|
5
|
+
def set_password_reset_for(user:, token: nil)
|
6
|
+
if token_uniq_or_empty?(user: user, token: token)
|
7
|
+
set_token(user: user, token: token)
|
8
|
+
else
|
9
|
+
false
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def set_token(user:, token:)
|
14
|
+
token ||= generate_unique_token_for(user: user)
|
15
|
+
user.update_attribute(:password_reset_token, token)
|
16
|
+
end
|
17
|
+
|
18
|
+
def generate_unique_token_for(user:)
|
19
|
+
loop do
|
20
|
+
token = generate_token
|
21
|
+
break token if token_uniq?(user: user, token: token)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def generate_token
|
26
|
+
JumpIn::Tokenizer.generate_token
|
27
|
+
end
|
28
|
+
|
29
|
+
def token_uniq_or_empty?(user:, token:)
|
30
|
+
(token && token_uniq?(user: user, token: token)) || token.nil?
|
31
|
+
end
|
32
|
+
|
33
|
+
def token_uniq?(user:, token:)
|
34
|
+
!user.class.where(password_reset_token: token).exists?
|
35
|
+
end
|
36
|
+
|
37
|
+
# RECEIVING TOKEN
|
38
|
+
def password_reset_valid?(password_reset_token:, expiration_time: 2.hours)
|
39
|
+
JumpIn::Tokenizer.decode_time(password_reset_token) > Time.now - expiration_time
|
40
|
+
end
|
41
|
+
|
42
|
+
def update_password_for(user:, password:, password_confirmation:, password_reset_token:)
|
43
|
+
if token_correct?(user_token: user.password_reset_token, received_token: password_reset_token)
|
44
|
+
user.update_attributes(password: password, password_confirmation: password_confirmation, password_reset_token: nil)
|
45
|
+
else
|
46
|
+
false
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def token_correct?(user_token:, received_token:)
|
51
|
+
user_token == received_token
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'base64'
|
2
|
+
|
3
|
+
module JumpIn
|
4
|
+
module Tokenizer
|
5
|
+
DELIMITER = '.'.freeze
|
6
|
+
|
7
|
+
def self.generate_token
|
8
|
+
Base64.encode64 [SecureRandom.hex(12), Time.now.xmlschema].join(DELIMITER)
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.decode_and_split_token(token)
|
12
|
+
Base64.decode64(token).split(DELIMITER)
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.decode_time(token)
|
16
|
+
token_time = decode_and_split_token(token)[1]
|
17
|
+
Time.parse(token_time)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
data/lib/jump_in.rb
ADDED
@@ -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
@@ -0,0 +1,8 @@
|
|
1
|
+
class ApplicationController < ActionController::Base
|
2
|
+
# Prevent CSRF attacks by raising an exception.
|
3
|
+
# For APIs, you may want to use :null_session instead.
|
4
|
+
protect_from_forgery with: :exception
|
5
|
+
|
6
|
+
include JumpIn::Authentication
|
7
|
+
include JumpIn::PasswordReset
|
8
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
class PasswordResetsController < ApplicationController
|
2
|
+
|
3
|
+
before_filter :authorize_by_token, :only => [:edit, :update]
|
4
|
+
|
5
|
+
def create
|
6
|
+
@user = User.find_by(email: params[:email].downcase)
|
7
|
+
if set_password_reset_for(user: @user)
|
8
|
+
SystemMailer.password_reset(@user).deliver
|
9
|
+
redirect_to login_path
|
10
|
+
else
|
11
|
+
render :new
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def update
|
16
|
+
user = User.where(password_reset_token: params[:token]).first
|
17
|
+
if user && update_password_for(user: user,
|
18
|
+
password: params[:password],
|
19
|
+
password_confirmation: params[:password_confirmation],
|
20
|
+
password_reset_token: params[:token])
|
21
|
+
redirect_to login_path
|
22
|
+
else
|
23
|
+
render :edit
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
def authorize_by_token
|
29
|
+
unless password_reset_valid?(password_reset_token: params[:token])
|
30
|
+
flash[:error] = "Sorry, your password-reset-token is too old"
|
31
|
+
redirect_to new_password_resets_path
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class SessionsController < ApplicationController
|
2
|
+
|
3
|
+
def create
|
4
|
+
user = User.find_by(email: params[:session][:email].downcase)
|
5
|
+
if login(user: user, password: params[:session][:password], permanent: true)
|
6
|
+
redirect_to user_path(user)
|
7
|
+
else
|
8
|
+
render :new
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def destroy
|
13
|
+
logout
|
14
|
+
redirect_to login_path
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
class UsersController < ApplicationController
|
2
|
+
before_filter :authorize, only: :show
|
3
|
+
|
4
|
+
def new
|
5
|
+
@user = User.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def create
|
9
|
+
@user = User.new(user_params)
|
10
|
+
if @user.save
|
11
|
+
redirect_to login_path
|
12
|
+
else
|
13
|
+
render :new
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def show
|
18
|
+
@user = User.find(params[:id])
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def user_params
|
24
|
+
params.require(:user).permit(:name, :email, :password, :password_confirmation)
|
25
|
+
end
|
26
|
+
|
27
|
+
def authorize
|
28
|
+
render nothing: true, status: 401 unless logged_in?
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<%= link_to "Log out", logout_path, method: :delete %>
|
7
|
+
|
8
|
+
<% flash.each do |type, message| %>
|
9
|
+
<div class="alert flash <%= type %>">
|
10
|
+
<%= message %>
|
11
|
+
</div>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<%= yield %>
|
15
|
+
</body>
|
16
|
+
</html>
|
17
|
+
|
18
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Edit for PasswordReset
|
2
|
+
|
3
|
+
<%= form_tag password_resets_path, method: :patch do %>
|
4
|
+
<%= password_field_tag :password %>
|
5
|
+
<%= password_field_tag :password_confirmation %>
|
6
|
+
<%= hidden_field_tag :token, params[:token] %>
|
7
|
+
<%= submit_tag "Set new password" %>
|
8
|
+
<% end %>
|
9
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
Show view for user
|
data/spec/dummy/bin/rake
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
# path to your application root.
|
5
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
6
|
+
|
7
|
+
Dir.chdir APP_ROOT do
|
8
|
+
# This script is a starting point to setup your application.
|
9
|
+
# Add necessary setup steps to this file:
|
10
|
+
|
11
|
+
puts "== Installing dependencies =="
|
12
|
+
system "gem install bundler --conservative"
|
13
|
+
system "bundle check || bundle install"
|
14
|
+
|
15
|
+
# puts "\n== Copying sample files =="
|
16
|
+
# unless File.exist?("config/database.yml")
|
17
|
+
# system "cp config/database.yml.sample config/database.yml"
|
18
|
+
# end
|
19
|
+
|
20
|
+
puts "\n== Preparing database =="
|
21
|
+
system "bin/rake db:setup"
|
22
|
+
|
23
|
+
puts "\n== Removing old logs and tempfiles =="
|
24
|
+
system "rm -f log/*"
|
25
|
+
system "rm -rf tmp/cache"
|
26
|
+
|
27
|
+
puts "\n== Restarting application server =="
|
28
|
+
system "touch tmp/restart.txt"
|
29
|
+
end
|
@@ -0,0 +1,32 @@
|
|
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
|
+
require "jump_in"
|
13
|
+
|
14
|
+
module Dummy
|
15
|
+
class Application < Rails::Application
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
17
|
+
# Application configuration should go into files in config/initializers
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
19
|
+
|
20
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
21
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
22
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
23
|
+
|
24
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
25
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
26
|
+
# config.i18n.default_locale = :de
|
27
|
+
|
28
|
+
# Do not swallow errors in after_commit/after_rollback callbacks.
|
29
|
+
config.active_record.raise_in_transactional_callbacks = true
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
#
|
7
|
+
default: &default
|
8
|
+
adapter: sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
development:
|
13
|
+
<<: *default
|
14
|
+
database: db/development.sqlite3
|
15
|
+
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
17
|
+
# re-generated from your development database when you run "rake".
|
18
|
+
# Do not set this db to the same as development or production.
|
19
|
+
test:
|
20
|
+
<<: *default
|
21
|
+
database: db/test.sqlite3
|
22
|
+
|
23
|
+
production:
|
24
|
+
<<: *default
|
25
|
+
database: db/production.sqlite3
|
@@ -0,0 +1,41 @@
|
|
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
|
+
# Raise an error on page load if there are pending migrations.
|
23
|
+
config.active_record.migration_error = :page_load
|
24
|
+
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
28
|
+
config.assets.debug = true
|
29
|
+
|
30
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
31
|
+
# yet still be able to expire them through the digest params.
|
32
|
+
config.assets.digest = true
|
33
|
+
|
34
|
+
# Adds additional error checking when serving assets at runtime.
|
35
|
+
# Checks for improperly declared sprockets dependencies.
|
36
|
+
# Raises helpful error messages.
|
37
|
+
config.assets.raise_runtime_errors = true
|
38
|
+
|
39
|
+
# Raises error for missing translations
|
40
|
+
# config.action_view.raise_on_missing_translations = true
|
41
|
+
end
|