regulate 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/.gitignore +14 -0
- data/.rvmrc +1 -0
- data/.yardopts +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +117 -0
- data/LICENSE +20 -0
- data/README.md +3 -0
- data/Rakefile +10 -0
- data/app/controllers/regulate/admin/pages_controller.rb +69 -0
- data/app/controllers/regulate/pages_controller.rb +13 -0
- data/app/models/regulate/page.rb +21 -0
- data/app/views/regulate/admin/pages/_form.html.erb +36 -0
- data/app/views/regulate/admin/pages/edit.html.erb +1 -0
- data/app/views/regulate/admin/pages/index.html.erb +10 -0
- data/app/views/regulate/admin/pages/new.html.erb +1 -0
- data/app/views/regulate/pages/show.html.erb +14 -0
- data/config/regulate.yml +10 -0
- data/config/routes.rb +22 -0
- data/lib/generators/regulate/install_generator.rb +39 -0
- data/lib/generators/regulate/views_generator.rb +73 -0
- data/lib/generators/templates/regulate.css +2 -0
- data/lib/generators/templates/regulate.js +44 -0
- data/lib/generators/templates/regulate.rb +13 -0
- data/lib/generators/templates/regulate.yml +10 -0
- data/lib/regulate.rb +30 -0
- data/lib/regulate/engine.rb +50 -0
- data/lib/regulate/git.rb +17 -0
- data/lib/regulate/git/errors.rb +22 -0
- data/lib/regulate/git/interface.rb +249 -0
- data/lib/regulate/git/model.rb +16 -0
- data/lib/regulate/git/model/base.rb +282 -0
- data/lib/regulate/version.rb +4 -0
- data/public/javascripts/jquery.min.js +167 -0
- data/public/javascripts/regulate_admin.js +166 -0
- data/regulate.gemspec +29 -0
- data/test/dummy/Rakefile +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.ru +4 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +22 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -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/locales/en.yml +5 -0
- data/test/dummy/config/regulate.yml +10 -0
- data/test/dummy/config/routes.rb +58 -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/public/javascripts/application.js +2 -0
- data/test/dummy/public/javascripts/controls.js +965 -0
- data/test/dummy/public/javascripts/dragdrop.js +974 -0
- data/test/dummy/public/javascripts/effects.js +1123 -0
- data/test/dummy/public/javascripts/prototype.js +6001 -0
- data/test/dummy/public/javascripts/rails.js +175 -0
- data/test/dummy/public/stylesheets/.gitkeep +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/git_test.rb +79 -0
- data/test/integration/navigation_test.rb +7 -0
- data/test/models/regulate_git_model_base_lint_test.rb +7 -0
- data/test/models/regulate_git_model_base_test.rb +23 -0
- data/test/models/regulate_page_test.rb +19 -0
- data/test/regulate_test.rb +19 -0
- data/test/routing_test.rb +32 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +27 -0
- data/test/tmp/config/initializers/regulate.rb +12 -0
- data/test/tmp/config/regulate.yml +10 -0
- data/test/tmp/public/javascripts/regulate.js +49 -0
- data/test/tmp/public/stylesheets/regulate.css +3 -0
- metadata +312 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
(function( $ ) {
|
|
2
|
+
|
|
3
|
+
var timer,
|
|
4
|
+
stored_keys = null,
|
|
5
|
+
|
|
6
|
+
Regulate = {
|
|
7
|
+
|
|
8
|
+
longPoll: function longPoll( force, callback ){
|
|
9
|
+
var i, text = $('#page_view').val(),
|
|
10
|
+
|
|
11
|
+
// This RegEx will catch anything inside the `{{ }}`
|
|
12
|
+
m = /\{\{(\w|\s)*\}\}/g,
|
|
13
|
+
// A more generic mustache `{ }` grab
|
|
14
|
+
clean_key = /[\{,\}]/g,
|
|
15
|
+
|
|
16
|
+
keys = [],
|
|
17
|
+
invalid_keys = [],
|
|
18
|
+
deleted_keys = [],
|
|
19
|
+
|
|
20
|
+
// To import data, we've attached an object to `window.existing_custom_fields`
|
|
21
|
+
existing_keys = existing_custom_fields || {},
|
|
22
|
+
|
|
23
|
+
// Define a blacklist of keys we know we'll never want
|
|
24
|
+
blacklist = ['{{view}}', '{{title}}'],
|
|
25
|
+
|
|
26
|
+
// This assigns our initial match of all keys in the textarea
|
|
27
|
+
initial_match = text.match( m ) || [],
|
|
28
|
+
|
|
29
|
+
// This allows to skip the early return
|
|
30
|
+
f = force || false;
|
|
31
|
+
|
|
32
|
+
// Prevent this core of this from running while someone's typing
|
|
33
|
+
if( $('#page_view').hasClass('active') && f === false) {
|
|
34
|
+
// Set the timer agains and return early
|
|
35
|
+
timer = setTimeout( longPoll , 1e3);
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Loop through the keys that our regex grabbed, and determine if they're ok to use
|
|
40
|
+
$.each( initial_match, function( i, v ) {
|
|
41
|
+
var invalid = false;
|
|
42
|
+
|
|
43
|
+
// Keys can't be in the blacklist, also don't double up the errors
|
|
44
|
+
if( ~blacklist.indexOf( v ) && !~invalid_keys.indexOf( v ) ) {
|
|
45
|
+
invalid = true;
|
|
46
|
+
invalid_keys.push({ 'key':v, 'msg': 'The key '+v+' is reserved.' });
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Keys can't contain spaces
|
|
50
|
+
if( /\s/.test(v) && !~invalid_keys.indexOf( v ) ) {
|
|
51
|
+
invalid = true;
|
|
52
|
+
invalid_keys.push({ 'key':v, 'msg': 'The key '+v+' contains a space. It can\'t do that.' });
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// Keys can't start with a number
|
|
56
|
+
if( /\{\{\d/.test(v) && !~invalid_keys.indexOf( v ) ) {
|
|
57
|
+
invalid = true;
|
|
58
|
+
invalid_keys.push({ 'key':v, 'msg': 'The key '+v+' starts with a number. It can\'t do that.' });
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// If we're still valid after this, add the key into the keys array
|
|
62
|
+
if( invalid === false ) {
|
|
63
|
+
keys.push( v );
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
// Loops through the stored keys and checks for any deleted keys
|
|
68
|
+
// stored_key[] - keys[] == any deleted keys
|
|
69
|
+
if( stored_keys !== null ) {
|
|
70
|
+
i = stored_keys.length;
|
|
71
|
+
while(i--){
|
|
72
|
+
if( ! ~keys.indexOf( stored_keys[i] ) ) {
|
|
73
|
+
deleted_keys.push( stored_keys[i] );
|
|
74
|
+
// Remove the label and text area within #edit_regions
|
|
75
|
+
$('#edit_regions .'+ stored_keys[i].replace( clean_key, "") ).remove();
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Loop through the valid keys and add labels and textareas for them
|
|
81
|
+
$.each( keys, function( i, v ) {
|
|
82
|
+
var new_key = v.replace( clean_key, ""),
|
|
83
|
+
|
|
84
|
+
textarea = $("<textarea>", {
|
|
85
|
+
'name': 'page[edit_regions][' + new_key + ']',
|
|
86
|
+
'class': new_key,
|
|
87
|
+
'value': existing_keys[new_key] || 'Default Text for '+v
|
|
88
|
+
}),
|
|
89
|
+
|
|
90
|
+
label = $("<label>", {
|
|
91
|
+
'for': 'page[edit_regions][' + new_key + ']',
|
|
92
|
+
'text': new_key.replace('_', " "),
|
|
93
|
+
'class': new_key
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
if( $('textarea').hasClass( new_key )) {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Add our textarea to the end of #edit_regions, and inset it's label before it
|
|
101
|
+
textarea.appendTo('#edit_regions').before(label);
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
// Make any old errors go away
|
|
105
|
+
$('#custom_field_errors').empty();
|
|
106
|
+
|
|
107
|
+
// Add error messages for an invalid keys
|
|
108
|
+
$.each( invalid_keys, function( i, v ) {
|
|
109
|
+
if( v.key !== "{{title}}" ) {
|
|
110
|
+
$('#custom_field_errors').append(v.msg+"</br>");
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
// Globally persist our keys for the next pass
|
|
115
|
+
stored_keys = keys;
|
|
116
|
+
|
|
117
|
+
// Set a 1 second timer
|
|
118
|
+
timer = setTimeout( longPoll , 1e3);
|
|
119
|
+
|
|
120
|
+
if( $.isFunction( callback ) ){
|
|
121
|
+
callback();
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
|
|
125
|
+
init: function(){
|
|
126
|
+
var buffer;
|
|
127
|
+
|
|
128
|
+
// Start the party with checking the form's inital value
|
|
129
|
+
Regulate.longPoll();
|
|
130
|
+
|
|
131
|
+
// Forces the longPoll to run one more time before you submit the form
|
|
132
|
+
$('form').bind('submit', function( e ){
|
|
133
|
+
e.preventDefault();
|
|
134
|
+
|
|
135
|
+
var f = e.target;
|
|
136
|
+
|
|
137
|
+
clearTimeout( timer );
|
|
138
|
+
|
|
139
|
+
Regulate.longPoll( null, function(){
|
|
140
|
+
$(f).unbind('submit').submit();
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
// Runs the longPoll if `}}` is entered into the form
|
|
146
|
+
$(window).bind('keyup', function(e) {
|
|
147
|
+
if( e.keyCode == 221 && buffer == 221 ) {
|
|
148
|
+
Regulate.longPoll( true );
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
buffer = e.keyCode;
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
// Prevents the longPoll from running if you're focused on the textarea
|
|
155
|
+
$('#page_view').bind('focus blur', function(e){
|
|
156
|
+
$(this).toggleClass('active');
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
$( Regulate.init );
|
|
163
|
+
|
|
164
|
+
window.Regulate = Regulate;
|
|
165
|
+
|
|
166
|
+
})(jQuery);
|
data/regulate.gemspec
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "regulate/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "regulate"
|
|
7
|
+
s.version = Regulate::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Collin Schaafsma", "Ryan Cook"]
|
|
10
|
+
s.email = ["collin@quickleft.com", "ryan@quickleft.com"]
|
|
11
|
+
s.homepage = ""
|
|
12
|
+
s.summary = %q{The CMS we always wanted.}
|
|
13
|
+
s.description = %q{The CMS we always wanted.}
|
|
14
|
+
|
|
15
|
+
s.rubyforge_project = "regulate"
|
|
16
|
+
|
|
17
|
+
s.add_dependency "rails", "~> 3.0.0"
|
|
18
|
+
s.add_dependency "grit", "~> 2.3.0"
|
|
19
|
+
s.add_development_dependency "bluecloth", "~> 2.0.9"
|
|
20
|
+
s.add_development_dependency "bundler", "~> 1.0.0"
|
|
21
|
+
s.add_development_dependency "capybara", "~> 0.4.0"
|
|
22
|
+
s.add_development_dependency "sqlite3-ruby", "~> 1.3.2"
|
|
23
|
+
s.add_development_dependency "yard", "~> 0.6.4"
|
|
24
|
+
|
|
25
|
+
s.files = `git ls-files`.split("\n")
|
|
26
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
27
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
28
|
+
s.require_paths = ["lib"]
|
|
29
|
+
end
|
data/test/dummy/Rakefile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
3
|
+
|
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
|
5
|
+
require 'rake'
|
|
6
|
+
|
|
7
|
+
Dummy::Application.load_tasks
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
require "active_model/railtie"
|
|
4
|
+
require "active_record/railtie"
|
|
5
|
+
require "action_controller/railtie"
|
|
6
|
+
require "action_view/railtie"
|
|
7
|
+
require "action_mailer/railtie"
|
|
8
|
+
|
|
9
|
+
Bundler.require
|
|
10
|
+
require "regulate"
|
|
11
|
+
|
|
12
|
+
module Dummy
|
|
13
|
+
class Application < Rails::Application
|
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
15
|
+
# Application configuration should go into files in config/initializers
|
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
17
|
+
|
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
|
19
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
|
20
|
+
|
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
24
|
+
|
|
25
|
+
# Activate observers that should always be running.
|
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|
27
|
+
|
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
31
|
+
|
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
34
|
+
# config.i18n.default_locale = :de
|
|
35
|
+
|
|
36
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
|
37
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
|
38
|
+
|
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
|
40
|
+
config.encoding = "utf-8"
|
|
41
|
+
|
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
|
43
|
+
config.filter_parameters += [:password]
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
|
3
|
+
development:
|
|
4
|
+
adapter: sqlite3
|
|
5
|
+
database: db/development.sqlite3
|
|
6
|
+
pool: 5
|
|
7
|
+
timeout: 5000
|
|
8
|
+
|
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
|
10
|
+
# re-generated from your development database when you run "rake".
|
|
11
|
+
# Do not set this db to the same as development or production.
|
|
12
|
+
test:
|
|
13
|
+
adapter: sqlite3
|
|
14
|
+
database: db/test.sqlite3
|
|
15
|
+
pool: 5
|
|
16
|
+
timeout: 5000
|
|
17
|
+
|
|
18
|
+
production:
|
|
19
|
+
adapter: sqlite3
|
|
20
|
+
database: db/production.sqlite3
|
|
21
|
+
pool: 5
|
|
22
|
+
timeout: 5000
|
|
@@ -0,0 +1,26 @@
|
|
|
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 webserver 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_view.debug_rjs = true
|
|
15
|
+
config.action_controller.perform_caching = false
|
|
16
|
+
|
|
17
|
+
# Don't care if the mailer can't send
|
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
|
19
|
+
|
|
20
|
+
# Print deprecation notices to the Rails logger
|
|
21
|
+
config.active_support.deprecation = :log
|
|
22
|
+
|
|
23
|
+
# Only use best-standards-support built into browsers
|
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
|
25
|
+
end
|
|
26
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
|
5
|
+
# Code is not reloaded between requests
|
|
6
|
+
config.cache_classes = true
|
|
7
|
+
|
|
8
|
+
# Full error reports are disabled and caching is turned on
|
|
9
|
+
config.consider_all_requests_local = false
|
|
10
|
+
config.action_controller.perform_caching = true
|
|
11
|
+
|
|
12
|
+
# Specifies the header that your server uses for sending files
|
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
|
14
|
+
|
|
15
|
+
# For nginx:
|
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
|
17
|
+
|
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
|
19
|
+
# just comment this out and Rails will serve the files
|
|
20
|
+
|
|
21
|
+
# See everything in the log (default is :info)
|
|
22
|
+
# config.log_level = :debug
|
|
23
|
+
|
|
24
|
+
# Use a different logger for distributed setups
|
|
25
|
+
# config.logger = SyslogLogger.new
|
|
26
|
+
|
|
27
|
+
# Use a different cache store in production
|
|
28
|
+
# config.cache_store = :mem_cache_store
|
|
29
|
+
|
|
30
|
+
# Disable Rails's static asset server
|
|
31
|
+
# In production, Apache or nginx will already do this
|
|
32
|
+
config.serve_static_assets = false
|
|
33
|
+
|
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
|
36
|
+
|
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
39
|
+
|
|
40
|
+
# Enable threaded mode
|
|
41
|
+
# config.threadsafe!
|
|
42
|
+
|
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
|
45
|
+
config.i18n.fallbacks = true
|
|
46
|
+
|
|
47
|
+
# Send deprecation notices to registered listeners
|
|
48
|
+
config.active_support.deprecation = :notify
|
|
49
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
# Log error messages when you accidentally call methods on nil.
|
|
11
|
+
config.whiny_nils = true
|
|
12
|
+
|
|
13
|
+
# Show full error reports and disable caching
|
|
14
|
+
config.consider_all_requests_local = true
|
|
15
|
+
config.action_controller.perform_caching = false
|
|
16
|
+
|
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
|
18
|
+
config.action_dispatch.show_exceptions = false
|
|
19
|
+
|
|
20
|
+
# Disable request forgery protection in test environment
|
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
|
22
|
+
|
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
|
25
|
+
# ActionMailer::Base.deliveries array.
|
|
26
|
+
config.action_mailer.delivery_method = :test
|
|
27
|
+
|
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
30
|
+
# like if you have constraints or database-specific column types
|
|
31
|
+
# config.active_record.schema_format = :sql
|
|
32
|
+
|
|
33
|
+
# Print deprecation notices to the stderr
|
|
34
|
+
config.active_support.deprecation = :stderr
|
|
35
|
+
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!
|