flowchart TD
subgraph theGame[The Game]
openBox-->doSortingComponents
doSortingComponents-->askFirstTime{First time playing?}
askFirstTime -- Yes --> doFirstTimePlaying
askFirstTime-->|No| doPrepareAdventure
end
subgraph doFirstTimePlaying [First time playing]
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
require 'securerandom' | |
require 'em-http-request' | |
require 'pry-nav' | |
require 'json' | |
require 'faye/websocket' | |
require 'eventmachine' | |
require 'rest_client' | |
class WTV | |
def initialize(my_id, my_token) |
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
source :gemcutter | |
gem 'rspec' | |
gem 'capybara' |
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
source 'https://rubygems.org' | |
gem 'sqlite3' | |
gem 'rspec' | |
gem 'rspec-collection_matchers' | |
gem 'activerecord' |
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 = "a" | |
puts a | |
a = "b" "b" | |
puts a | |
a = "c""c" | |
puts a | |
a = """" |
OlderNewer