I hereby claim:
- I am timharding on github.
- I am timharding (https://keybase.io/timharding) on keybase.
- I have a public key whose fingerprint is CF14 B361 CE72 A2C1 4220 6BB2 388D EED8 6E61 220B
To claim this, I am signing this object:
# verifying an md5 checksum... | |
md5 electrum-1.9.7.dmg | |
# then compare checksum | |
# verifying a gpg sig... | |
# 1. find the hex key id for the signer's public key | |
gpg --recv-keys 0x22453004695506FD | |
# 2. download the file and the .asc signature file for that file then | |
# 3. validate the file | |
gpg --verify electrum-1.9.7.dmg{.asc.txt,} |
I hereby claim:
To claim this, I am signing this object:
This is a brief description of how to get CircleCI builds deployed to an Engine Yard hosted staging environment automatically.
We're essentially asking CircleCI to execute commands on the Engine Yard gem to ask EY to deploy a Rails app.
CircleCI needs an SSH key and an API token to talk to Engine Yard, at that point you can execute the deploy command on the gem when the build succeeds.
tim@factory:~/Documents/Development/icehitman (master)$ AUTOFEATURE=true bundle exec autotest | |
loading autotest/cucumber_rails_rspec | |
/usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/activesupport-4.2.0/lib/active_support/core_ext/module/deprecation.rb:21:in `deprecate': uninitialized constant ActiveSupport::Deprecation (NameError) | |
from /usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/activesupport-4.2.0/lib/active_support/core_ext/class/delegating_attributes.rb:26:in `<class:Class>' | |
from /usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/activesupport-4.2.0/lib/active_support/core_ext/class/delegating_attributes.rb:6:in `<top (required)>' | |
from /usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/activesupport-4.2.0/lib/active_support/core_ext/class.rb:2:in `require' | |
from /usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/activesupport-4.2.0/lib/active_support/core_ext/class.rb:2:in `<top (required)>' | |
from /usr/local/var/rbenv/versions/2.1.2/lib/ruby/gems |
Rails.application.eager_load! if Rails.env.development? | |
ActiveRecord::Base.descendants.each do |d| | |
puts d.table_name | |
d.columns_hash.each do |f, t| | |
if t.type == :string || t.type == :text | |
puts "\t#{f} #{t.type}" | |
queries = [] | |
queries << "#{f} = replace(#{f}, '“', '“')" | |
queries << "#{f} = replace(#{f}, '’', '’')" | |
queries << "#{f} = replace(#{f}, '‘', '‘')" |
brew tap homebrew/versions | |
brew install v8-315 | |
gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
bundle install |