http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html
\w
| mysql> show variables like 'innodb%'; | |
| +---------------------------------+------------------------+ | |
| | Variable_name | Value | | |
| +---------------------------------+------------------------+ | |
| | innodb_adaptive_flushing | ON | | |
| | innodb_adaptive_hash_index | ON | | |
| | innodb_additional_mem_pool_size | 8388608 | | |
| | innodb_autoextend_increment | 8 | | |
| | innodb_autoinc_lock_mode | 1 | | |
| | innodb_buffer_pool_instances | 1 | |
| require 'vcr' | |
| VCR.configure do |c| | |
| c.hook_into :webmock | |
| c.cassette_library_dir = 'features/cassettes' | |
| c.ignore_request do |request| | |
| URI(request.uri).port == 8981 #solr test server | |
| end | |
| # can't get any features to run without this enabled |
| source "https://rubygems.org" | |
| ruby "2.1.2" | |
| # gem 'sinatra' | |
| gem 'eventmachine' | |
| gem "cookiejar", :git => "https://github.com/MissionCapital/cookiejar.git" | |
| gem "restforce" | |
| gem 'faye', '0.8.9' | |
| gem 'pry' |
| require 'restforce' | |
| require 'faye' | |
| require 'pry' | |
| Restforce.log = true | |
| client = Restforce.new username: '**********************************', | |
| password: '************************', | |
| security_token: '************************', | |
| client_id: '*************************************************************************************', |