I hereby claim:
- I am assimovt on github.
- I am tair (https://keybase.io/tair) on keybase.
- I have a public key ASA8PQUAvX0Y81EhwSedHmphsaKYac8ZAutT3TMsAAlCTAo
To claim this, I am signing this object:
| FROM buildpack-deps:jessie | |
| MAINTAINER The Dockbit Team "[email protected]" | |
| ARG RELEASE=master | |
| ENV HOME /root | |
| ENV MIX_ENV prod | |
| ENV PORT 4000 | |
| ENV REPLACE_OS_VARS true |
I hereby claim:
To claim this, I am signing this object:
| FROM ruby:2.3 | |
| MAINTAINER [email protected] | |
| # Install app dependencies | |
| RUN apt-get update -qq && apt-get install -y \ | |
| build-essential \ | |
| libpq-dev \ | |
| unzip \ | |
| telnet \ | |
| vim \ |
| #!/bin/sh | |
| # This script provisions Boot2Docker with the Convoy volume plugin. | |
| # Copy it to /var/lib/boot2docker/bootlocal.sh and make it executable. | |
| # It will be run at the end of boot initialisation. | |
| # https://github.com/boot2docker/boot2docker/blob/master/doc/FAQ.md | |
| RELEASE=v0.4.3 | |
| URL=https://github.com/rancher/convoy/releases/download/${RELEASE}/convoy.tar.gz |
| require 'formula' | |
| class Libstemmer < Formula | |
| # upstream is constantly changing the tarball, | |
| # so doing checksum verification here would require | |
| # constant, rapid updates to this formula. | |
| head 'http://snowball.tartarus.org/dist/libstemmer_c.tgz' | |
| homepage 'http://snowball.tartarus.org/' | |
| end |
| <!DOCTYPE html> | |
| <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> | |
| <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
| <head> | |
| <meta charset='utf-8'> | |
| # app/views/photos/_photo.html.haml | |
| .photo[photo] | |
| = image_tag photo.image_url(:thumb) if photo.image? | |
| = link_to "Delete", property_photo_path(@property, photo), :method => :delete, :confirm => "Are you sure?", :remote => :true | |