Dark Stone Barrel
Dark Stone Buckle
Dark Stone Bullets
Dark Stone Grip
Dark Stone Horse Shoes
Dark Stone Inlay
This file contains 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
- July | |
7th Continent | |
Heroes of Normandie resupply (wave 2) | |
Lazer Ryderz | |
Shadows of Brimstone (wave 2) | |
Spirit Island | |
The End is Nigh | |
Tau Ceti | |
Yokohama |
This file contains 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 HighVoltagePagesHelper | |
class << self | |
include Rails.application.routes.url_helpers | |
end | |
module_function | |
def static_pages | |
Dir.entries(Rails.root.join('app', 'views', 'pages')).inject([]) do |pages, file| | |
matches = file.match(/\.html\.[a-z]+$/) |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am phantomwhale on github. | |
* I am benturner (https://keybase.io/benturner) on keybase. | |
* I have a public key whose fingerprint is 724D 7448 56D0 623E EB75 FC22 5DE1 47DC 4BAB 3CBE | |
To claim this, I am signing this object: |
This file contains 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
# with a space, this doesn't work... | |
$ ANSIBLE_ARGS='-t elasticsearch' vagrant provision | |
==> default: Running provisioner: ansible... | |
ERROR: tag(s) not found in playbook: elasticsearch. possible values: apache,common,elasticsearch,java,passenger,postgresql,ruby | |
Ansible failed to complete successfully. Any error output should be visible above. Please fix these errors and try again. | |
# without the space, it now works... | |
$ ANSIBLE_ARGS='-telasticsearch' vagrant provision |
This file contains 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
# This works, but a bit verbose | |
before do | |
@invitation1, @invitation2 = stub_model(Invitation), stub_model(Invitation) | |
stubbed_scope = stub | |
Invitation.stub(:accessible_by => stubbed_scope) | |
stubbed_scope.stub_chain(:select, :where => [@invitation1, @invitation2]) | |
end | |
# This fails with : |