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
| //In the page Head: | |
| <script type="text/javascript"> | |
| (function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" "); for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertB |
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
| class DynamicStylesheet | |
| # logical_path = 'app/assets/stylesheets/custom.css.scss.erb' | |
| def render(logical_path, data={}) | |
| path = Rails.root.join(logical_path) | |
| context = env.context_class.new(env, logical_path, Pathname.new(path)) | |
| # TODO Change to Tilt.templates_for(file) in Tilt 2.x | |
| templates = [Tilt::ERBTemplate, Sass::Rails::ScssTemplate] |
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
| Fetching gem metadata from https://rubygems.org/......... | |
| Fetching gem metadata from https://rubygems.org/.. | |
| Using rake (10.0.2) | |
| Using i18n (0.6.1) | |
| Using multi_json (1.3.7) | |
| Using activesupport (3.2.9) | |
| Using builder (3.0.4) | |
| Using activemodel (3.2.9) | |
| Using erubis (2.7.0) | |
| Using journey (1.0.4) |
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
| ENV["WATCHR"] = "1" | |
| system 'clear' | |
| def growl(message) | |
| growlnotify = `which growlnotify`.chomp | |
| title = "Watchr Test Results" | |
| puts message | |
| image = message.match(/\s0\s(errors|failures)/) ? "~/.watchr_images/passed.png" : "~/.watchr_images/failed.png" | |
| options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{message}' '#{title}'" | |
| system %(#{growlnotify} #{options} &) |
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
| NoMethodError: undefined method `hydra' for Typhoeus::Hydra:Class | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/adapter/typhoeus.rb:7:in `setup_parallel_manager' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/adapter/typhoeus.rb:21:in `perform_request' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/adapter/typhoeus.rb:14:in `call' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/request/url_encoded.rb:14:in `call' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/request/multipart.rb:13:in `call' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/connection.rb:226:in `run_request' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/faraday-0.8.0/lib/faraday/connection.rb:99:in `post' | |
| from /Users/matt/.rvm/gems/ruby-1.9.3-p194@thinkific/gems/panda-1.5.0/lib/panda/adapters/faraday.rb:27: |
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
| case @questionnaire | |
| when Screening | |
| # do stuff for Screening | |
| when Quizzes::Questionnaire | |
| # do stuff for Quizzes | |
| when Surveys::Questionnaire | |
| # do stuff for Surveys | |
| when Surveys::Questionnaire | |
| # do stuff for Inventories | |
| 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
| Rails.application.assets.logger = Logger.new('/dev/null') | |
| Rails::Rack::Logger.class_eval do | |
| def call_with_quiet_assets(env) | |
| previous_level = Rails.logger.level | |
| Rails.logger.level = Logger::ERROR if env['PATH_INFO'].index("/assets/") == 0 | |
| call_without_quiet_assets(env).tap do | |
| Rails.logger.level = previous_level | |
| end | |
| end | |
| alias_method_chain :call, :quiet_assets |
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
| /Users/matt/.rvm/gems/ruby-1.9.2-p290@healthism/gems/json-1.4.6/lib/json/common.rb:146:in `parse': 375: unexpected token at 'OK]' (JSON::ParserError) | |
| from /Users/matt/.rvm/gems/ruby-1.9.2-p290@healthism/gems/json-1.4.6/lib/json/common.rb:146:in `parse' | |
| from /Users/matt/.rvm/gems/ruby-1.9.2-p290@healthism/gems/gibbon-0.3.5/lib/gibbon.rb:41:in `rescue in call' | |
| from /Users/matt/.rvm/gems/ruby-1.9.2-p290@healthism/gems/gibbon-0.3.5/lib/gibbon.rb:38:in `call' | |
| from /Users/matt/.rvm/gems/ruby-1.9.2-p290@healthism/gems/gibbon-0.3.5/lib/gibbon.rb:56:in `method_missing' |