Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.
(e.g. app/models/concerns/, app/models/products/)
| class Api::UploadsController < ApiController | |
| def create | |
| @upload = Upload.new(upload_params) | |
| ensure | |
| clean_tempfile | |
| end | |
| private | 
| class WebhooksController < ActionController::Base | |
| WEBHOOK_KEY = "some_key" # You could also use an API request to lookup the key | |
| before_filter :verify_request_signature | |
| # See: http://help.mandrill.com/entries/23704122-Authenticating-webhook-requests | |
| def verify_request_signature | |
| signed_data = request.url | |
| post_params = request.request_parameters.dup # POST parameters | 
| /** | |
| * Get YouTube ID from various YouTube URL | |
| * @author: takien | |
| * @url: http://takien.com | |
| * For PHP YouTube parser, go here http://takien.com/864 | |
| */ | |
| function YouTubeGetID(url){ | |
| var ID = ''; | |
| url = url.replace(/(>|<)/gi,'').split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/); | 
| class BigDecimal | |
| def inspect | |
| format("#<BigDecimal:%x %s>", object_id, to_s('F')) | |
| end | |
| end | 
| { | |
| "app/assets/javascripts/models/*.coffee": { | |
| "command": "jmodel", | |
| "alternate": "spec/javascripts/models/%s_spec.coffee", | |
| "template": "App.%S = DS.Model.extend" | |
| }, | |
| "app/assets/javascripts/controllers/*_controller.coffee": { | |
| "command": "jcontroller", | |
| "alternate": "spec/javascripts/controllers/%s_spec.coffee", |