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 Mongoid | |
| module MassAssignmentSecurity | |
| extend ActiveSupport::Concern | |
| included do | |
| attr_accessible nil | |
| end | |
| end | |
| module Document |
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
| # config/initializers/active_model_serializers.rb | |
| Mongoid::Document.send(:include, ActiveModel::SerializerSupport) | |
| Mongoid::Criteria.delegate(:active_model_serializer, :to => :to_a) |
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
| Pling.configure do |config| | |
| config.gateways.use Pling::Gateway::C2DM, { :email => '', :password => '', :source => '' } | |
| config.adapter = Pling::Adapter::Resque.new | |
| end | |
| Resque.before_first_fork do | |
| Pling.gateways.initialize! | |
| Pling.middlewares.initialize! | |
| 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
| # encoding: UTF-8 | |
| Capistrano::Configuration.instance(:must_exist).load do | |
| namespace :rails do | |
| desc "Open the rails console on one of the remote servers" | |
| task :console, :roles => :app do | |
| hostname = find_servers_for_task(current_task).first | |
| exec "ssh -l #{user} #{hostname} -t 'source ~/.profile && #{current_path}/script/rails c #{rails_env}'" | |
| end | |
| 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
| var Sample = function() { | |
| var iamHidden = "you can't see me!"; | |
| this.lookInside = function() { | |
| return iamHidden; | |
| }; | |
| }; | |
| describe("Sample", function() { | |
| it("should be equal", function() { |
NewerOlder