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
| diff --git a/app/models/setting/ads.rb b/app/models/setting/ads.rb | |
| index f9361c6..5cf650b 100644 | |
| --- a/app/models/setting/ads.rb | |
| +++ b/app/models/setting/ads.rb | |
| @@ -1,7 +1,7 @@ | |
| class Setting::Ads | |
| include Mongoid::Document | |
| - CACHE_KEY = "ads_config" | |
| + CACHE_KEY = "ads-config" |
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
| git_commit() { | |
| cmd='git commit -am "[#' | |
| space=' "' | |
| BUFFER=$cmd$(pbpaste)]$space | |
| zle get-line | |
| zle end-of-line | |
| zle backward-char | |
| } | |
| zle -N git_commit |
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_mcapp"=> | |
| {"*.inline"=> | |
| {:provider=>"test", | |
| :tags=> | |
| {"id"=>"MZ_300x600_AUDIO_ON", | |
| "div_id"=>"1384374491540-4", | |
| "_type"=>"inline"}, | |
| :size=>"300x250"}, | |
| "home.inline"=> | |
| {:provider=>"propel", |
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
| You're using: resque-rollbar 0.0.1. The latest version is 0.0.4 | |
| You're using: nvd3-rails 0.0.1. The latest version is 0.0.1.1 | |
| You're using: activerecord-import 0.4.1. The latest version is 0.5.0 | |
| You're using: bootstrap-wysihtml5-rails 0.3.1.21. The latest version is 0.3.1.24 | |
| You're using: shopify-mock 0.1.4. The latest version is 0.1.2 | |
| You're using: omniauth-bigcommerce 0.2.0. The latest version is | |
| You're using: premailer-rails 1.4.0. The latest version is 1.7.0 | |
| You're using: netguru 0.0.7.13. The latest version is | |
| You're using: jquery-datatables-rails 1.11.2. The latest version is 1.12.2 | |
| You're using: geckoboard-push 0.1.2. The latest version is 0.1.0 |
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
| diff --git a/app/controllers/shops_controller.rb b/app/controllers/shops_controller.rb | |
| index dff3678..16d99e1 100644 | |
| --- a/app/controllers/shops_controller.rb | |
| +++ b/app/controllers/shops_controller.rb | |
| @@ -20,7 +20,7 @@ class ShopsController < ApplicationController | |
| def show | |
| respond_to do |format| | |
| - format.json { render :json => ApiShop.find_by_id(params[:id], current_user.meez_name), :content_type => "application/json" } | |
| + format.json { render :json => ApiShop.find_by_id_and_gender(params[:id], params[:gender]), :content_type => "application/json" } |
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
| diff --git a/ab.c b/ab.c | |
| index 5a6f2a0..c1c88a5 100644 | |
| --- a/ab.c | |
| +++ b/ab.c | |
| @@ -262,6 +262,7 @@ struct data { | |
| /* --------------------- GLOBALS ---------------------------- */ | |
| int verbosity = 0; /* no verbosity by default */ | |
| +int show_response = 0; /* non-zero to show server response to every request */ | |
| int recverrok = 0; /* ok to proceed after socket receive errors */ |
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
| rvm get head | |
| brew install autoconf automake | |
| rvm uninstall 1.9.3-p327 | |
| rvm cleanup sources | |
| rvm install 1.9.3-p327 --patch falcon | |
| rvm reload | |
| bundle | |
| gem pristine --all |
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
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot; | |
| robot = ev.robot; |
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
| function git_commit() { | |
| cmd='git commit -am "[#' | |
| space=' "' | |
| BUFFER=$cmd$(pbpaste)]$space | |
| zle get-line | |
| zle end-of-line | |
| zle backward-char | |
| } | |
| zle -N git_commit | |
| bindkey "^[i" git_commit |
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
| before_filter :pre_cors | |
| after_filter :cors_set_access_control_headers | |
| def cors_set_access_control_headers | |
| headers['Access-Control-Allow-Origin'] = '*' | |
| headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS' | |
| headers['Access-Control-Max-Age'] = "1728000" | |
| end | |
| def pre_cors |