test_console 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 +3 -0
- data/Rakefile +37 -0
- data/bin/test_console +60 -0
- data/config/application.rb +50 -0
- data/config/boot.rb +10 -0
- data/config/database.yml +25 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +30 -0
- data/config/environments/production.rb +60 -0
- data/config/environments/test.rb +42 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/inflections.rb +10 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +58 -0
- data/lib/tasks/test_console_tasks.rake +4 -0
- data/lib/test_console/builder.rb +54 -0
- data/lib/test_console/history.rb +31 -0
- data/lib/test_console/monitor.rb +70 -0
- data/lib/test_console/output.rb +40 -0
- data/lib/test_console/runner.rb +108 -0
- data/lib/test_console/utility.rb +62 -0
- data/lib/test_console/version.rb +3 -0
- data/lib/test_console.rb +124 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +7 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -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/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +50 -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 +30 -0
- data/test/dummy/config/environments/production.rb +60 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -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/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/a_sample_test.rb +10 -0
- data/test/dummy/test/test_helper.rb +12 -0
- data/test/support/helpers/shared_helpers.rb +7 -0
- data/test/support/helpers/unit_helpers.rb +25 -0
- data/test/test_console/utility_test.rb +150 -0
- data/test/test_console_test.rb +11 -0
- data/test/test_helper.rb +9 -0
- metadata +235 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
module TestConsole
|
2
|
+
module Output
|
3
|
+
# Output functions
|
4
|
+
# =================
|
5
|
+
# Functions to format and display output
|
6
|
+
|
7
|
+
def out(text, text_color=nil)
|
8
|
+
if text_color
|
9
|
+
STDOUT.puts Utility.color(text, text_color)
|
10
|
+
else
|
11
|
+
STDOUT.puts text
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def error(message, backtrace=nil)
|
16
|
+
STDERR.puts Utility.color(message, ERROR_COLOR)
|
17
|
+
backtrace.each {|line| STDERR.puts Utility.color(line, ERROR_COLOR)} unless backtrace.nil? || backtrace.empty?
|
18
|
+
end
|
19
|
+
|
20
|
+
def print_negatives(items, color)
|
21
|
+
if items.kind_of? Array
|
22
|
+
items.each do |item|
|
23
|
+
out "\n#{item.long_display}", color
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def print_result_summary(result, time_taken=0)
|
29
|
+
if result.failure_count == 0 && result.error_count == 0
|
30
|
+
final_color = SUCCESS_COLOR
|
31
|
+
elsif result.error_count > 0
|
32
|
+
final_color = ERROR_COLOR
|
33
|
+
else
|
34
|
+
final_color = FAIL_COLOR
|
35
|
+
end
|
36
|
+
|
37
|
+
out "\nTests: #{result.run_count}, Assertions: #{result.assertion_count}, Fails: #{result.failure_count}, Errors: #{result.error_count}, Time taken #{sprintf('%.2f', time_taken)}s", final_color
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,108 @@
|
|
1
|
+
module TestConsole
|
2
|
+
module Runner
|
3
|
+
# Checks that the specified path is valid
|
4
|
+
# If so it creates a test suite from the path and runs it
|
5
|
+
def run path, filter=nil
|
6
|
+
begin
|
7
|
+
unless path && !path.empty?
|
8
|
+
raise 'No path specified'
|
9
|
+
end
|
10
|
+
|
11
|
+
unless File.exists? path
|
12
|
+
raise "Path #{path} doesn't exist"
|
13
|
+
end
|
14
|
+
|
15
|
+
auto_reload!
|
16
|
+
@checked_views = false
|
17
|
+
|
18
|
+
if File.directory? path
|
19
|
+
suite = make_suite_from_folder(path, filter)
|
20
|
+
else
|
21
|
+
suite = make_suite_from_file(path, filter)
|
22
|
+
end
|
23
|
+
|
24
|
+
suite = filter_tests(suite, filter) if filter
|
25
|
+
|
26
|
+
@last_run_path = path
|
27
|
+
@last_run_filter = filter
|
28
|
+
|
29
|
+
run_suite suite
|
30
|
+
rescue Exception => e
|
31
|
+
error e.message, e.backtrace
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# Reruns previous failures or errors
|
36
|
+
def rerun type=nil
|
37
|
+
return false unless @last_run_path
|
38
|
+
|
39
|
+
if File.directory? @last_run_path
|
40
|
+
suite = make_suite_from_folder(@last_run_path, @last_run_filter)
|
41
|
+
else
|
42
|
+
suite = make_suite_from_file(@last_run_path, @last_run_filter)
|
43
|
+
end
|
44
|
+
|
45
|
+
suite = filter_tests(suite, @last_run_filter) if @last_run_filter
|
46
|
+
|
47
|
+
to_rerun = []
|
48
|
+
|
49
|
+
to_rerun += @last_run_failures unless type == :errors
|
50
|
+
to_rerun += @last_run_errors unless type == :failures
|
51
|
+
|
52
|
+
out 'All tests passed last time. Nothing to rerun', :green and return true if to_rerun.empty?
|
53
|
+
|
54
|
+
to_rerun = to_rerun.collect {|t| t.test_name}
|
55
|
+
|
56
|
+
failed_suite = Test::Unit::TestSuite.new 'Previous test failures'
|
57
|
+
suite.tests.each {|t| failed_suite.tests << t if to_rerun.include?(t.name)}
|
58
|
+
|
59
|
+
run_suite failed_suite
|
60
|
+
end
|
61
|
+
|
62
|
+
# Runs a defined suite of tests
|
63
|
+
def run_suite(suite)
|
64
|
+
@abort = false
|
65
|
+
@running = true
|
66
|
+
|
67
|
+
return false if stop_folders_changed?
|
68
|
+
|
69
|
+
result = Test::Unit::TestResult.new
|
70
|
+
started_at = Time.now
|
71
|
+
|
72
|
+
suite.tests.each do |test|
|
73
|
+
break if @abort
|
74
|
+
test.run result do |type, name|
|
75
|
+
case type
|
76
|
+
when Test::Unit::TestCase::STARTED
|
77
|
+
@num_failures = result.failure_count
|
78
|
+
@num_errors = result.error_count
|
79
|
+
when Test::Unit::TestCase::FINISHED
|
80
|
+
if result.failure_count == @num_failures && result.error_count == @num_errors
|
81
|
+
out name, SUCCESS_COLOR
|
82
|
+
elsif result.error_count > @num_errors
|
83
|
+
out name, ERROR_COLOR
|
84
|
+
else
|
85
|
+
out name, FAIL_COLOR
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
@last_run_failures = result.instance_variable_get(:@failures)
|
92
|
+
@last_run_errors = result.instance_variable_get(:@errors)
|
93
|
+
|
94
|
+
print_negatives @last_run_failures, FAIL_COLOR
|
95
|
+
print_negatives @last_run_errors, ERROR_COLOR
|
96
|
+
|
97
|
+
print_result_summary result, Time.now - started_at
|
98
|
+
|
99
|
+
@running = false
|
100
|
+
@last_init_time ||= Time.now
|
101
|
+
@last_run_time = Time.now
|
102
|
+
end
|
103
|
+
|
104
|
+
def abort
|
105
|
+
(@running) ? @abort = true : die
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module TestConsole
|
2
|
+
module Utility
|
3
|
+
def self.included (base)
|
4
|
+
base.extend(ClassMethods)
|
5
|
+
end
|
6
|
+
|
7
|
+
module ClassMethods
|
8
|
+
## Returns an array of class components from a filename
|
9
|
+
## eg for module/controller => ['Module', 'Controller']
|
10
|
+
def class_from_filename(filename)
|
11
|
+
segs = filename.split('/')
|
12
|
+
segs.delete ''
|
13
|
+
segs.delete '.'
|
14
|
+
segs.last.gsub!('.rb', '')
|
15
|
+
|
16
|
+
# drop the test folder
|
17
|
+
segs = segs[1..-1] while segs[0] == 'test'
|
18
|
+
|
19
|
+
ret = segs.map {|seg| seg.camelize}
|
20
|
+
|
21
|
+
return ret
|
22
|
+
end
|
23
|
+
|
24
|
+
def color(text, color)
|
25
|
+
if COLORS[color]
|
26
|
+
"\e[#{COLORS[color]}m#{text}\e[#{COLORS[:reset]}m"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def const_defined?(klass)
|
31
|
+
klass = [klass] unless klass.kind_of? Array
|
32
|
+
klass.inject(Object) do |context, scope|
|
33
|
+
if context.const_defined?(scope)
|
34
|
+
context.const_get(scope)
|
35
|
+
else
|
36
|
+
return false
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def const_get(klass)
|
42
|
+
klass = [klass] unless klass.kind_of? Array
|
43
|
+
klass.inject(Object) do |context, scope|
|
44
|
+
context.const_get(scope)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def const_remove(klass)
|
49
|
+
klass = [klass] unless klass.kind_of? Array
|
50
|
+
if klass.length > 1
|
51
|
+
Utility.const_get(klass[0..-2]).send :remove_const, klass.last
|
52
|
+
elsif klass.any?
|
53
|
+
Object.send :remove_const, klass.last
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
extend ClassMethods
|
60
|
+
|
61
|
+
end
|
62
|
+
end
|
data/lib/test_console.rb
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
require 'test_console/history'
|
2
|
+
|
3
|
+
require 'test_console/builder'
|
4
|
+
require 'test_console/monitor'
|
5
|
+
require 'test_console/output'
|
6
|
+
require 'test_console/runner'
|
7
|
+
|
8
|
+
require 'test_console/utility'
|
9
|
+
|
10
|
+
module TestConsole
|
11
|
+
|
12
|
+
WATCH_PATHS = ['test/support', 'lib', 'app/models', 'app/controllers', 'app/helpers', 'app/presenters']
|
13
|
+
VIEW_FOLDERS = ['app/views']
|
14
|
+
# These are folders that mean the test console need to be reloaded if any files in them are modified.
|
15
|
+
# The file types checked are .rb and .yml
|
16
|
+
STOP_FOLDERS = ['test/fixtures', 'config/environments']
|
17
|
+
|
18
|
+
QUIT_COMMANDS = ['quit', 'q', 'exit']
|
19
|
+
RUN_COMMANDS = ['run', 'r']
|
20
|
+
RERUN_COMMANDS = ['rerun', '.']
|
21
|
+
HELP_COMMANDS = ['help', 'h', '?', 'wtf']
|
22
|
+
|
23
|
+
DUMMY_FOLDER = 'dummy/test'
|
24
|
+
|
25
|
+
COLORS = {
|
26
|
+
:reset => '0',
|
27
|
+
:bold => '1',
|
28
|
+
:red => '31',
|
29
|
+
:green => '32',
|
30
|
+
:yellow => '33',
|
31
|
+
:blue => '34',
|
32
|
+
:magenta => '35',
|
33
|
+
:cyan => '36',
|
34
|
+
:white => '37'
|
35
|
+
}
|
36
|
+
|
37
|
+
ERROR_COLOR = :magenta
|
38
|
+
FAIL_COLOR = :red
|
39
|
+
SUCCESS_COLOR = :green
|
40
|
+
|
41
|
+
class << self
|
42
|
+
include TestConsole::Builder
|
43
|
+
include TestConsole::Monitor
|
44
|
+
include TestConsole::Output
|
45
|
+
include TestConsole::Runner
|
46
|
+
|
47
|
+
def die
|
48
|
+
History.write
|
49
|
+
exit
|
50
|
+
end
|
51
|
+
|
52
|
+
# Parsing functions
|
53
|
+
# =================
|
54
|
+
# Functions to parse and normalise user input
|
55
|
+
|
56
|
+
# parses the command section of a line of user input
|
57
|
+
def command(line)
|
58
|
+
line.split(' ')[0]
|
59
|
+
end
|
60
|
+
|
61
|
+
# parses the file component of a line of user input
|
62
|
+
def file(line)
|
63
|
+
begin
|
64
|
+
line.split(' ')[1] if line.include? ' '
|
65
|
+
rescue
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
# parses the filter component of a line of input
|
70
|
+
def filter(line)
|
71
|
+
begin
|
72
|
+
filter_str = line.split(' ')[2..-1].join(' ')
|
73
|
+
filter = eval filter_str
|
74
|
+
filter = "/#{filter_str}/" unless filter.kind_of?(Regexp) || filter_str.nil? || filter_str.empty?
|
75
|
+
return filter
|
76
|
+
rescue
|
77
|
+
/#{filter_str}/ unless filter_str.nil? || filter_str.empty?
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# Utility functions
|
82
|
+
# =================
|
83
|
+
# Additional functions to help with general tasks
|
84
|
+
|
85
|
+
# Help text
|
86
|
+
# =========
|
87
|
+
|
88
|
+
def help
|
89
|
+
"
|
90
|
+
Test console help
|
91
|
+
=================
|
92
|
+
Run Commands : #{RUN_COMMANDS.join(', ')}
|
93
|
+
|
94
|
+
To run a test, type 'run' followed by the path to the test
|
95
|
+
You can also append a string or regex to filter by
|
96
|
+
|
97
|
+
Examples:
|
98
|
+
run functional/mgm
|
99
|
+
run functional/application_controller_test.rb
|
100
|
+
run functional/application_controller_test.rb 'PartOfTestName'
|
101
|
+
run functional/application_controller_test.rb /PartOfTestName/i
|
102
|
+
|
103
|
+
Rerun Commands : #{RERUN_COMMANDS.join(', ')}
|
104
|
+
|
105
|
+
Reruns only the tests that failed or errored in the previous run
|
106
|
+
|
107
|
+
Quit Commands : #{QUIT_COMMANDS.join(', ')}
|
108
|
+
|
109
|
+
Exits the console
|
110
|
+
"
|
111
|
+
end
|
112
|
+
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
# This sets ActionView to use our custom test when checking whether to cache view templates
|
117
|
+
module ActionView
|
118
|
+
class Resolver
|
119
|
+
def caching?
|
120
|
+
@caching = TestConsole.views_changed?
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
data/test/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,7 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into including all the files listed below.
|
2
|
+
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
|
3
|
+
// be included in the compiled file accessible from http://example.com/assets/application.js
|
4
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
5
|
+
// the compiled file.
|
6
|
+
//
|
7
|
+
//= require_tree .
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
3
|
+
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
4
|
+
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
5
|
+
*= require_self
|
6
|
+
*= require_tree .
|
7
|
+
*/
|
@@ -0,0 +1,50 @@
|
|
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 "active_resource/railtie"
|
8
|
+
# require "sprockets/railtie"
|
9
|
+
require "rails/test_unit/railtie"
|
10
|
+
|
11
|
+
Bundler.require
|
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
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
20
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
21
|
+
|
22
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
23
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
24
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
25
|
+
|
26
|
+
# Activate observers that should always be running.
|
27
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
28
|
+
|
29
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
30
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
31
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
32
|
+
|
33
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
34
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
35
|
+
# config.i18n.default_locale = :de
|
36
|
+
|
37
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
38
|
+
config.encoding = "utf-8"
|
39
|
+
|
40
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
41
|
+
config.filter_parameters += [:password]
|
42
|
+
|
43
|
+
# Enable the asset pipeline
|
44
|
+
config.assets.enabled = true
|
45
|
+
|
46
|
+
# Version of your assets, change this if you want to expire all your assets
|
47
|
+
config.assets.version = '1.0'
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
@@ -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,30 @@
|
|
1
|
+
Dummy::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
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
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
|
+
# Only use best-standards-support built into browsers
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
24
|
+
|
25
|
+
# Do not compress assets
|
26
|
+
config.assets.compress = false
|
27
|
+
|
28
|
+
# Expands the lines which load the assets
|
29
|
+
config.assets.debug = true
|
30
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
Dummy::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
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to Rails.root.join("public/assets")
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Use a different logger for distributed setups
|
37
|
+
# config.logger = SyslogLogger.new
|
38
|
+
|
39
|
+
# Use a different cache store in production
|
40
|
+
# config.cache_store = :mem_cache_store
|
41
|
+
|
42
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
43
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
44
|
+
|
45
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
46
|
+
# config.assets.precompile += %w( search.js )
|
47
|
+
|
48
|
+
# Disable delivery errors, bad email addresses will be ignored
|
49
|
+
# config.action_mailer.raise_delivery_errors = false
|
50
|
+
|
51
|
+
# Enable threaded mode
|
52
|
+
# config.threadsafe!
|
53
|
+
|
54
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
55
|
+
# the I18n.default_locale when a translation can not be found)
|
56
|
+
config.i18n.fallbacks = true
|
57
|
+
|
58
|
+
# Send deprecation notices to registered listeners
|
59
|
+
config.active_support.deprecation = :notify
|
60
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Dummy::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
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
33
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
34
|
+
# like if you have constraints or database-specific column types
|
35
|
+
# config.active_record.schema_format = :sql
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr
|
38
|
+
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Allow pass debug_assets=true as a query parameter to load pages with unpackaged assets
|
41
|
+
config.assets.allow_debugging = true
|
42
|
+
end
|
@@ -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!
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '1a91c41287e6632f45f7a97ca03e97d1c89247ca12316b244562098f71ac4626f89e31277ac0ad25a121b2279e092d3a2f68e6b98025d4b731b5eea730cb04a0'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|