kentouzu 0.0.7 → 0.0.8

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.
Files changed (59) hide show
  1. data/.gitignore +3 -0
  2. data/.ruby-gemset +1 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +5 -0
  5. data/Gemfile.lock +82 -33
  6. data/kentouzu.gemspec +8 -1
  7. data/lib/kentouzu/draft.rb +1 -1
  8. data/lib/kentouzu/version.rb +1 -1
  9. data/spec/dummy/Rakefile +7 -0
  10. data/spec/dummy/app/assets/images/rails.png +0 -0
  11. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  12. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  13. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  14. data/spec/dummy/app/controllers/messages_controller.rb +75 -0
  15. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  16. data/spec/dummy/app/helpers/messages_helper.rb +2 -0
  17. data/spec/dummy/app/mailers/.gitkeep +0 -0
  18. data/spec/dummy/app/models/message.rb +5 -0
  19. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  20. data/spec/dummy/app/views/messages/_form.html.erb +22 -0
  21. data/spec/dummy/app/views/messages/_message.html.erb +8 -0
  22. data/spec/dummy/app/views/messages/edit.html.erb +3 -0
  23. data/spec/dummy/app/views/messages/index.html.erb +6 -0
  24. data/spec/dummy/app/views/messages/new.html.erb +3 -0
  25. data/spec/dummy/app/views/messages/show.html.erb +4 -0
  26. data/spec/dummy/config/application.rb +70 -0
  27. data/spec/dummy/config/boot.rb +6 -0
  28. data/spec/dummy/config/database.yml +25 -0
  29. data/spec/dummy/config/environment.rb +5 -0
  30. data/spec/dummy/config/environments/development.rb +37 -0
  31. data/spec/dummy/config/environments/production.rb +67 -0
  32. data/spec/dummy/config/environments/test.rb +37 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/inflections.rb +15 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  37. data/spec/dummy/config/initializers/session_store.rb +8 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +5 -0
  40. data/spec/dummy/config/routes.rb +5 -0
  41. data/spec/dummy/config.ru +4 -0
  42. data/spec/dummy/db/migrate/2013051313101708_create_messages.rb +19 -0
  43. data/spec/dummy/db/schema.rb +31 -0
  44. data/spec/dummy/db/seeds.rb +7 -0
  45. data/spec/dummy/lib/assets/.gitkeep +0 -0
  46. data/spec/dummy/lib/tasks/.gitkeep +0 -0
  47. data/spec/dummy/log/.gitkeep +0 -0
  48. data/spec/dummy/public/404.html +26 -0
  49. data/spec/dummy/public/422.html +26 -0
  50. data/spec/dummy/public/500.html +25 -0
  51. data/spec/dummy/public/favicon.ico +0 -0
  52. data/spec/dummy/script/rails +6 -0
  53. data/spec/dummy/tmp/cache/.gitkeep +0 -0
  54. data/spec/kentouzu/controller_spec.rb +0 -0
  55. data/spec/kentouzu/model_spec.rb +6 -0
  56. data/spec/spec_helper.rb +32 -3
  57. metadata +219 -6
  58. data/.rvmrc +0 -80
  59. /data/spec/{kentouzu/kentouzu_spec.rb → kentouzu_spec.rb} +0 -0
data/.gitignore CHANGED
@@ -5,3 +5,6 @@ pkg/*
5
5
  ._*
6
6
  .idea/
7
7
  .redcar/
8
+ spec/dummy/tmp/
9
+ spec/dummy/db/*.sqlite3
10
+ spec/dummy/log/*.log
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ kentouzu
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 1.9.3-p392
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## v0.0.8
2
+
3
+ * Fixed bug that occurs when reifying object with STI when type column is blank.
4
+ * Started adding a dummy test app.
5
+
1
6
  ## v0.0.7
2
7
 
3
8
  * Updated dependencies to allow for Rails 4.
data/Gemfile.lock CHANGED
@@ -1,16 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- kentouzu (0.0.5)
5
- activerecord (~> 3.0)
6
- railties (~> 3.0)
4
+ kentouzu (0.0.8)
5
+ activerecord (>= 3.0)
6
+ railties (>= 3.0)
7
7
 
8
8
  GEM
9
9
  remote: http://rubygems.org/
10
10
  specs:
11
- actionpack (3.2.12)
12
- activemodel (= 3.2.12)
13
- activesupport (= 3.2.12)
11
+ actionmailer (3.2.13)
12
+ actionpack (= 3.2.13)
13
+ mail (~> 2.5.3)
14
+ actionpack (3.2.13)
15
+ activemodel (= 3.2.13)
16
+ activesupport (= 3.2.13)
14
17
  builder (~> 3.0.0)
15
18
  erubis (~> 2.7.0)
16
19
  journey (~> 1.0.4)
@@ -18,26 +21,46 @@ GEM
18
21
  rack-cache (~> 1.2)
19
22
  rack-test (~> 0.6.1)
20
23
  sprockets (~> 2.2.1)
21
- activemodel (3.2.12)
22
- activesupport (= 3.2.12)
24
+ activemodel (3.2.13)
25
+ activesupport (= 3.2.13)
23
26
  builder (~> 3.0.0)
24
- activerecord (3.2.12)
25
- activemodel (= 3.2.12)
26
- activesupport (= 3.2.12)
27
+ activerecord (3.2.13)
28
+ activemodel (= 3.2.13)
29
+ activesupport (= 3.2.13)
27
30
  arel (~> 3.0.2)
28
31
  tzinfo (~> 0.3.29)
29
- activesupport (3.2.12)
30
- i18n (~> 0.6)
32
+ activeresource (3.2.13)
33
+ activemodel (= 3.2.13)
34
+ activesupport (= 3.2.13)
35
+ activesupport (3.2.13)
36
+ i18n (= 0.6.1)
31
37
  multi_json (~> 1.0)
32
38
  arel (3.0.2)
33
39
  builder (3.0.4)
34
- diff-lcs (1.1.3)
40
+ capybara (2.1.0)
41
+ mime-types (>= 1.16)
42
+ nokogiri (>= 1.3.3)
43
+ rack (>= 1.0.0)
44
+ rack-test (>= 0.5.4)
45
+ xpath (~> 2.0)
46
+ database_cleaner (0.9.1)
47
+ diff-lcs (1.2.4)
35
48
  erubis (2.7.0)
36
- hike (1.2.1)
49
+ hike (1.2.2)
37
50
  i18n (0.6.1)
38
51
  journey (1.0.4)
39
- json (1.7.7)
40
- multi_json (1.6.1)
52
+ jquery-rails (2.2.1)
53
+ railties (>= 3.0, < 5.0)
54
+ thor (>= 0.14, < 2.0)
55
+ json (1.8.0)
56
+ mail (2.5.3)
57
+ i18n (>= 0.4.0)
58
+ mime-types (~> 1.16)
59
+ treetop (~> 1.4.8)
60
+ mime-types (1.23)
61
+ multi_json (1.7.3)
62
+ nokogiri (1.5.9)
63
+ polyglot (0.3.3)
41
64
  rack (1.4.5)
42
65
  rack-cache (1.2)
43
66
  rack (>= 0.4)
@@ -45,36 +68,62 @@ GEM
45
68
  rack
46
69
  rack-test (0.6.2)
47
70
  rack (>= 1.0)
48
- railties (3.2.12)
49
- actionpack (= 3.2.12)
50
- activesupport (= 3.2.12)
71
+ rails (3.2.13)
72
+ actionmailer (= 3.2.13)
73
+ actionpack (= 3.2.13)
74
+ activerecord (= 3.2.13)
75
+ activeresource (= 3.2.13)
76
+ activesupport (= 3.2.13)
77
+ bundler (~> 1.0)
78
+ railties (= 3.2.13)
79
+ railties (3.2.13)
80
+ actionpack (= 3.2.13)
81
+ activesupport (= 3.2.13)
51
82
  rack-ssl (~> 1.3.2)
52
83
  rake (>= 0.8.7)
53
84
  rdoc (~> 3.4)
54
85
  thor (>= 0.14.6, < 2.0)
55
86
  rake (10.0.3)
56
- rdoc (3.12.1)
87
+ rdoc (3.12.2)
57
88
  json (~> 1.4)
58
- rspec (2.12.0)
59
- rspec-core (~> 2.12.0)
60
- rspec-expectations (~> 2.12.0)
61
- rspec-mocks (~> 2.12.0)
62
- rspec-core (2.12.2)
63
- rspec-expectations (2.12.1)
64
- diff-lcs (~> 1.1.3)
65
- rspec-mocks (2.12.2)
89
+ rspec-core (2.13.1)
90
+ rspec-expectations (2.13.0)
91
+ diff-lcs (>= 1.1.3, < 2.0)
92
+ rspec-mocks (2.13.1)
93
+ rspec-rails (2.13.1)
94
+ actionpack (>= 3.0)
95
+ activesupport (>= 3.0)
96
+ railties (>= 3.0)
97
+ rspec-core (~> 2.13.0)
98
+ rspec-expectations (~> 2.13.0)
99
+ rspec-mocks (~> 2.13.0)
100
+ shoulda-matchers (2.1.0)
101
+ activesupport (>= 3.0.0)
66
102
  sprockets (2.2.2)
67
103
  hike (~> 1.2)
68
104
  multi_json (~> 1.0)
69
105
  rack (~> 1.0)
70
106
  tilt (~> 1.1, != 1.3.0)
71
- thor (0.17.0)
72
- tilt (1.3.3)
73
- tzinfo (0.3.35)
107
+ sqlite3 (1.3.7)
108
+ thor (0.18.1)
109
+ tilt (1.4.1)
110
+ treetop (1.4.12)
111
+ polyglot
112
+ polyglot (>= 0.3.1)
113
+ tzinfo (0.3.37)
114
+ xpath (2.0.0)
115
+ nokogiri (~> 1.3)
74
116
 
75
117
  PLATFORMS
76
118
  ruby
77
119
 
78
120
  DEPENDENCIES
121
+ capybara
122
+ database_cleaner
123
+ jquery-rails
79
124
  kentouzu!
80
- rspec
125
+ rails (>= 3.2)
126
+ rake
127
+ rspec-rails
128
+ shoulda-matchers
129
+ sqlite3
data/kentouzu.gemspec CHANGED
@@ -21,5 +21,12 @@ Gem::Specification.new do |s|
21
21
  s.add_dependency 'railties', '>= 3.0'
22
22
  s.add_dependency 'activerecord', '>= 3.0'
23
23
 
24
- s.add_development_dependency 'rspec'
24
+ s.add_development_dependency 'capybara'
25
+ s.add_development_dependency 'database_cleaner'
26
+ s.add_development_dependency 'jquery-rails'
27
+ s.add_development_dependency 'rake'
28
+ s.add_development_dependency 'rails', '>= 3.2'
29
+ s.add_development_dependency 'rspec-rails'
30
+ s.add_development_dependency 'shoulda-matchers'
31
+ s.add_development_dependency 'sqlite3'
25
32
  end
@@ -43,7 +43,7 @@ class Draft < ActiveRecord::Base
43
43
  else
44
44
  inheritance_column_name = item_type.constantize.inheritance_column
45
45
 
46
- class_name = loaded_object.respond_to?(inheritance_column_name.to_sym) ? loaded_object.send(inheritance_column_name.to_sym) : item_type
46
+ class_name = loaded_object.respond_to?(inheritance_column_name.to_sym) && loaded_object.send(inheritance_column_name.to_sym).present? ? loaded_object.send(inheritance_column_name.to_sym) : item_type
47
47
 
48
48
  klass = class_name.constantize
49
49
 
@@ -1,3 +1,3 @@
1
1
  module Kentouzu
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
@@ -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,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,7 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+
4
+ def current_user
5
+ 'Test User'
6
+ end
7
+ end
@@ -0,0 +1,75 @@
1
+ class MessagesController < ApplicationController
2
+ def index
3
+ @messages = Message.all
4
+ end
5
+
6
+ def show
7
+ @message = Message.where(:id => params[:id]).first
8
+
9
+ if @message.nil?
10
+ flash[:error] = 'Could not find the specified message.'
11
+
12
+ redirect_to messages_url
13
+ end
14
+ end
15
+
16
+ def new
17
+ @message = Message.new
18
+ end
19
+
20
+ def create
21
+ @message = Message.new(params[:message])
22
+
23
+ @message.ip_address = request.remote_ip
24
+
25
+ if @message.save
26
+ flash[:success] = 'Message has been saved.'
27
+
28
+ redirect_to messages_url
29
+ else
30
+ render 'new'
31
+ end
32
+ end
33
+
34
+ def edit
35
+ @message = Message.where(:id => params[:id]).first
36
+
37
+ if @message.nil?
38
+ flash[:error] = 'Could not find the specified message.'
39
+
40
+ redirect_to messages_url
41
+ end
42
+ end
43
+
44
+ def update
45
+ @message = Message.where(:id => params[:id]).first
46
+
47
+ if @message.nil?
48
+ flash[:error] = 'Could not find the specified message.'
49
+
50
+ redirect_to messages_url
51
+ end
52
+
53
+ if @message.update_attributes(params[:message])
54
+ flash[:success] = 'Message has been updated.'
55
+
56
+ redirect_to messages_url
57
+ else
58
+ render 'edit'
59
+ end
60
+ end
61
+
62
+ def destroy
63
+ @message = Message.where(:id => params[:id]).first
64
+
65
+ if @message.nil?
66
+ flash[:error] = 'Could not find the specified message.'
67
+
68
+ redirect_to messages_url
69
+ end
70
+
71
+ @message.destroy
72
+
73
+ redirect_to messages_url
74
+ end
75
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module MessagesHelper
2
+ end
File without changes
@@ -0,0 +1,5 @@
1
+ class Message < ActiveRecord::Base
2
+ attr_accessible :first_name, :last_name, :subject, :body
3
+
4
+ has_drafts :if => Proc.new { |b| self.first_name == 'Draft' }
5
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+ <div id="nav">
11
+ <%= link_to 'Home', root_path %> | <%= link_to 'New Message', new_message_path %>
12
+ </div>
13
+ <%= yield %>
14
+ </body>
15
+ </html>
@@ -0,0 +1,22 @@
1
+ <%= form_for @message do |f| %>
2
+ <fieldset>
3
+ <legend><%= @message.persisted? ? 'Edit Message' : 'New Message' %></legend>
4
+ <div>
5
+ <%= f.label :first_name %>
6
+ <%= f.text_field :first_name %>
7
+ </div>
8
+ <div>
9
+ <%= f.label :last_name %>
10
+ <%= f.text_field :last_name %>
11
+ </div>
12
+ <div>
13
+ <%= f.label :subject %>
14
+ <%= f.text_field :subject %>
15
+ </div>
16
+ <div>
17
+ <%= f.label :body %>
18
+ <%= f.text_area :body %>
19
+ </div>
20
+ </fieldset>
21
+ <%= f.submit %>
22
+ <% end %>
@@ -0,0 +1,8 @@
1
+ <div id="message-<%= message.id %>" class="message">
2
+ <h2 class="message-subject"><%= link_to message.subject, message_path(message) %></h2>
3
+ <h3 class="message-user"><%= message.first_name %> <%= message.last_name %></h3>
4
+ <div class="message-body"><%= message.body %></div>
5
+ <div class="message-ip-address">posted from <%= message.ip_address %></div>
6
+ <div class="message-date">posted on <%= message.created_at %></div>
7
+ <div class="message-controls"><%= link_to 'Edit Message', edit_message_path(message) %> | <%= link_to 'Delete Message', message_path(message), :method => :delete, :data => { :confirm => 'Are you sure you want to delete this message?' } %></div>
8
+ </div>
@@ -0,0 +1,3 @@
1
+ <div id="edit-message">
2
+ <%= render 'form' %>
3
+ </div>
@@ -0,0 +1,6 @@
1
+ <div id="messages">
2
+ <h1>Messages</h1>
3
+ <% @messages.each do |message| %>
4
+ <%= render 'message', :message => message %>
5
+ <% end %>
6
+ </div>
@@ -0,0 +1,3 @@
1
+ <div id="new-message">
2
+ <%= render 'form' %>
3
+ </div>
@@ -0,0 +1,4 @@
1
+ <div id="messages">
2
+ <h1>Message</h1>
3
+ <%= render 'message', :message => @message %>
4
+ </div>
@@ -0,0 +1,70 @@
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
+ if defined?(Bundler)
12
+ # If you precompile assets before deploying to production, use this line
13
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
14
+ # If you want your assets lazily compiled in production, use this line
15
+ # Bundler.require(:default, :assets, Rails.env)
16
+ end
17
+
18
+ require 'kentouzu'
19
+
20
+ module Dummy
21
+ class Application < Rails::Application
22
+ # Settings in config/environments/* take precedence over those specified here.
23
+ # Application configuration should go into files in config/initializers
24
+ # -- all .rb files in that directory are automatically loaded.
25
+
26
+ # Custom directories with classes and modules you want to be autoloadable.
27
+ # config.autoload_paths += %W(#{config.root}/extras)
28
+
29
+ # Only load the plugins named here, in the order given (default is alphabetical).
30
+ # :all can be used as a placeholder for all plugins not explicitly named.
31
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
32
+
33
+ # Activate observers that should always be running.
34
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
35
+
36
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
37
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
38
+ config.time_zone = 'Central Time (US & Canada)'
39
+
40
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
41
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
42
+ # config.i18n.default_locale = :de
43
+
44
+ # Configure the default encoding used in templates for Ruby 1.9.
45
+ config.encoding = "utf-8"
46
+
47
+ # Configure sensitive parameters which will be filtered from the log file.
48
+ config.filter_parameters += [:password]
49
+
50
+ # Enable escaping HTML in JSON.
51
+ config.active_support.escape_html_entities_in_json = true
52
+
53
+ # Use SQL instead of Active Record's schema dumper when creating the database.
54
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
55
+ # like if you have constraints or database-specific column types
56
+ # config.active_record.schema_format = :sql
57
+
58
+ # Enforce whitelist mode for mass assignment.
59
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
60
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
61
+ # parameters by using an attr_accessible or attr_protected declaration.
62
+ config.active_record.whitelist_attributes = true
63
+
64
+ # Enable the asset pipeline
65
+ config.assets.enabled = true
66
+
67
+ # Version of your assets, change this if you want to expire all your assets
68
+ config.assets.version = '1.0'
69
+ end
70
+ 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,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,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
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
+ # 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
+ 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 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