start new:
tmux
start new with session name:
tmux new -s myname
| require "highline/import" | |
| from_path = ask "Enter path for file to convert: " | |
| to_path = ask "Enter the path where to save the spec file: " | |
| unless File.exists? from_path | |
| puts "Sorry this file doesn't exist!: #{from_path}" | |
| puts "Please try again" | |
| return | |
| end | |
| t_unit = File.read(from_path).to_s |
| background do | |
| set_omniauth() | |
| click_link_or_button 'Sign up with Facebook' | |
| end |
| version: "2" | |
| services: | |
| dev: | |
| image: ruby:2.3 | |
| volumes: | |
| - .:/project | |
| - ruby2.3-bundle-cache:/usr/local/bundle | |
| working_dir: /project |
| # Author: Pieter Noordhuis | |
| # Description: Simple demo to showcase Redis PubSub with EventMachine | |
| # | |
| # Update 7 Oct 2010: | |
| # - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
| # the WebSocket protocol implementation in the cramp gem does not work | |
| # well with Chrome's (newer) WebSocket implementation. | |
| # | |
| # Requirements: | |
| # - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |
| machine: | |
| services: | |
| - 'postgresql' | |
| - 'redis' | |
| environment: | |
| REDIS_URL: 'redis://localhost:6379/0' | |
| dependencies: | |
| pre: | |
| - 'git config user.email [email protected]' | |
| - 'git config user.name $CIRCLE_USERNAME' |
| # Public: Stubs partial search | |
| # Examples => | |
| # stub_partial_search(:node, 'name:web*').and_return([{ 'fqdn' => 'web01.example.com' }]) | |
| # | |
| def stub_partial_search(type, query) | |
| allow(Chef).to receive(:partial_search).and_call_original | |
| expect(Chef).to receive(:partial_search).with(type, query, any_args) | |
| end |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| Update server | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get dist-upgrade | |
| sudo reboot | |
| Enable Swedish locale and utf-8 | |
| sudo locale-gen sv_SE.UTF-8 | |
| sudo dpkg-reconfigure locales | |
| Open sudo vim /etc/environment and add the folowing lines |
| # Example usage: | |
| require 'active_record/nonpersisted_attribute_methods' | |
| class Node < ActiveRecord::Base | |
| include ActiveRecord::NonPersistedAttributeMethods | |
| define_nonpersisted_attribute_methods [:bar] | |
| # Example of using with ancestry and getting :parent to show up in changes hash. | |
| has_ancestry | |
| define_nonpersisted_attribute_methods [:parent] |