accountant_clerk 0.5 → 0.6
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 +4 -4
- data/.gitignore +67 -11
- data/.travis.yml +10 -0
- data/Gemfile +33 -0
- data/Gemfile.lock +306 -0
- data/README.md +13 -3
- data/Rakefile +6 -0
- data/accountant_clerk.gemspec +5 -3
- data/app/assets/javascripts/accountant_office.js.coffee +2 -0
- data/app/controllers/manage_controller_decorator.rb +4 -4
- data/app/views/manage/report.html.haml +20 -28
- data/config/locales/en.yml +7 -1
- data/lib/accountant_clerk/engine.rb +8 -2
- data/spec/controllers/orders_controller_spec.rb +88 -0
- data/spec/features/edit_spec.rb +28 -0
- data/spec/features/orders_spec.rb +32 -0
- data/spec/routing/orders_routing_spec.rb +36 -0
- data/spec/spec_helper.rb +31 -24
- data/spec/support/admin.rb +4 -0
- data/spec/support/capybara.rb +14 -0
- data/spec/support/cleaner.rb +22 -0
- data/spec/support/email.rb +6 -0
- data/spec/support/factory_girl.rb +3 -0
- data/spec/support/request_helper.rb +31 -0
- data/test_app/README.rdoc +28 -0
- data/test_app/app/assets/javascripts/application.js +15 -0
- data/test_app/app/assets/stylesheets/application.css +13 -0
- data/test_app/app/controllers/application_controller.rb +5 -0
- data/test_app/app/helpers/application_helper.rb +2 -0
- data/test_app/app/views/layouts/sales_clerk.haml +9 -0
- data/test_app/bin/bundle +3 -0
- data/test_app/bin/rails +4 -0
- data/test_app/bin/rake +4 -0
- data/test_app/config/application.rb +28 -0
- data/test_app/config/boot.rb +4 -0
- data/test_app/config/database.yml +25 -0
- data/test_app/config/environment.rb +5 -0
- data/test_app/config/environments/development.rb +32 -0
- data/test_app/config/environments/production.rb +80 -0
- data/test_app/config/environments/test.rb +39 -0
- data/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/test_app/config/initializers/inflections.rb +16 -0
- data/test_app/config/initializers/mime_types.rb +5 -0
- data/test_app/config/initializers/secret_token.rb +12 -0
- data/test_app/config/initializers/session_store.rb +3 -0
- data/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/test_app/config/locales/en.yml +23 -0
- data/test_app/config/routes.rb +4 -0
- data/test_app/config.ru +4 -0
- data/test_app/db/migrate/20141114205525_clerks.office.rb +16 -0
- data/test_app/db/migrate/20141114205526_suppliers.office.rb +10 -0
- data/test_app/db/migrate/20141114205527_categories.office.rb +19 -0
- data/test_app/db/migrate/20141114205528_items.office.rb +15 -0
- data/test_app/db/migrate/20141114205529_orders.office.rb +23 -0
- data/test_app/db/migrate/20141114205530_baskets.office.rb +13 -0
- data/test_app/db/migrate/20141114205531_purchases.office.rb +12 -0
- data/test_app/db/migrate/20141114205532_products.office.rb +28 -0
- data/test_app/db/schema.rb +141 -0
- data/test_app/db/seeds.rb +7 -0
- data/test_app/public/404.html +58 -0
- data/test_app/public/422.html +58 -0
- data/test_app/public/500.html +57 -0
- data/test_app/public/favicon.ico +0 -0
- data/test_app/public/robots.txt +5 -0
- metadata +74 -9
- data/app/assets/javascripts/accountant_office.js.rb +0 -4
- data/app/assets/javascripts/flotomatic.js +0 -177
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe OrdersController do
|
4
|
+
routes { OfficeClerk::Engine.routes }
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
create :admin unless Clerk.where(:admin => true).first
|
8
|
+
end
|
9
|
+
|
10
|
+
# This should return the minimal set of values that should be in the session
|
11
|
+
# in order to pass any filters (e.g. authentication) defined in
|
12
|
+
# SuppliersController. Be sure to keep this updated too.
|
13
|
+
let(:valid_session) { { :clerk_email => Clerk.where(:admin => true).first.email } }
|
14
|
+
|
15
|
+
describe "GET index" do
|
16
|
+
it "assigns all orders as @orders" do
|
17
|
+
|
18
|
+
count_before = Order.count
|
19
|
+
basket = create :order
|
20
|
+
get :index, {}, valid_session
|
21
|
+
expect(assigns(:order_scope).count).to be count_before + 1
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "GET show" do
|
26
|
+
it "assigns the requested order as @order" do
|
27
|
+
order = create :order
|
28
|
+
get :show, {:id => order.to_param}, valid_session
|
29
|
+
expect(assigns(:order)).to eq(order)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe "GET new" do
|
34
|
+
it "assigns a new order as @order" do
|
35
|
+
get :new, {}, valid_session
|
36
|
+
expect(assigns(:order)).to be_kind_of(Order)
|
37
|
+
expect(assigns(:order)).to be_new_record
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe "GET edit" do
|
42
|
+
it "assigns the requested order as @order" do
|
43
|
+
order = create :order
|
44
|
+
get :edit, {:id => order.to_param}, valid_session
|
45
|
+
expect(assigns(:order)).to eq(order)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe "POST create" do
|
50
|
+
|
51
|
+
describe "with invalid params" do
|
52
|
+
it "assigns a newly created but unsaved order as @order" do
|
53
|
+
# Trigger the behavior that occurs when invalid params are submitted
|
54
|
+
allow_any_instance_of(Order).to receive(:save).and_return(false)
|
55
|
+
post :create, {:order => { :paid_on => ""}}, valid_session
|
56
|
+
expect(assigns(:order)).to be_kind_of(Order)
|
57
|
+
expect(assigns(:order)).to be_new_record
|
58
|
+
end
|
59
|
+
|
60
|
+
it "re-renders the 'new' template" do
|
61
|
+
# Trigger the behavior that occurs when invalid params are submitted
|
62
|
+
allow_any_instance_of(Order).to receive(:save).and_return(false)
|
63
|
+
post :create, {:order => { :paid_on => ""}}, valid_session
|
64
|
+
expect(response).to render_template(:edit)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe "PUT update" do
|
70
|
+
describe "with valid params" do
|
71
|
+
it "assigns the requested order as @order" do
|
72
|
+
order = create :order
|
73
|
+
put :update, {:id => order.to_param, :order => attributes_for(:order)}, valid_session
|
74
|
+
expect(assigns(:order)).to eq(order)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe "with invalid params" do
|
79
|
+
it "assigns the order as @order" do
|
80
|
+
order = create :order
|
81
|
+
# Trigger the behavior that occurs when invalid params are submitted
|
82
|
+
#allow(order).to receive(:save).and_return(false)
|
83
|
+
put :update, {:id => order.to_param, :order => { :paid_on => ""}}, valid_session
|
84
|
+
expect(assigns(:order)).to eq(order)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
feature "new product" do
|
4
|
+
before :each do
|
5
|
+
sign_in
|
6
|
+
end
|
7
|
+
it "renders new and fails without data" do
|
8
|
+
visit_path new_product_path
|
9
|
+
click_button( I18n.t(:create))
|
10
|
+
expect(page.current_path).to eq products_path
|
11
|
+
expect(page).to have_content I18n.t("errors.messages.not_a_number")
|
12
|
+
expect(Product.count).to eq 0
|
13
|
+
end
|
14
|
+
it "submits ok with correct data" do
|
15
|
+
visit_path new_product_path
|
16
|
+
fill_in "product_name", :with => 'product 12'
|
17
|
+
fill_in "product_price", :with => '12'
|
18
|
+
click_button( I18n.t(:create))
|
19
|
+
expect(page).to have_content I18n.t(:create_success)
|
20
|
+
expect(Product.count).to eq 1
|
21
|
+
end
|
22
|
+
it "renders product edit" do
|
23
|
+
product = create :product
|
24
|
+
visit_path edit_product_path(product)
|
25
|
+
click_button( I18n.t(:product))
|
26
|
+
ensure_path product_path(product)
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "Orders" do
|
4
|
+
before(:each) do
|
5
|
+
sign_in
|
6
|
+
end
|
7
|
+
it "lists orders" do
|
8
|
+
visit_path orders_path
|
9
|
+
end
|
10
|
+
it "should render" do
|
11
|
+
order = create :order
|
12
|
+
visit_path order_path order
|
13
|
+
end
|
14
|
+
it "creates order from basket" do
|
15
|
+
basket = create(:basket_with_item)
|
16
|
+
visit_path edit_basket_path(basket)
|
17
|
+
find(".make_order").click
|
18
|
+
ensure_path order_path(basket.reload.kori)
|
19
|
+
end
|
20
|
+
it "orders a order" do
|
21
|
+
order = create(:order_ordered)
|
22
|
+
visit_path order_path(order)
|
23
|
+
find(".pay_now").click
|
24
|
+
end
|
25
|
+
it "inventories a order" do
|
26
|
+
order = create(:order_paid)
|
27
|
+
visit_path order_path(order)
|
28
|
+
start = order.basket.items.first.product.inventory
|
29
|
+
find(".ship_now").click
|
30
|
+
# expect(order.basket.items.first.product.inventory).to be order.basket.items.first.quantity
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe OrdersController do
|
4
|
+
routes { OfficeClerk::Engine.routes }
|
5
|
+
describe "routing" do
|
6
|
+
|
7
|
+
it "routes to #index" do
|
8
|
+
expect(get("/orders")).to route_to("orders#index")
|
9
|
+
end
|
10
|
+
|
11
|
+
it "routes to #new" do
|
12
|
+
expect(get("/orders/new")).to route_to("orders#new")
|
13
|
+
end
|
14
|
+
|
15
|
+
it "routes to #show" do
|
16
|
+
expect(get("/orders/1")).to route_to("orders#show", :id => "1")
|
17
|
+
end
|
18
|
+
|
19
|
+
it "routes to #edit" do
|
20
|
+
expect(get("/orders/1/edit")).to route_to("orders#edit", :id => "1")
|
21
|
+
end
|
22
|
+
|
23
|
+
it "routes to #create" do
|
24
|
+
expect(post("/orders")).to route_to("orders#create")
|
25
|
+
end
|
26
|
+
|
27
|
+
it "routes to #update" do
|
28
|
+
expect(put("/orders/1")).to route_to("orders#update", :id => "1")
|
29
|
+
end
|
30
|
+
|
31
|
+
it "routes to #destroy" do
|
32
|
+
expect(delete("/orders/1")).to route_to("orders#destroy", :id => "1")
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,31 +1,38 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
require File.expand_path("../../../config/environment.rb", __FILE__)
|
1
|
+
if ENV['CODECLIMATE_REPO_TOKEN']
|
2
|
+
require "codeclimate-test-reporter"
|
3
|
+
CodeClimate::TestReporter.start
|
4
|
+
end
|
6
5
|
|
6
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
7
|
+
ENV["RAILS_ENV"] = 'test'
|
8
|
+
require File.expand_path("../../test_app/config/environment", __FILE__)
|
9
|
+
Rails.backtrace_cleaner.remove_silencers!
|
7
10
|
|
8
11
|
require 'rspec/rails'
|
9
12
|
|
10
|
-
#
|
11
|
-
|
12
|
-
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
13
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
14
|
+
|
13
15
|
|
14
16
|
RSpec.configure do |config|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
#
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
17
|
+
|
18
|
+
config.include PageHelper
|
19
|
+
|
20
|
+
config.include OfficeClerk::Engine.routes.url_helpers
|
21
|
+
|
22
|
+
config.infer_base_class_for_anonymous_controllers = false
|
23
|
+
config.infer_spec_type_from_file_location!
|
24
|
+
|
25
|
+
# Run specs in random order to surface order dependencies. If you find an
|
26
|
+
# order dependency and want to debug it, you can fix the order by providing
|
27
|
+
# the seed, which is printed after each run.
|
28
|
+
# --seed 1234
|
29
|
+
config.order = "random"
|
30
|
+
|
31
|
+
if config.files_to_run.one?
|
32
|
+
config.default_formatter = 'doc'
|
33
|
+
end
|
34
|
+
|
35
|
+
# Print the 10 slowest examples and example groups at the end of the spec run,
|
36
|
+
#to help surface which specs are running particularly slow.
|
37
|
+
# config.profile_examples = 10
|
31
38
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'capybara/rspec'
|
2
|
+
require 'capybara-screenshot/rspec'
|
3
|
+
Capybara::Screenshot.prune_strategy = :keep_last_run
|
4
|
+
|
5
|
+
#require 'capybara/poltergeist'
|
6
|
+
#Capybara.javascript_driver = :poltergeist
|
7
|
+
|
8
|
+
Capybara.default_selector = :css
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
|
12
|
+
config.include Capybara::DSL
|
13
|
+
|
14
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require "database_cleaner"
|
2
|
+
|
3
|
+
RSpec.configure do |config|
|
4
|
+
config.use_transactional_fixtures = false
|
5
|
+
config.before(:suite) do
|
6
|
+
DatabaseCleaner.clean_with :truncation
|
7
|
+
DatabaseCleaner.strategy = :transaction
|
8
|
+
end
|
9
|
+
config.before(:each) do |group|
|
10
|
+
DatabaseCleaner.strategy = :transaction
|
11
|
+
end
|
12
|
+
|
13
|
+
config.before(:each, :js => true) do
|
14
|
+
DatabaseCleaner.strategy = :truncation
|
15
|
+
end
|
16
|
+
config.before(:each) do
|
17
|
+
DatabaseCleaner.start
|
18
|
+
end
|
19
|
+
config.after(:each) do
|
20
|
+
DatabaseCleaner.clean
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module PageHelper
|
2
|
+
def ensure_path path
|
3
|
+
expect(page.current_path).to eq path
|
4
|
+
end
|
5
|
+
def visit_path path
|
6
|
+
visit path
|
7
|
+
expect(status_code).to be 200
|
8
|
+
expect(page).not_to have_css(".translation_missing")
|
9
|
+
ensure_path path
|
10
|
+
end
|
11
|
+
|
12
|
+
def ensure_admin
|
13
|
+
admin = Clerk.where(:admin => true).first
|
14
|
+
admin = create :admin unless admin
|
15
|
+
expect(admin).not_to be nil
|
16
|
+
admin
|
17
|
+
end
|
18
|
+
|
19
|
+
def sign_in
|
20
|
+
admin = ensure_admin
|
21
|
+
visit sign_in_path
|
22
|
+
fill_in "email" , :with => admin.email
|
23
|
+
fill_in "password" , :with => "password"
|
24
|
+
click_button I18n.t(:sign_in)
|
25
|
+
expect(page).to have_content I18n.t(:baskets)
|
26
|
+
end
|
27
|
+
|
28
|
+
def expect_basket_total price
|
29
|
+
expect(find(".total").text).to include( price.round(2).to_s.sub(".",",")) # TODO remove the format hack
|
30
|
+
end
|
31
|
+
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>.
|
@@ -0,0 +1,15 @@
|
|
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/sstephenson/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
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 top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
data/test_app/bin/bundle
ADDED
data/test_app/bin/rails
ADDED
data/test_app/bin/rake
ADDED
@@ -0,0 +1,28 @@
|
|
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 "sprockets/railtie"
|
8
|
+
# require "rails/test_unit/railtie"
|
9
|
+
|
10
|
+
# Require the gems listed in Gemfile, including any gems
|
11
|
+
# you've limited to :test, :development, or :production.
|
12
|
+
Bundler.require(*Rails.groups)
|
13
|
+
|
14
|
+
module TestApp
|
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
|
+
end
|
28
|
+
end
|
@@ -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
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -0,0 +1,32 @@
|
|
1
|
+
TestApp::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
|
+
# Raises error for missing translations
|
31
|
+
# config.action_view.raise_on_missing_translations = true
|
32
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
TestApp::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 thread 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_assets = 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
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
37
|
+
|
38
|
+
# Specifies the header that your server uses for sending files.
|
39
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
41
|
+
|
42
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
|
+
# config.force_ssl = true
|
44
|
+
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
47
|
+
|
48
|
+
# Prepend all log lines with the following tags.
|
49
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
|
51
|
+
# Use a different logger for distributed setups.
|
52
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
53
|
+
|
54
|
+
# Use a different cache store in production.
|
55
|
+
# config.cache_store = :mem_cache_store
|
56
|
+
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
59
|
+
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
+
# config.assets.precompile += %w( search.js )
|
63
|
+
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
|
+
# config.action_mailer.raise_delivery_errors = false
|
67
|
+
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
70
|
+
config.i18n.fallbacks = true
|
71
|
+
|
72
|
+
# Send deprecation notices to registered listeners.
|
73
|
+
config.active_support.deprecation = :notify
|
74
|
+
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
80
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
TestApp::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_assets = 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
|