notify_user 0.0.10 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/notify_user/base_notifications_controller.rb +4 -1
  3. data/lib/notify_user/channels/apns/apns_channel.rb +11 -1
  4. data/lib/notify_user/version.rb +1 -1
  5. data/spec/controllers/notify_user/notifications_controller_spec.rb +6 -0
  6. data/spec/dummy/rails-4.0.4/Gemfile +45 -0
  7. data/spec/dummy/rails-4.0.4/README.rdoc +28 -0
  8. data/spec/dummy/rails-4.0.4/Rakefile +6 -0
  9. data/spec/dummy/rails-4.0.4/app/assets/javascripts/application.js +16 -0
  10. data/spec/dummy/rails-4.0.4/app/assets/stylesheets/application.css +13 -0
  11. data/spec/dummy/rails-4.0.4/app/controllers/application_controller.rb +5 -0
  12. data/spec/dummy/rails-4.0.4/app/controllers/notify_user/notifications_controller.rb +9 -0
  13. data/spec/dummy/rails-4.0.4/app/helpers/application_helper.rb +2 -0
  14. data/spec/dummy/rails-4.0.4/app/models/user.rb +2 -0
  15. data/spec/dummy/rails-4.0.4/app/notifications/new_post_notification.rb +11 -0
  16. data/spec/dummy/rails-4.0.4/app/views/layouts/application.html.erb +14 -0
  17. data/spec/dummy/rails-4.0.4/app/views/notify_user/layouts/action_mailer.html.erb +39 -0
  18. data/spec/dummy/rails-4.0.4/app/views/notify_user/new_post_notification/action_mailer/notification.html.erb +1 -0
  19. data/spec/dummy/rails-4.0.4/app/views/notify_user/new_post_notification/mobile_sdk/notification.html.erb +1 -0
  20. data/spec/dummy/rails-4.0.4/bin/bundle +3 -0
  21. data/spec/dummy/rails-4.0.4/bin/rails +4 -0
  22. data/spec/dummy/rails-4.0.4/bin/rake +4 -0
  23. data/spec/dummy/rails-4.0.4/config/application.rb +23 -0
  24. data/spec/dummy/rails-4.0.4/config/boot.rb +4 -0
  25. data/spec/dummy/rails-4.0.4/config/database.yml +24 -0
  26. data/spec/dummy/rails-4.0.4/config/environment.rb +5 -0
  27. data/spec/dummy/rails-4.0.4/config/environments/development.rb +29 -0
  28. data/spec/dummy/rails-4.0.4/config/environments/production.rb +80 -0
  29. data/spec/dummy/rails-4.0.4/config/environments/test.rb +36 -0
  30. data/spec/dummy/rails-4.0.4/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/dummy/rails-4.0.4/config/initializers/filter_parameter_logging.rb +4 -0
  32. data/spec/dummy/rails-4.0.4/config/initializers/inflections.rb +16 -0
  33. data/spec/dummy/rails-4.0.4/config/initializers/mime_types.rb +5 -0
  34. data/spec/dummy/rails-4.0.4/config/initializers/notify_user.rb +14 -0
  35. data/spec/dummy/rails-4.0.4/config/initializers/secret_token.rb +12 -0
  36. data/spec/dummy/rails-4.0.4/config/initializers/session_store.rb +3 -0
  37. data/spec/dummy/rails-4.0.4/config/initializers/wrap_parameters.rb +14 -0
  38. data/spec/dummy/rails-4.0.4/config/locales/en.yml +23 -0
  39. data/spec/dummy/rails-4.0.4/config/routes.rb +56 -0
  40. data/spec/dummy/rails-4.0.4/config.ru +4 -0
  41. data/spec/dummy/rails-4.0.4/db/migrate/20140519075749_create_users.rb +9 -0
  42. data/spec/dummy/rails-4.0.4/db/migrate/20140519075751424424898000_create_notify_user_notifications.rb +13 -0
  43. data/spec/dummy/rails-4.0.4/db/migrate/20140519075751426426728000_create_notify_user_unsubscribes.rb +10 -0
  44. data/spec/dummy/rails-4.0.4/db/migrate/20140519075751428428230000_create_notify_user_user_hashes.rb +12 -0
  45. data/spec/dummy/rails-4.0.4/db/schema.rb +53 -0
  46. data/spec/dummy/rails-4.0.4/db/seeds.rb +7 -0
  47. data/spec/dummy/rails-4.0.4/log/test.log +13097 -0
  48. data/spec/dummy/rails-4.0.4/public/404.html +58 -0
  49. data/spec/dummy/rails-4.0.4/public/422.html +58 -0
  50. data/spec/dummy/rails-4.0.4/public/500.html +57 -0
  51. data/spec/dummy/rails-4.0.4/public/favicon.ico +0 -0
  52. data/spec/dummy/rails-4.0.4/public/robots.txt +5 -0
  53. data/spec/dummy/rails-4.0.4/test/fixtures/users.yml +7 -0
  54. data/spec/dummy/rails-4.0.4/test/models/user_test.rb +7 -0
  55. data/spec/dummy/rails-4.0.4/test/test_helper.rb +15 -0
  56. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/13195a56ea8581e42f709ea01ea4604f +0 -0
  57. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  58. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/148f39f7dc2ea6cb194598111dbd4598 +0 -0
  59. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/1d6bc1877ba2bbb89f393e10e8303d39 +0 -0
  60. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  61. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/311d2b645a860b78f79ff156f12092ce +0 -0
  62. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  63. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/39651f0f2ac78423732234ebf092c632 +0 -0
  64. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/461686bcf3d7c88e0499f60b83be1fbd +0 -0
  65. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/5c85b1b5ac27b699c5f800c4e7ec82fb +0 -0
  66. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/68752c7ddc300bee3e9823db8befc306 +0 -0
  67. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/8347cdde4e97e62f293aab2e5e6fcc2a +0 -0
  68. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/8698d6fed0ef2f173a377160752b959f +0 -0
  69. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/8bab520aad78da438df1c428288cf229 +0 -0
  70. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  71. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  72. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  73. data/spec/dummy/rails-4.0.4/tmp/cache/assets/test/sprockets/fa138a16887e031c0ae1b4caccfb4c05 +0 -0
  74. data/spec/models/notify_user/notification_spec.rb +16 -2
  75. metadata +138 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2b5085ee8851c7794ce513ecd8a39306b99a617
4
- data.tar.gz: 0899ee588ee35b8e57ca2775eee227e9b7bc7b90
3
+ metadata.gz: 3b23753216db75ab487cf93cab071dd99a316cb7
4
+ data.tar.gz: f3624ce566592cf904d14cf3d0b1d9d4b1ef90fc
5
5
  SHA512:
6
- metadata.gz: 6eb6b9dacbf04d55add8f2410cbe666b28abe41c689a65b9f85862b62c6285577267fe3a21298ed41e376c66cc99fac0f58eb4e5e148be78200b4fcdc2eda1d5
7
- data.tar.gz: 81644a729e2499c788d44b0d9497eac0c90bfad60a193980fa326277899e803d8212a75727cea5abbf624e413fdab247da1dfecb9d1dc4308b67434527174659
6
+ metadata.gz: da72718b83416ce4b2dce42d11251cb56b11369964879e365aba63ce05131e773f8ae85a97e3e548012b54183a7740231e4c5740ce9ef94c327df737348140e1
7
+ data.tar.gz: a29fb1877aeb9de553c32f738cf4221474724db390f94b854d1067a29fd3831879c99035ad19897328f33365fa5106e1a49b6d440df47e34bc8484919b339d6b
@@ -45,7 +45,10 @@ class NotifyUser::BaseNotificationsController < ApplicationController
45
45
  #get
46
46
  def read
47
47
  @notification = NotifyUser::BaseNotification.for_target(@user).where('id = ?', params[:id]).first
48
- @notification.mark_as_read!
48
+ unless @notification.read?
49
+ @notification.mark_as_read!
50
+ end
51
+
49
52
  redirect_logic(@notification)
50
53
  end
51
54
 
@@ -1,7 +1,7 @@
1
1
  class ApnsChannel
2
2
 
3
3
  class << self
4
-
4
+
5
5
  def default_options
6
6
  {
7
7
  description: "Push Notifications"
@@ -10,6 +10,16 @@ class ApnsChannel
10
10
 
11
11
  def deliver(notification, options={})
12
12
  NotifyUser::Apns.push_notification(notification)
13
+
14
+ #check for the existence of development api keys and resend for development
15
+ if !ENV['DEV_UA_APPLICATION_KEY'].nil? && !ENV['DEV_UA_APPLICATION_SECRET'].nil? && !ENV['DEV_UA_MASTER_SECRET'].nil?
16
+
17
+ Urbanairship.application_key = ENV['DEV_UA_APPLICATION_KEY']
18
+ Urbanairship.application_secret = ENV['DEV_UA_APPLICATION_SECRET']
19
+ Urbanairship.master_secret = ENV['DEV_UA_MASTER_SECRET']
20
+
21
+ NotifyUser::Apns.push_notification(notification)
22
+ end
13
23
  end
14
24
 
15
25
  end
@@ -1,3 +1,3 @@
1
1
  module NotifyUser
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.12"
3
3
  end
@@ -58,6 +58,12 @@ describe NotifyUser::NotificationsController do
58
58
  response.body.should have_content("set redirect logic")
59
59
  end
60
60
 
61
+ it "reading a notification twice doesn't throw an exception" do
62
+ get :read, :id => notification.id
63
+ get :read, :id => notification.id
64
+
65
+ end
66
+
61
67
  it "marks all unread messages as read" do
62
68
  get :mark_all
63
69
  notifications = NotifyUser::BaseNotification.for_target(user).where('state IN (?)', '["pending","sent"]')
@@ -0,0 +1,45 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4
+ gem 'rails', '4.0.4'
5
+
6
+ # Use postgresql as the database for Active Record
7
+ gem 'pg'
8
+
9
+ # Use SCSS for stylesheets
10
+ gem 'sass-rails', '~> 4.0.2'
11
+
12
+ # Use Uglifier as compressor for JavaScript assets
13
+ gem 'uglifier', '>= 1.3.0'
14
+
15
+ # Use CoffeeScript for .js.coffee assets and views
16
+ gem 'coffee-rails', '~> 4.0.0'
17
+
18
+ # See https://github.com/sstephenson/execjs#readme for more supported runtimes
19
+ # gem 'therubyracer', platforms: :ruby
20
+
21
+ # Use jquery as the JavaScript library
22
+ gem 'jquery-rails'
23
+
24
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
25
+ gem 'turbolinks'
26
+
27
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
28
+ gem 'jbuilder', '~> 1.2'
29
+
30
+ group :doc do
31
+ # bundle exec rake doc:rails generates the API under doc/api.
32
+ gem 'sdoc', require: false
33
+ end
34
+
35
+ # Use ActiveModel has_secure_password
36
+ # gem 'bcrypt', '~> 3.1.7'
37
+
38
+ # Use unicorn as the app server
39
+ # gem 'unicorn'
40
+
41
+ # Use Capistrano for deployment
42
+ # gem 'capistrano', group: :development
43
+
44
+ # Use debugger
45
+ # gem 'debugger', group: [:development, :test]
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
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
+
6
+ Rails404::Application.load_tasks
@@ -0,0 +1,16 @@
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
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require turbolinks
16
+ //= 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,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
@@ -0,0 +1,9 @@
1
+ class NotifyUser::NotificationsController < NotifyUser::BaseNotificationsController
2
+ def redirect_logic(notification)
3
+ render :text => "set redirect logic in notify_user/notifications_controller.rb"
4
+ # notification redirect logic goes here
5
+ # class_name = notification.params[:type].capitalize.constantize
6
+ # object = class_name.find(@notification.params[:id])
7
+ # redirect_to property_url(object)
8
+ end
9
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ class User < ActiveRecord::Base
2
+ end
@@ -0,0 +1,11 @@
1
+ class NewPostNotification < NotifyUser::BaseNotification
2
+
3
+ channel :action_mailer,
4
+ subject: "Rails404: You have a new Newpostnotification notification.",
5
+ aggregate: {
6
+ subject: "Rails404: You have new Newpostnotification notifications."
7
+ }
8
+
9
+ self.description = "please override this type description"
10
+ self.aggregate_per = 10.minutes
11
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Rails404</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,39 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <html>
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
5
+ <title></title>
6
+ </head>
7
+
8
+ <body marginheight="0" topmargin="0" marginwidth="0" leftmargin="0" style="margin: 0px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;">
9
+ <div style="width: 100%; height: 70px; margin: 0; padding: 0;">
10
+ <div style="width: 600px; margin: 0 auto; padding: 15px 0;">
11
+ Logo
12
+ </div>
13
+ </div>
14
+ <div style="width: 100%; background-color: #fff; margin: 0; padding: 0;">
15
+ <div style="width: 500px; margin: 0 auto; padding: 40px 0; ">
16
+ <%= yield %>
17
+ </div>
18
+ </div>
19
+ <div style="width: 100%; min-height: 80px; margin: 0; padding: 0;">
20
+ <div style="width: 600px; margin: 0 auto; padding: 0;">
21
+ <% if is_unsubscribeable? @notification %>
22
+ <p style="text-align: center;">
23
+ <%= unsubscribe_link(@notification, "Unsubscribe") %>
24
+ </p>
25
+ <%
26
+ end %>
27
+ <p style="text-align: center;">
28
+ This is the default generated layout. A privacy declaration could go here.
29
+ </p>
30
+ <p style="text-align: center; margin-bottom: 0px;">
31
+ © MyCompany Pty Ltd
32
+ </p>
33
+ <p style="text-align: center; margin-top: 0px; padding-top: 0px;">
34
+ ABN 123 456 789
35
+ </p>
36
+ </div>
37
+ </div>
38
+ </body>
39
+ </html>
@@ -0,0 +1 @@
1
+ New Post Notification happened with <%= params.as_json %>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,23 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ # Require the gems listed in Gemfile, including any gems
6
+ # you've limited to :test, :development, or :production.
7
+ Bundler.require(*Rails.groups)
8
+
9
+ module Rails404
10
+ class Application < Rails::Application
11
+ # Settings in config/environments/* take precedence over those specified here.
12
+ # Application configuration should go into files in config/initializers
13
+ # -- all .rb files in that directory are automatically loaded.
14
+
15
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
16
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
17
+ # config.time_zone = 'Central Time (US & Canada)'
18
+
19
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
20
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
21
+ # config.i18n.default_locale = :de
22
+ end
23
+ end
@@ -0,0 +1,4 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,24 @@
1
+ development:
2
+ adapter: postgresql
3
+ encoding: unicode
4
+ database: notify_user_development
5
+ host: localhost
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ test:
10
+ adapter: postgresql
11
+ encoding: unicode
12
+ database: notify_user_test
13
+ host: localhost
14
+ pool: 5
15
+ timeout: 5000
16
+
17
+
18
+ production:
19
+ adapter: postgresql
20
+ encoding: unicode
21
+ database: notify_user_production
22
+ host: localhost
23
+ pool: 5
24
+ 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
+ Rails404::Application.initialize!
@@ -0,0 +1,29 @@
1
+ Rails404::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
+ # Do not eager load code on boot.
10
+ config.eager_load = false
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
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
1
+ Rails404::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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end