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
| --- | |
| name: Captain Hammer | |
| leak: true | |
| --- | |
| name: Dr. Horrible | |
| leak: false | |
| --- | |
| journey: regex | |
| leak: true | |
| --- |
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" encoding="utf-8"?> | |
| <response emailAddress="rsw@rswgame.com" receivedTime="1251145165.04" rswAddress="rswgame.com:8123" rswSecure="True" serverName="RSW Server" version="0.98.9.4.2" webAddress="http://rswgame.com/"> | |
| <gameHeader changeSeq="1776" endCondition="score:None" gameId="floors3d" involved="True" multi="1" nextTurnTime="Mon, 31 Aug 2009 13:00:00 -0000" numPlayers="11" numPositions="11" numWaitingFor="5" parametersName="Classic" quick="True" started="Sat, 04 Apr 2009 20:30:23 -0000" state="active" submittedFinal="True" turnNumber="20"> | |
| <playerHeader handle="kohlechtohr" msgCount="138" numOrders="2" score="1155" type="Collector" unreadCount="12"/> | |
| <override newValue="25" paramName="PointsPerWorldDiscoveredFlyThrough" typeName="Skip Tracer"/> | |
| <override newValue="4" paramName="MaxFleetHops" typeName="Skip Tracer"/> | |
| <override newValue="1" paramName="PointsPerIndustry" typeName="Emperor"/> | |
| <override newValue="True" paramName="CanOwnRobots" typeName="Warlord"/> | |
| <ov |
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
| Scenario: Request notification of replies to forum topic | |
| Given I sign in as "Marcus/password" | |
| And I compose a forum topic | |
| And I enable the checkbox "topic_notify_me" | |
| # topic_notify_me is the ID of "Email me when someone replies" | |
| # can't use label because the label is *after* the field (?) | |
| And I press "Save topic" | |
| When another user replies to the topic | |
| Then I should receive an email. |
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 :032 > site = Site.create(:name => "Boston") | |
| SQL (0.5ms) INSERT INTO "sites" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 22 Nov 2011 02:28:57 UTC +00:00], ["name", "Boston"], ["updated_at", Tue, 22 Nov 2011 02:28:57 UTC +00:00]] | |
| => #<Site id: 5, name: "Boston", created_at: "2011-11-22 02:28:57", updated_at: "2011-11-22 02:28:57"> | |
| ruby :033 > device = Device.create(:name => "hackatron") | |
| SQL (0.6ms) INSERT INTO "devices" ("created_at", "name", "site_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 22 Nov 2011 02:29:13 UTC +00:00], ["name", "hackatron"], ["site_id", nil], ["updated_at", Tue, 22 Nov 2011 02:29:13 UTC +00:00]] | |
| => #<Device id: 5, name: "hackatron", created_at: "2011-11-22 02:29:13", updated_at: "2011-11-22 02:29:13", site_id: nil> | |
| ruby :034 > site.devices << device | |
| (0.4ms) UPDATE "devices" SET "site_id" = 5, "updated_at" = '2011-11-22 02:29:39.327808' WHERE "devices"."id" = 5 | |
| Device Load (0.2ms) SELECT "devices".* FROM "devices" WHER |
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 Site < ActiveRecord::Base | |
| has_many :zests | |
| has_many :reviews, :through => :zests | |
| has_many :a_grades, :through => :zests, :source => :reviews, | |
| :conditions => {:grade => 5} | |
| def total_with_grade(grade) | |
| reviews.where("grade = ?", grade).count | |
| 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
| __list_remote_all_for 1.9.3 | |
| 1.9.3 or any other filter | |
| ➜ ~ __list_remote_all_for 1.9.3 | |
| https://rvm.io/binaries/arch/libc-2.15/x86_64/ruby-1.9.3-p194.tar.bz2 | |
| https://rvm.io/binaries/arch/libc-2.15/x86_64/ruby-1.9.3-p286.tar.bz2 | |
| https://rvm.io/binaries/arch/libc-2.15/x86_64/ruby-1.9.3-p327.tar.bz2 | |
| https://rvm.io/binaries/centos/5.6/x86_64/ruby-1.9.3-p286.tar.bz2 | |
| https://rvm.io/binaries/centos/5.6/x86_64/ruby-1.9.3-p327.tar.bz2 | |
| https://rvm.io/binaries/centos/6.3/x86_64/ruby-1.9.3-p194.tar.bz2 |
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
| .DS_Store | |
| bundler_stubs/ | |
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 hilite(text); "\n\e[1;30;43m #{text}".ljust(90) + "\e[0m"; 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
| [previous terminal window] | |
| \curl -sSL https://get.rvm.io | bash -s stable | |
| [rvm installed just fine] | |
| [new terminal window with rvm] | |
| Last login: Thu Jan 23 18:56:17 on ttys009 | |
| drako:~ Guest$ rvm list | |
| rvm rubies |
OlderNewer