multidb 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +3 -0
  4. data/.ruby-version +1 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE.md +21 -0
  7. data/README.md +65 -0
  8. data/lib/multi_db/action_controller_patches.rb +53 -0
  9. data/lib/multi_db/active_record_patches.rb +94 -0
  10. data/lib/multi_db/after_initialize_patches.rb +3 -0
  11. data/lib/multi_db/engine.rb +28 -0
  12. data/lib/multi_db/multidb.rake +360 -0
  13. data/lib/multi_db/organization.rb +60 -0
  14. data/lib/multi_db/organization_host.rb +7 -0
  15. data/lib/multidb.rb +10 -0
  16. data/multidb.gemspec +26 -0
  17. data/testapp_mysql2/.simplecov +3 -0
  18. data/testapp_mysql2/Gemfile +25 -0
  19. data/testapp_mysql2/Gemfile.lock +148 -0
  20. data/testapp_mysql2/Rakefile +7 -0
  21. data/testapp_mysql2/app/assets/javascripts/application.js +15 -0
  22. data/testapp_mysql2/app/assets/stylesheets/application.css +13 -0
  23. data/testapp_mysql2/app/controllers/application_controller.rb +3 -0
  24. data/testapp_mysql2/app/models/organization.rb +14 -0
  25. data/testapp_mysql2/app/views/layouts/application.html.erb +14 -0
  26. data/testapp_mysql2/config/application.rb +62 -0
  27. data/testapp_mysql2/config/boot.rb +6 -0
  28. data/testapp_mysql2/config/database.yml +17 -0
  29. data/testapp_mysql2/config/environment.rb +5 -0
  30. data/testapp_mysql2/config/environments/development.rb +37 -0
  31. data/testapp_mysql2/config/environments/production.rb +67 -0
  32. data/testapp_mysql2/config/environments/test.rb +37 -0
  33. data/testapp_mysql2/config/initializers/backtrace_silencers.rb +7 -0
  34. data/testapp_mysql2/config/initializers/inflections.rb +15 -0
  35. data/testapp_mysql2/config/initializers/mime_types.rb +5 -0
  36. data/testapp_mysql2/config/initializers/secret_token.rb +7 -0
  37. data/testapp_mysql2/config/initializers/session_store.rb +8 -0
  38. data/testapp_mysql2/config/initializers/wrap_parameters.rb +14 -0
  39. data/testapp_mysql2/config/routes.rb +58 -0
  40. data/testapp_mysql2/config.ru +4 -0
  41. data/testapp_mysql2/db/migrate/master/20140110031857_add_organizations_tables.rb +22 -0
  42. data/testapp_mysql2/db/migrate/sessions/20140110031856_add_sessions_table.rb +14 -0
  43. data/testapp_mysql2/db/schema_master.rb +35 -0
  44. data/testapp_mysql2/db/schema_organization.rb +16 -0
  45. data/testapp_mysql2/db/schema_sessions.rb +26 -0
  46. data/testapp_mysql2/log/.gitkeep +0 -0
  47. data/testapp_mysql2/script/rails +6 -0
  48. data/testapp_mysql2/spec/models/organization_spec.rb +61 -0
  49. data/testapp_mysql2/spec/spec_helper.rb +24 -0
  50. metadata +112 -0
@@ -0,0 +1,60 @@
1
+ module MultiDB
2
+ class Organization < ActiveRecord::Base
3
+ connect_to_master
4
+
5
+ has_many :hosts, :class_name => 'OrganizationHost', :inverse_of => :organization, :dependent => :destroy
6
+
7
+ validates :code, :presence => true, :uniqueness => true
8
+ before_validation :ensure_code
9
+
10
+ scope :active, -> { where(:active => true) }
11
+
12
+ def ensure_code
13
+ if code.blank?
14
+ return true unless name
15
+ new_code = name.downcase.gsub(/[^-\w\d]+/, '-')
16
+ self.code = new_code
17
+ i = 2
18
+ while self.class.where(:code => code, :active => true).first
19
+ self.code = "#{new_code}#{i}"
20
+ i += 1
21
+ end
22
+ end
23
+ end
24
+
25
+ def connect(set_env = false)
26
+ ActiveRecord::Base.connect_to_organization(self, set_env)
27
+ end
28
+
29
+ def create_database
30
+ if code =~ /^[-\w\d]+$/
31
+ begin
32
+ ActiveRecord::Base.connection.create_database("#{ActiveRecord::Base.configurations[Rails.env]['database']}_#{code}")
33
+ rescue Exception => e
34
+ if e.message =~ /Can't create database '(.*?)'; database exists/
35
+ puts "Warning: database #{$1} already exists"
36
+ else
37
+ throw e
38
+ end
39
+ end
40
+
41
+ connect
42
+
43
+ ActiveRecord::Migration.suppress_messages do
44
+ load "#{Rails.root}/db/schema_organization.rb"
45
+ end
46
+ end
47
+ end
48
+
49
+ def drop_database!
50
+ if Rails.env.production?
51
+ raise "Won't drop database in production mode for safety reasons."
52
+ else
53
+ if code =~ /^[-\w\d]+$/
54
+ # watch for sql injection here
55
+ ActiveRecord::Base.connection.drop_database("#{ActiveRecord::Base.configurations[Rails.env]['database']}_#{code}")
56
+ end
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,7 @@
1
+ module MultiDB
2
+ class OrganizationHost < ActiveRecord::Base
3
+ connect_to_master
4
+
5
+ belongs_to :organization, :inverse_of => :hosts
6
+ end
7
+ end
data/lib/multidb.rb ADDED
@@ -0,0 +1,10 @@
1
+ module MultiDB
2
+ if defined?(Rails)
3
+ require 'multi_db/engine'
4
+ else
5
+ # hmm... haven't tested this case
6
+ require 'multi_db/active_record_patches'
7
+ # require 'multidb/organization'
8
+ # require 'multidb/organization_host'
9
+ end
10
+ end
data/multidb.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ # Describe your gem and declare its dependencies:
5
+ Gem::Specification.new do |s|
6
+ s.name = "multidb"
7
+ s.version = '3.2.0'
8
+ s.platform = Gem::Platform::RUBY
9
+ s.author = "Aaron Namba"
10
+ s.email = "aaron@biggerbird.com"
11
+ s.homepage = "https://github.com/anamba/imagine_cms"
12
+ s.summary = %q{MultiDB for ActiveRecord}
13
+ s.description = %q{Enables multitenant setup with one database per tenant. See README for details.}
14
+
15
+ s.required_ruby_version = '>= 1.9.3'
16
+ s.required_rubygems_version = '>= 1.8.11'
17
+
18
+ s.license = 'MIT'
19
+
20
+ s.files = `git ls-files`.split("\n")
21
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
22
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
23
+ s.require_paths = ["lib"]
24
+
25
+ s.add_dependency 'activerecord', '~> 3.2', '>= 3.2.16'
26
+ end
@@ -0,0 +1,3 @@
1
+ SimpleCov.start 'rails' do
2
+ # any custom configs like groups and filters can be here at a central place
3
+ end
@@ -0,0 +1,25 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '~> 3.2.16'
4
+ gem 'mysql2', '~> 0.3.14'
5
+
6
+ gem 'multidb', path: '..'
7
+
8
+ gem 'jquery-rails'
9
+
10
+ group :development, :test do
11
+ gem 'annotate', '~> 2.5.0'
12
+ gem 'rspec-rails', '~> 2.14.0'
13
+ end
14
+
15
+ group :test do
16
+ gem 'shoulda', '~> 3.5.0'
17
+ gem 'simplecov', '~> 0.8.1', :require => false
18
+ end
19
+
20
+ group :assets do
21
+ gem 'sass-rails', '~> 3.2.3'
22
+ gem 'coffee-rails', '~> 3.2.1'
23
+ # gem 'therubyracer', :platforms => :ruby
24
+ gem 'uglifier', '>= 1.0.3'
25
+ end
@@ -0,0 +1,148 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ multidb (3.2.0)
5
+ activerecord (~> 3.2, >= 3.2.16)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.16)
11
+ actionpack (= 3.2.16)
12
+ mail (~> 2.5.4)
13
+ actionpack (3.2.16)
14
+ activemodel (= 3.2.16)
15
+ activesupport (= 3.2.16)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.16)
24
+ activesupport (= 3.2.16)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.16)
27
+ activemodel (= 3.2.16)
28
+ activesupport (= 3.2.16)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.16)
32
+ activemodel (= 3.2.16)
33
+ activesupport (= 3.2.16)
34
+ activesupport (3.2.16)
35
+ i18n (~> 0.6, >= 0.6.4)
36
+ multi_json (~> 1.0)
37
+ annotate (2.5.0)
38
+ rake
39
+ arel (3.0.3)
40
+ builder (3.0.4)
41
+ coffee-rails (3.2.2)
42
+ coffee-script (>= 2.2.0)
43
+ railties (~> 3.2.0)
44
+ coffee-script (2.2.0)
45
+ coffee-script-source
46
+ execjs
47
+ coffee-script-source (1.6.3)
48
+ diff-lcs (1.2.5)
49
+ docile (1.1.1)
50
+ erubis (2.7.0)
51
+ execjs (2.0.2)
52
+ hike (1.2.3)
53
+ i18n (0.6.9)
54
+ journey (1.0.4)
55
+ jquery-rails (3.0.4)
56
+ railties (>= 3.0, < 5.0)
57
+ thor (>= 0.14, < 2.0)
58
+ json (1.8.1)
59
+ mail (2.5.4)
60
+ mime-types (~> 1.16)
61
+ treetop (~> 1.4.8)
62
+ mime-types (1.25.1)
63
+ multi_json (1.8.2)
64
+ mysql2 (0.3.14)
65
+ polyglot (0.3.3)
66
+ rack (1.4.5)
67
+ rack-cache (1.2)
68
+ rack (>= 0.4)
69
+ rack-ssl (1.3.3)
70
+ rack
71
+ rack-test (0.6.2)
72
+ rack (>= 1.0)
73
+ rails (3.2.16)
74
+ actionmailer (= 3.2.16)
75
+ actionpack (= 3.2.16)
76
+ activerecord (= 3.2.16)
77
+ activeresource (= 3.2.16)
78
+ activesupport (= 3.2.16)
79
+ bundler (~> 1.0)
80
+ railties (= 3.2.16)
81
+ railties (3.2.16)
82
+ actionpack (= 3.2.16)
83
+ activesupport (= 3.2.16)
84
+ rack-ssl (~> 1.3.2)
85
+ rake (>= 0.8.7)
86
+ rdoc (~> 3.4)
87
+ thor (>= 0.14.6, < 2.0)
88
+ rake (10.1.1)
89
+ rdoc (3.12.2)
90
+ json (~> 1.4)
91
+ rspec-core (2.14.7)
92
+ rspec-expectations (2.14.4)
93
+ diff-lcs (>= 1.1.3, < 2.0)
94
+ rspec-mocks (2.14.4)
95
+ rspec-rails (2.14.1)
96
+ actionpack (>= 3.0)
97
+ activemodel (>= 3.0)
98
+ activesupport (>= 3.0)
99
+ railties (>= 3.0)
100
+ rspec-core (~> 2.14.0)
101
+ rspec-expectations (~> 2.14.0)
102
+ rspec-mocks (~> 2.14.0)
103
+ sass (3.2.13)
104
+ sass-rails (3.2.6)
105
+ railties (~> 3.2.0)
106
+ sass (>= 3.1.10)
107
+ tilt (~> 1.3)
108
+ shoulda (3.5.0)
109
+ shoulda-context (~> 1.0, >= 1.0.1)
110
+ shoulda-matchers (>= 1.4.1, < 3.0)
111
+ shoulda-context (1.1.6)
112
+ shoulda-matchers (2.4.0)
113
+ activesupport (>= 3.0.0)
114
+ simplecov (0.8.2)
115
+ docile (~> 1.1.0)
116
+ multi_json
117
+ simplecov-html (~> 0.8.0)
118
+ simplecov-html (0.8.0)
119
+ sprockets (2.2.2)
120
+ hike (~> 1.2)
121
+ multi_json (~> 1.0)
122
+ rack (~> 1.0)
123
+ tilt (~> 1.1, != 1.3.0)
124
+ thor (0.18.1)
125
+ tilt (1.4.1)
126
+ treetop (1.4.15)
127
+ polyglot
128
+ polyglot (>= 0.3.1)
129
+ tzinfo (0.3.38)
130
+ uglifier (2.4.0)
131
+ execjs (>= 0.3.0)
132
+ json (>= 1.8.0)
133
+
134
+ PLATFORMS
135
+ ruby
136
+
137
+ DEPENDENCIES
138
+ annotate (~> 2.5.0)
139
+ coffee-rails (~> 3.2.1)
140
+ jquery-rails
141
+ multidb!
142
+ mysql2 (~> 0.3.14)
143
+ rails (~> 3.2.16)
144
+ rspec-rails (~> 2.14.0)
145
+ sass-rails (~> 3.2.3)
146
+ shoulda (~> 3.5.0)
147
+ simplecov (~> 0.8.1)
148
+ uglifier (>= 1.0.3)
@@ -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
+ Testapp::Application.load_tasks
@@ -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
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
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
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,14 @@
1
+ class Organization < MultiDB::Organization
2
+
3
+ def self.create_with_database(org_code = nil, org_name = nil)
4
+ org_code ||= ENV['RAILS_ORG']
5
+ org = new(:name => org_name || org_code, :code => org_code)
6
+ org.save
7
+
8
+ org.create_database
9
+ org.connect
10
+
11
+ org
12
+ end
13
+
14
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Testapp</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,62 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ if defined?(Bundler)
6
+ # If you precompile assets before deploying to production, use this line
7
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
8
+ # If you want your assets lazily compiled in production, use this line
9
+ # Bundler.require(:default, :assets, Rails.env)
10
+ end
11
+
12
+ module Testapp
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
+ # Configure the default encoding used in templates for Ruby 1.9.
37
+ config.encoding = "utf-8"
38
+
39
+ # Configure sensitive parameters which will be filtered from the log file.
40
+ config.filter_parameters += [:password]
41
+
42
+ # Enable escaping HTML in JSON.
43
+ config.active_support.escape_html_entities_in_json = true
44
+
45
+ # Use SQL instead of Active Record's schema dumper when creating the database.
46
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
47
+ # like if you have constraints or database-specific column types
48
+ # config.active_record.schema_format = :sql
49
+
50
+ # Enforce whitelist mode for mass assignment.
51
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
52
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
53
+ # parameters by using an attr_accessible or attr_protected declaration.
54
+ config.active_record.whitelist_attributes = false
55
+
56
+ # Enable the asset pipeline
57
+ config.assets.enabled = true
58
+
59
+ # Version of your assets, change this if you want to expire all your assets
60
+ config.assets.version = '1.0'
61
+ end
62
+ end
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5
+
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,17 @@
1
+ development:
2
+ adapter: mysql2
3
+ encoding: utf8
4
+ collation: utf8_general_ci
5
+ database: <%= ENV['MYSQL_DB'] || 'testapp_mysql2_development' %>
6
+ username: <%= ENV['MYSQL_USER'] || 'root' %>
7
+ password: <%= ENV['MYSQL_PASSWORD'] || '' %>
8
+ <%= ENV['MYSQL_HOST'] ? 'host: ' + ENV['MYSQL_HOST'] : 'socket: /tmp/mysql.sock' %>
9
+
10
+ test:
11
+ adapter: mysql2
12
+ encoding: utf8
13
+ collation: utf8_general_ci
14
+ database: <%= ENV['MYSQL_DB'] || 'testapp_mysql2_test' %>
15
+ username: <%= ENV['MYSQL_USER'] || 'root' %>
16
+ password: <%= ENV['MYSQL_PASSWORD'] || '' %>
17
+ <%= ENV['MYSQL_HOST'] ? 'host: ' + ENV['MYSQL_HOST'] : 'socket: /tmp/mysql.sock' %>
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Testapp::Application.initialize!
@@ -0,0 +1,37 @@
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
+ # 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
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
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
+ # 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 nil and saved in location specified by config.assets.prefix
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
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
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
+ # 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
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ 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,15 @@
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
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -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
+ Testapp::Application.config.secret_token = '3d1e5c08f4ba5a94abbea304398aa28bd982888a1fa9f5e808e9a99c5c008ae772b4b60282d4a689881baa68ebd8affb1164c8a10b7287f94702002dd9bf52fb'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Testapp::Application.config.session_store :cookie_store, key: '_testapp_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
+ # Testapp::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end