enju_resource_merge 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +36 -0
  4. data/app/controllers/patron_merge_lists_controller.rb +93 -0
  5. data/app/controllers/patron_merges_controller.rb +89 -0
  6. data/app/controllers/series_statement_merge_lists_controller.rb +93 -0
  7. data/app/controllers/series_statement_merges_controller.rb +94 -0
  8. data/app/models/patron_merge.rb +22 -0
  9. data/app/models/patron_merge_list.rb +31 -0
  10. data/app/models/series_statement_merge.rb +22 -0
  11. data/app/models/series_statement_merge_list.rb +26 -0
  12. data/app/views/patron_merge_lists/_form.html.erb +11 -0
  13. data/app/views/patron_merge_lists/edit.html.erb +13 -0
  14. data/app/views/patron_merge_lists/index.html.erb +33 -0
  15. data/app/views/patron_merge_lists/new.html.erb +12 -0
  16. data/app/views/patron_merge_lists/show.html.erb +31 -0
  17. data/app/views/patron_merges/edit.html.erb +31 -0
  18. data/app/views/patron_merges/index.html.erb +32 -0
  19. data/app/views/patron_merges/new.html.erb +39 -0
  20. data/app/views/patron_merges/show.html.erb +25 -0
  21. data/app/views/series_statement_merge_lists/_form.html.erb +11 -0
  22. data/app/views/series_statement_merge_lists/edit.html.erb +13 -0
  23. data/app/views/series_statement_merge_lists/index.html.erb +33 -0
  24. data/app/views/series_statement_merge_lists/new.html.erb +12 -0
  25. data/app/views/series_statement_merge_lists/show.html.erb +31 -0
  26. data/app/views/series_statement_merges/_form.html.erb +12 -0
  27. data/app/views/series_statement_merges/edit.html.erb +31 -0
  28. data/app/views/series_statement_merges/index.html.erb +32 -0
  29. data/app/views/series_statement_merges/new.html.erb +39 -0
  30. data/app/views/series_statement_merges/show.html.erb +27 -0
  31. data/config/routes.rb +21 -0
  32. data/db/migrate/133_create_patron_merges.rb +15 -0
  33. data/db/migrate/134_create_patron_merge_lists.rb +13 -0
  34. data/db/migrate/20110627034940_create_series_statement_merge_lists.rb +13 -0
  35. data/db/migrate/20110627035057_create_series_statement_merges.rb +16 -0
  36. data/lib/enju_resource_merge.rb +5 -0
  37. data/lib/enju_resource_merge/engine.rb +12 -0
  38. data/lib/enju_resource_merge/version.rb +3 -0
  39. data/lib/tasks/enju_resource_merge_tasks.rake +4 -0
  40. data/spec/controllers/patron_merge_lists_controller_spec.rb +456 -0
  41. data/spec/controllers/patron_merges_controller_spec.rb +437 -0
  42. data/spec/controllers/series_statement_merge_lists_controller_spec.rb +439 -0
  43. data/spec/controllers/series_statement_merges_controller_spec.rb +437 -0
  44. data/spec/dummy/Rakefile +7 -0
  45. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  46. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  47. data/spec/dummy/app/controllers/application_controller.rb +75 -0
  48. data/spec/dummy/app/helpers/application_helper.rb +13 -0
  49. data/spec/dummy/app/models/ability.rb +22 -0
  50. data/spec/dummy/app/models/create.rb +4 -0
  51. data/spec/dummy/app/models/donate.rb +10 -0
  52. data/spec/dummy/app/models/item.rb +20 -0
  53. data/spec/dummy/app/models/manifestation.rb +416 -0
  54. data/spec/dummy/app/models/own.rb +22 -0
  55. data/spec/dummy/app/models/patron.rb +14 -0
  56. data/spec/dummy/app/models/produce.rb +4 -0
  57. data/spec/dummy/app/models/realize.rb +4 -0
  58. data/spec/dummy/app/models/role.rb +5 -0
  59. data/spec/dummy/app/models/series_has_manifestation.rb +35 -0
  60. data/spec/dummy/app/models/series_statement.rb +88 -0
  61. data/spec/dummy/app/models/user.rb +28 -0
  62. data/spec/dummy/app/models/user_has_role.rb +4 -0
  63. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  64. data/spec/dummy/app/views/page/403.html.erb +9 -0
  65. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  66. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  67. data/spec/dummy/app/views/page/404.html.erb +9 -0
  68. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  69. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  70. data/spec/dummy/config.ru +4 -0
  71. data/spec/dummy/config/application.rb +46 -0
  72. data/spec/dummy/config/boot.rb +10 -0
  73. data/spec/dummy/config/database.yml +25 -0
  74. data/spec/dummy/config/environment.rb +5 -0
  75. data/spec/dummy/config/environments/development.rb +30 -0
  76. data/spec/dummy/config/environments/production.rb +60 -0
  77. data/spec/dummy/config/environments/test.rb +39 -0
  78. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/spec/dummy/config/initializers/devise.rb +209 -0
  80. data/spec/dummy/config/initializers/inflections.rb +10 -0
  81. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  82. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  83. data/spec/dummy/config/initializers/session_store.rb +8 -0
  84. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/spec/dummy/config/locales/en.yml +5 -0
  86. data/spec/dummy/config/routes.rb +60 -0
  87. data/spec/dummy/db/development.sqlite3 +0 -0
  88. data/spec/dummy/db/migrate/001_create_patrons.rb +62 -0
  89. data/spec/dummy/db/migrate/005_create_manifestations.rb +68 -0
  90. data/spec/dummy/db/migrate/006_create_items.rb +36 -0
  91. data/spec/dummy/db/migrate/125_create_donates.rb +16 -0
  92. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +17 -0
  93. data/spec/dummy/db/migrate/20100223121519_rename_sereis_statement_title_to_original_title.rb +13 -0
  94. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  95. data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +9 -0
  96. data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +9 -0
  97. data/spec/dummy/db/migrate/20110820131417_create_series_has_manifestations.rb +17 -0
  98. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  99. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  100. data/spec/dummy/db/migrate/20111201115527_create_creates.rb +10 -0
  101. data/spec/dummy/db/migrate/20111201115540_create_produces.rb +10 -0
  102. data/spec/dummy/db/migrate/20111201121844_create_roles.rb +12 -0
  103. data/spec/dummy/db/migrate/20111201155456_create_users.rb +13 -0
  104. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +31 -0
  105. data/spec/dummy/db/migrate/20111201163718_create_user_has_roles.rb +10 -0
  106. data/spec/dummy/db/migrate/20120106093356_create_realizes.rb +10 -0
  107. data/spec/dummy/db/migrate/20120106093603_create_owns.rb +10 -0
  108. data/spec/dummy/db/schema.rb +300 -0
  109. data/spec/dummy/db/test.sqlite3 +0 -0
  110. data/spec/dummy/lib/url_validator.rb +10 -0
  111. data/spec/dummy/log/development.log +63 -0
  112. data/spec/dummy/log/test.log +67969 -0
  113. data/spec/dummy/public/404.html +26 -0
  114. data/spec/dummy/public/422.html +26 -0
  115. data/spec/dummy/public/500.html +26 -0
  116. data/spec/dummy/public/favicon.ico +0 -0
  117. data/spec/dummy/script/rails +6 -0
  118. data/spec/enju_resource_merge_test.rb +7 -0
  119. data/spec/factories/patron.rb +10 -0
  120. data/spec/factories/patron_merge.rb +6 -0
  121. data/spec/factories/patron_merge_list.rb +5 -0
  122. data/spec/factories/series_statement.rb +5 -0
  123. data/spec/factories/series_statement_merge.rb +6 -0
  124. data/spec/factories/series_statement_merge_list.rb +5 -0
  125. data/spec/factories/user.rb +31 -0
  126. data/spec/fixtures/manifestations.yml +2017 -0
  127. data/spec/fixtures/patron_merge_lists.yml +27 -0
  128. data/spec/fixtures/patron_merges.yml +31 -0
  129. data/spec/fixtures/patrons.yml +338 -0
  130. data/spec/fixtures/roles.yml +21 -0
  131. data/spec/fixtures/series_has_manifestations.yml +35 -0
  132. data/spec/fixtures/series_statement_merge_lists.yml +27 -0
  133. data/spec/fixtures/series_statement_merges.yml +31 -0
  134. data/spec/fixtures/series_statements.yml +35 -0
  135. data/spec/fixtures/user_has_roles.yml +41 -0
  136. data/spec/fixtures/users.yml +69 -0
  137. data/spec/models/patron_merge_list_spec.rb +18 -0
  138. data/spec/models/patron_merge_spec.rb +19 -0
  139. data/spec/models/series_statement_merge_list_spec.rb +21 -0
  140. data/spec/models/series_statement_merge_spec.rb +17 -0
  141. data/spec/requests/series_statement_merge_lists_spec.rb +11 -0
  142. data/spec/requests/series_statement_merges_spec.rb +11 -0
  143. data/spec/spec_helper.rb +33 -0
  144. data/spec/support/controller_macros.rb +48 -0
  145. data/spec/support/devise.rb +4 -0
  146. data/spec/views/series_statement_merge_lists/edit.html.erb_spec.rb +18 -0
  147. data/spec/views/series_statement_merge_lists/index.html.erb_spec.rb +22 -0
  148. data/spec/views/series_statement_merge_lists/new.html.erb_spec.rb +18 -0
  149. data/spec/views/series_statement_merge_lists/show.html.erb_spec.rb +15 -0
  150. data/spec/views/series_statement_merges/edit.html.erb_spec.rb +23 -0
  151. data/spec/views/series_statement_merges/index.html.erb_spec.rb +25 -0
  152. data/spec/views/series_statement_merges/new.html.erb_spec.rb +23 -0
  153. data/spec/views/series_statement_merges/show.html.erb_spec.rb +17 -0
  154. metadata +433 -0
@@ -0,0 +1,22 @@
1
+ class Own < ActiveRecord::Base
2
+ belongs_to :patron #, :counter_cache => true #, :polymorphic => true, :validate => true
3
+ belongs_to :item #, :counter_cache => true #, :validate => true
4
+
5
+ validates_associated :patron, :item
6
+ validates_presence_of :patron, :item
7
+ validates_uniqueness_of :item_id, :scope => :patron_id
8
+ after_save :reindex
9
+ after_destroy :reindex
10
+
11
+ acts_as_list :scope => :item
12
+
13
+ def self.per_page
14
+ 10
15
+ end
16
+ attr_accessor :item_identifier
17
+
18
+ def reindex
19
+ patron.try(:index)
20
+ item.try(:index)
21
+ end
22
+ end
@@ -0,0 +1,14 @@
1
+ # -*- encoding: utf-8 -*-
2
+ class Patron < ActiveRecord::Base
3
+ scope :readable_by, lambda{|user| {:conditions => ['required_role_id <= ?', user.try(:user_has_role).try(:role_id) || Role.where(:name => 'Guest').select(:id).first.id]}}
4
+ belongs_to :user
5
+ belongs_to :patron_type
6
+ belongs_to :required_role, :class_name => 'Role', :foreign_key => 'required_role_id', :validate => true
7
+ belongs_to :language
8
+
9
+ validates :full_name, :presence => true, :length => {:maximum => 255}
10
+
11
+ def self.per_page
12
+ 10
13
+ end
14
+ end
@@ -0,0 +1,4 @@
1
+ class Produce < ActiveRecord::Base
2
+ belongs_to :patron
3
+ belongs_to :manifestation
4
+ end
@@ -0,0 +1,4 @@
1
+ class Realize < ActiveRecord::Base
2
+ belongs_to :patron
3
+ belongs_to :expression, :class_name => 'Manifestation', :foreign_key => 'expression_id'
4
+ end
@@ -0,0 +1,5 @@
1
+ class Role < ActiveRecord::Base
2
+ def self.default_role
3
+ Role.where(:name => 'Guest').first
4
+ end
5
+ end
@@ -0,0 +1,35 @@
1
+ class SeriesHasManifestation < ActiveRecord::Base
2
+ belongs_to :series_statement
3
+ belongs_to :manifestation
4
+
5
+ validates_associated :series_statement, :manifestation
6
+ validates_presence_of :series_statement_id, :manifestation_id
7
+ validates_uniqueness_of :manifestation_id, :scope => :series_statement_id
8
+
9
+ acts_as_list :scope => :series_statement_id
10
+
11
+ after_create :reindex
12
+ after_destroy :reindex
13
+
14
+ def self.per_page
15
+ 10
16
+ end
17
+
18
+ def reindex
19
+ series_statement.try(:index)
20
+ manifestation.try(:index)
21
+ end
22
+ end
23
+
24
+ # == Schema Information
25
+ #
26
+ # Table name: series_has_manifestations
27
+ #
28
+ # id :integer not null, primary key
29
+ # series_statement_id :integer
30
+ # manifestation_id :integer
31
+ # position :integer
32
+ # created_at :datetime
33
+ # updated_at :datetime
34
+ #
35
+
@@ -0,0 +1,88 @@
1
+ class SeriesStatement < ActiveRecord::Base
2
+ has_many :series_has_manifestations, :dependent => :destroy
3
+ has_many :manifestations, :through => :series_has_manifestations
4
+ belongs_to :root_manifestation, :foreign_key => :root_manifestation_id, :class_name => 'Manifestation'
5
+ validates_presence_of :original_title
6
+ validate :check_issn
7
+ after_save :create_root_manifestation
8
+
9
+ acts_as_list
10
+ searchable do
11
+ text :title do
12
+ titles
13
+ end
14
+ text :numbering, :title_subseries, :numbering_subseries
15
+ integer :manifestation_ids, :multiple => true do
16
+ series_has_manifestations.collect(&:manifestation_id)
17
+ end
18
+ integer :position
19
+ boolean :periodical
20
+ end
21
+
22
+ normalize_attributes :original_title, :issn
23
+
24
+ def self.per_page
25
+ 10
26
+ end
27
+
28
+ def last_issue
29
+ manifestations.where('date_of_publication IS NOT NULL').order('date_of_publication DESC').first || manifestations.order(:id).last
30
+ end
31
+
32
+ def check_issn
33
+ self.issn = ISBN_Tools.cleanup(issn)
34
+ if issn.present?
35
+ unless StdNum::ISSN.valid?(issn)
36
+ errors.add(:issn)
37
+ end
38
+ end
39
+ end
40
+
41
+ def create_root_manifestation
42
+ return nil unless periodical
43
+ return nil if root_manifestation
44
+ self.root_manifestation = Manifestation.new(
45
+ :original_title => original_title
46
+ )
47
+ end
48
+
49
+ def first_issue
50
+ manifestations.order(:date_of_publication).first
51
+ end
52
+
53
+ def latest_issue
54
+ manifestations.order(:date_of_publication).last
55
+ end
56
+
57
+ def manifestation_included(manifestation)
58
+ series_has_manifestations.where(:manifestation_id => manifestation.id).first
59
+ end
60
+
61
+ def titles
62
+ [original_title, title_transcription]
63
+ end
64
+ end
65
+
66
+
67
+
68
+ # == Schema Information
69
+ #
70
+ # Table name: series_statements
71
+ #
72
+ # id :integer not null, primary key
73
+ # original_title :text
74
+ # numbering :text
75
+ # title_subseries :text
76
+ # numbering_subseries :text
77
+ # position :integer
78
+ # created_at :datetime
79
+ # updated_at :datetime
80
+ # title_transcription :text
81
+ # title_alternative :text
82
+ # series_statement_identifier :string(255)
83
+ # issn :string(255)
84
+ # periodical :boolean
85
+ # root_manifestation_id :integer
86
+ # note :text
87
+ #
88
+
@@ -0,0 +1,28 @@
1
+ class User < ActiveRecord::Base
2
+ # Include default devise modules. Others available are:
3
+ # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
4
+ devise :database_authenticatable, :registerable,
5
+ :recoverable, :rememberable, :trackable, :validatable
6
+
7
+ # Setup accessible (or protected) attributes for your model
8
+ attr_accessible :email, :password, :password_confirmation, :remember_me
9
+
10
+ has_one :user_has_role
11
+ has_one :role, :through => :user_has_role
12
+ belongs_to :required_role, :class_name => 'Role', :foreign_key => 'required_role_id'
13
+ has_many :purchase_requests
14
+ has_many :order_lists
15
+
16
+ def has_role?(role_in_question)
17
+ return false unless role
18
+ return true if role.name == role_in_question
19
+ case role.name
20
+ when 'Administrator'
21
+ return true
22
+ when 'Librarian'
23
+ return true if role_in_question == 'User'
24
+ else
25
+ false
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,4 @@
1
+ class UserHasRole < ActiveRecord::Base
2
+ belongs_to :user
3
+ belongs_to :role
4
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,9 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.access_denied') -%></h1>
3
+ <div id="content_list">
4
+ <%= render 'page/search_form' %>
5
+ </div>
6
+ </div>
7
+
8
+ <div id="submenu" class="ui-corner-all">
9
+ </div>
@@ -0,0 +1,5 @@
1
+ <div data-role="header">
2
+ <h2 class="title"><%= t('page.access_denied') -%></h2>
3
+ </div>
4
+ <div data-role="content">
5
+ </div>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <error>
3
+ <status>403</status>
4
+ </error>
@@ -0,0 +1,9 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.not_found') -%></h1>
3
+ <div id="content_list">
4
+ <%= render 'page/search_form' %>
5
+ </div>
6
+ </div>
7
+
8
+ <div id="submenu" class="ui-corner-all">
9
+ </div>
@@ -0,0 +1,5 @@
1
+ <div data-role="header">
2
+ <h2 class="title"><%= t('page.not_found') -%></h2>
3
+ </div>
4
+ <div data-role="content">
5
+ </div>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <error>
3
+ <status>404</status>
4
+ </error>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,46 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "enju_resource_merge"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable the asset pipeline
39
+ config.assets.enabled = true
40
+
41
+ # Version of your assets, change this if you want to expire all your assets
42
+ config.assets.version = '1.0'
43
+ end
44
+ end
45
+
46
+ require 'url_validator'
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -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,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