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 Foo | |
| def self.with_context | |
| old = self.context #save current context | |
| yield | |
| @@context = old #return context back after method was run | |
| end | |
| def self.context=(value) | |
| @@context = value | |
| 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
| use wlw; | |
| db.wlw.drop(); | |
| heading1 = { _id: 10001, name: "Schrauben" , company_counts: { "de":0, "at":9 }, keywords: ["Metall", "Gewinde", "Konstruktion"] }; | |
| heading2 = { _id: 10002, name: "Rohre" , company_counts: { "de":1, "at":3 }, keywords: ["Metall", "Profil" , "Konstruktion"] }; | |
| heading3 = { _id: 10003, name: "Holzballen", company_counts: { "de":3, "at":0 }, keywords: ["Holz" , "Bau" , "Konstruktion"] }; | |
| db.wlw.insert(heading1); | |
| db.wlw.insert(heading2); |
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
| ruby x.rb | |
| {"title":"SHINY NEW TITLE","bar":"blah"} |
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
| /*! | |
| * jQuery outside events - v1.1 - 3/16/2010 | |
| * http://benalman.com/projects/jquery-outside-events-plugin/ | |
| * | |
| * Copyright (c) 2010 "Cowboy" Ben Alman | |
| * Dual licensed under the MIT and GPL licenses. | |
| * http://benalman.com/about/license/ | |
| */ | |
| // Script: jQuery outside events |
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
| Building native extensions. This could take a while... | |
| ERROR: Error installing ray: | |
| ERROR: Failed to build gem native extension. | |
| /home/wojciech/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb | |
| checking for GL/glxext.h... yes | |
| checking for X11/extensions/Xrandr.h... yes | |
| checking for main() in -lXrandr... yes | |
| checking for main() in -lX11... yes | |
| checking for main() in -lGL... yes |
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
| admin.qype.br | |
| admin.qype.co.uk | |
| admin.qype.com | |
| admin.qype.es | |
| admin.qype.fr | |
| admin.qype.it | |
| admin.qype.nl | |
| admin.qype.pl | |
| admin.qype.pt | |
| bbc.qype.br |
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
| def test_including_modules_for_correct_country | |
| Schober::Reader.expects(:send).with(:include, Schober::Mapping::Categories::Ch) | |
| Schober::Reader.expects(:send).with(:include, Schober::Mapping::Columns::Ch) | |
| Schober::Reader.expects(:send).with(:include, Schober::Computing::Ch) | |
| Schober::Reader.new("ch") | |
| 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
| #config/initializers/bb-code.rb | |
| module BBRuby | |
| @@tags["Ruby"] = [ | |
| /\[ruby\](.*?)\[\/ruby\]/mi, | |
| '<pre class="syntax ruby">\1</pre>', | |
| 'Ruby code', | |
| '[ruby]User.last.inspect[/ruby]', | |
| :ruby] | |
| 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
| # default.gems generated gem export file. Note that any env variable settings will be missing. Append these after using a ';' field separator | |
| aaronh-chronic -v0.3.9 | |
| abstract -v1.0.0 | |
| actionmailer -v3.0.7 | |
| actionmailer -v3.0.6 | |
| actionmailer -v2.3.8 | |
| actionmailer -v2.3.5 | |
| actionpack -v3.0.7 | |
| actionpack -v3.0.6 | |
| actionpack -v2.3.8 |
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
| NONE="\[\033[0m\]" # unsets color to term's fg color | |
| # regular colors | |
| K="\[\033[0;30m\]" # black | |
| R="\[\033[0;31m\]" # red | |
| G="\[\033[0;32m\]" # green | |
| Y="\[\033[0;33m\]" # yellow | |
| B="\[\033[0;34m\]" # blue | |
| M="\[\033[0;35m\]" # magenta | |
| C="\[\033[0;36m\]" # cyan |