code
stringlengths 3
1.05M
| repo_name
stringlengths 4
116
| path
stringlengths 3
942
| language
stringclasses 30
values | license
stringclasses 15
values | size
int32 3
1.05M
|
---|---|---|---|---|---|
# Uncomment this if you reference any of your controllers in activate
# require_dependency 'application'
class ReservationExtension < Radiant::Extension
version "0.1"
description "Small Reservation System"
url "http://github.com/simerom/radiant-reservation-extension"
define_routes do |map|
map.namespace :admin, :member => { :remove => :get } do |admin|
admin.resources :reservations, :reservation_items, :reservation_subscribers
end
end
def activate
admin.tabs.add "Reservations", "/admin/reservations", :after => "Layouts", :visibility => [:all]
end
def deactivate
admin.tabs.remove "Reservations"
end
end
| raskhadafi/radiant-reservation-extension | reservation_extension.rb | Ruby | mit | 662 |
//
// DZTextFieldStyle.h
// DZStyle
//
// Created by baidu on 15/7/23.
// Copyright (c) 2015年 dzpqzb. All rights reserved.
//
#import "DZViewStyle.h"
#import "DZTextStyle.h"
#define DZTextFiledStyleMake(initCode) DZStyleMake(initCode, DZTextFieldStyle)
#define IMP_SHARE_TEXTFIELD_STYLE(name , initCode) IMP_SHARE_STYLE(name , initCode, DZTextFieldStyle)
#define EXTERN_SHARE_TEXTFIELD_STYLE(name) EXTERN_SHARE_STYLE(name, DZTextFieldStyle);
@interface DZTextFieldStyle : DZViewStyle
@property (nonatomic, copy) DZTextStyle* textStyle;
@end
| yishuiliunian/StyleSheet | Pod/Classes/Style/DZTextFieldStyle.h | C | mit | 561 |
<?php
/**
* Routes - all standard routes are defined here.
*/
/** Create alias for Router. */
use Core\Router;
use Helpers\Hooks;
/* Force user to login unless running cron */
if(!isset($_SESSION['user']) && $_SERVER['REDIRECT_URL'] != "/reminders/run") {
$c = new Controllers\Users();
$c->login();
exit();
}
/** Define routes. */
// Router::any('', 'Controllers\FoodProducts@index');
Router::any('', function() {
header("Location: /food-products");
exit();
});
Router::any('food-products', 'Controllers\FoodProducts@index');
Router::any('food-products/add', 'Controllers\FoodProducts@addProduct');
Router::any('food-products/delete', 'Controllers\FoodProducts@deleteProduct');
Router::any('food-products/view', 'Controllers\FoodProducts@viewProduct');
Router::any('food-products/edit', 'Controllers\FoodProducts@editProduct');
Router::any('food-products/addIngredient', 'Controllers\FoodProducts@addIngredient');
Router::any('food-products/editIngredient', 'Controllers\FoodProducts@editIngredient');
Router::any('food-products/deleteIngredient', 'Controllers\FoodProducts@deleteIngredient');
Router::any('employees', 'Controllers\Employees@index');
Router::any('employees/view', 'Controllers\Employees@view');
Router::any('employees/add', 'Controllers\Employees@add');
Router::any('employees/add-new-start', 'Controllers\Employees@addNewStart');
Router::any('employees/edit', 'Controllers\Employees@edit');
Router::any('employees/delete', 'Controllers\Employees@delete');
Router::any('employees/qualification/edit', 'Controllers\Employees@editQualification');
Router::any('employees/qualification/add', 'Controllers\Employees@addQualification');
Router::any('employees/qualification/delete','Controllers\Employees@deleteQualification');
Router::any('employees/new-start-item/complete','Controllers\Employees@markNewStartComplete');
Router::any('employees/new-start-item/incomplete','Controllers\Employees@markNewStartIncomplete');
Router::any('employees/new-start-item/delete','Controllers\Employees@deleteNewStart');
Router::any('employees/new-start-item/edit','Controllers\Employees@editNewStart');
Router::any('health-and-safety','Controllers\HealthSafety@index');
Router::any('health-and-safety/add','Controllers\HealthSafety@add');
Router::any('health-and-safety/edit','Controllers\HealthSafety@edit');
Router::any('health-and-safety/delete','Controllers\HealthSafety@delete');
Router::any('health-and-safety/viewdocs','Controllers\HealthSafety@viewdocs');
Router::any('health-and-safety/uploadDocument','Controllers\HealthSafety@uploadDocument');
Router::any('health-and-safety/deleteDocument','Controllers\HealthSafety@deleteDocument');
Router::any('operating-procedures','Controllers\OperatingProcedures@index');
Router::any('operating-procedures/edit','Controllers\OperatingProcedures@edit');
Router::any('operating-procedures/view','Controllers\OperatingProcedures@view');
Router::any('operating-procedures/add','Controllers\OperatingProcedures@add');
Router::any('operating-procedures/delete','Controllers\OperatingProcedures@delete');
Router::any('operating-procedures/print','Controllers\OperatingProcedures@print_pdf');
Router::any('operating-procedures/email','Controllers\OperatingProcedures@email');
Router::any('monitor','Controllers\Monitor@index');
Router::any('reminders/run', 'Controllers\Reminders@reminders');
Router::any('/health-and-safety/categories/manage', 'Controllers\HealthSafety@manageCategories');
Router::any('/health-and-safety/categories/add', 'Controllers\HealthSafety@addCategory');
Router::any('/health-and-safety/categories/delete', 'Controllers\HealthSafety@deleteCategory');
Router::any('/health-and-safety/categories/edit', 'Controllers\HealthSafety@editCategory');
Router::any('/users', 'Controllers\Users@index');
Router::any('/users/add', 'Controllers\Users@add');
Router::any('/users/edit', 'Controllers\Users@edit');
Router::any('/users/delete', 'Controllers\Users@delete');
Router::any('/users/delete', 'Controllers\Users@delete');
Router::any('/users/logout', 'Controllers\Users@logout');
/** Module routes. */
$hooks = Hooks::get();
$hooks->run('routes');
/** If no route found. */
Router::error('Core\Error@index');
/** Turn on old style routing. */
Router::$fallback = false;
/** Execute matched routes. */
Router::dispatch();
| tsnudden/afsc | app/Core/routes.php | PHP | mit | 4,351 |
// Copyright Johannes Falk
// example for directed percolation
// one can choose the probability in the main
// critical-value = 0.68
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include "../xcbwin.h"
double get_rand() {
return static_cast<double>(rand()) / RAND_MAX;
}
// this function does the percolation steps
// since google-c++-style does not allow references
// for out-parameters, we use a pointer
void doPercolationStep(vector<int>* sites, const double PROP, int time) {
int size = sites->size();
int even = time%2;
for (int i = even; i < size; i += 2) {
if (sites->at(i)) {
if (get_rand() < PROP) sites->at((i+size-1)%size) = 1;
if (get_rand() < PROP) sites->at((i+1)%size) = 1;
sites->at(i) = 0;
}
}
}
int main() {
srand(time(NULL)); // initialize the random-generator
const int HEIGHT = 600;
const int WIDTH = 800;
// modify here
const double PROP = 0.68; // probability for bond to be open
Xcbwin Window;
vector<int> sites(WIDTH, 1);
Window.Open(WIDTH, HEIGHT);
for (int y = 0; y < HEIGHT; ++y) {
for (int x = 0; x < WIDTH; ++x) {
if (sites[x]) {
Window.Black();
Window.DrawPoint(x, y);
}
}
doPercolationStep(&sites, PROP, y);
}
Window.Screenshot();
Window.WaitForKeypress();
}
| jofalk/Xcbwin | demo/directed_percolation.cpp | C++ | mit | 1,357 |
package ee.shy.cli;
import ee.shy.Builder;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Class for building help text with preset format
*/
public class HelptextBuilder implements Builder<String> {
/**
* Data structure that contains command's argument and its corresponding description.
*/
private final Map<String, String> commandWithArgs = new LinkedHashMap<>();
/**
* List that provides information about executing the command without arguments.
*/
private final List<String> commandWithoutArgs = new ArrayList<>();
/**
* List containing additional information about the command.
*/
private final List<String> descriptions = new ArrayList<>();
public HelptextBuilder addWithArgs(String command, String description) {
commandWithArgs.put(command, description);
return this;
}
public HelptextBuilder addWithoutArgs(String description) {
commandWithoutArgs.add(description);
return this;
}
public HelptextBuilder addDescription(String description) {
descriptions.add(description);
return this;
}
/**
* Create a StringBuilder object to create a formatted help text.
*
* @return formatted help text
*/
@Override
public String create() {
StringBuilder helptext = new StringBuilder();
if (!commandWithArgs.isEmpty()) {
helptext.append("Usage with arguments:\n");
for (Map.Entry<String, String> entry : commandWithArgs.entrySet()) {
helptext.append("\t").append(entry.getKey()).append("\n");
helptext.append("\t\t- ").append(entry.getValue()).append("\n");
}
helptext.append("\n");
}
if (!commandWithoutArgs.isEmpty()) {
helptext.append("Usage without arguments:\n");
for (String commandWithoutArg : commandWithoutArgs) {
helptext.append("\t").append(commandWithoutArg).append("\n");
}
helptext.append("\n");
}
if (!descriptions.isEmpty()) {
helptext.append("Description:\n");
for (String description : descriptions) {
helptext.append("\t").append(description).append("\n");
}
helptext.append("\n");
}
return helptext.toString();
}
}
| sim642/shy | app/src/main/java/ee/shy/cli/HelptextBuilder.java | Java | mit | 2,440 |
package org.asciicerebrum.neocortexengine.domain.events;
/**
*
* @author species8472
*/
public enum EventType {
/**
* Event thrown directly after the initialization of a new combat round.
*/
COMBATROUND_POSTINIT,
/**
* Event thrown before the initialization of a new combat round.
*/
COMBATROUND_PREINIT,
/**
* The event of gaining a new condition.
*/
CONDITION_GAIN,
/**
* The event of losing a condition.
*/
CONDITION_LOSE,
/**
* The event of applying the inflicted damage.
*/
DAMAGE_APPLICATION,
/**
* The event of inflicting damage.
*/
DAMAGE_INFLICTED,
/**
* The event of some character ending its turn.
*/
END_TURN_END,
/**
* The event of some character starting its turn after the end turn of the
* previous character.
*/
END_TURN_START,
/**
* The event thrown when the single attack hits normally.
*/
SINGLE_ATTACK_HIT,
/**
* The event thrown when the single attack hits critically.
*/
SINGLE_ATTACK_HIT_CRITICAL,
/**
* The event thrown when the single attack misses.
*/
SINGLE_ATTACK_MISS,
/**
* The event thrown before a single attack is performed.
*/
SINGLE_ATTACK_PRE,
}
| asciiCerebrum/neocortexEngine | src/main/java/org/asciicerebrum/neocortexengine/domain/events/EventType.java | Java | mit | 1,310 |
---
title: Bible now available for Mobile Phones
author: TQuizzle
layout: post
permalink: /archive/bible-now-available-for-mobile-phones/
bitly_url:
- http://bit.ly/11zS2uE
bitly_hash:
- 11zS2uE
bitly_long_url:
- http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/
categories:
- Asides
---
Hopefully this spreads to the US allowing more and more Christians the ability to always take the “Good Book” with them.
> South African Christians seeking a quick spiritual boost will be able to download the entire bible on to their mobile telephones phones from Wednesday as part of a drive to modernize the scriptures.
<span class="bqcite"><a rel="nofollow" target="_blank" href="http://go.reuters.com/newsArticle.jhtml?type=oddlyEnoughNews&storyID=13547291&src=rss/oddlyEnoughNews">Reuters</a></span>
<div class="sharedaddy sd-sharing-enabled">
<div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing">
<h3 class="sd-title">
Share this:
</h3>
<div class="sd-content">
<ul>
<li class="share-twitter">
<a rel="nofollow" class="share-twitter sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=twitter" title="Click to share on Twitter" id="sharing-twitter-22"><span>Twitter</span></a>
</li>
<li class="share-google-plus-1">
<a rel="nofollow" class="share-google-plus-1 sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=google-plus-1" title="Click to share on Google+" id="sharing-google-22"><span>Google</span></a>
</li>
<li class="share-facebook">
<a rel="nofollow" class="share-facebook sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=facebook" title="Share on Facebook" id="sharing-facebook-22"><span>Facebook</span></a>
</li>
<li class="share-custom">
<a rel="nofollow" class="share-custom sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=custom-1371173110" title="Click to share"><span style="background-image:url("http://www.repost.us/wp-content/themes/repost-beta/repost-site/favicon.ico");">repost</span></a>
</li>
<li>
<a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a>
</li>
<li class="share-end">
</li>
</ul>
<div class="sharing-hidden">
<div class="inner" style="display: none;">
<ul>
<li class="share-linkedin">
<a rel="nofollow" class="share-linkedin sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=linkedin" title="Click to share on LinkedIn" id="sharing-linkedin-22"><span>LinkedIn</span></a>
</li>
<li class="share-reddit">
<a rel="nofollow" class="share-reddit sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=reddit" title="Click to share on Reddit"><span>Reddit</span></a>
</li>
<li class="share-end">
</li>
<li class="share-digg">
<a rel="nofollow" class="share-digg sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=digg" title="Click to Digg this post"><span>Digg</span></a>
</li>
<li class="share-stumbleupon">
<a rel="nofollow" class="share-stumbleupon sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=stumbleupon" title="Click to share on StumbleUpon"><span>StumbleUpon</span></a>
</li>
<li class="share-end">
</li>
<li class="share-email">
<a rel="nofollow" class="share-email sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/?share=email" title="Click to email this to a friend"><span>Email</span></a>
</li>
<li class="share-print">
<a rel="nofollow" class="share-print sd-button share-icon" href="http://www.tquizzle.com/archive/bible-now-available-for-mobile-phones/" title="Click to print"><span>Print</span></a>
</li>
<li class="share-end">
</li>
<li class="share-end">
</li>
</ul>
</div>
</div>
</div>
</div>
</div> | tquizzle/tquizzle.github.io | _posts/2006-09-25-bible-now-available-for-mobile-phones.md | Markdown | mit | 4,614 |
package shadows;
import java.util.List;
import java.util.Map;
import org.lwjgl.opengl.GL11;
import org.lwjgl.util.vector.Matrix4f;
import org.lwjgl.util.vector.Vector2f;
import org.lwjgl.util.vector.Vector3f;
import entities.Camera;
import entities.Entity;
import entities.Light;
import entities.Player;
import models.TexturedModel;
public class ShadowMapMasterRenderer {
private static final int SHADOW_MAP_SIZE = 5200;
private ShadowFrameBuffer shadowFbo;
private ShadowShader shader;
private ShadowBox shadowBox;
private Matrix4f projectionMatrix = new Matrix4f();
private Matrix4f lightViewMatrix = new Matrix4f();
private Matrix4f projectionViewMatrix = new Matrix4f();
private Matrix4f offset = createOffset();
private ShadowMapEntityRenderer entityRenderer;
/**
* Creates instances of the important objects needed for rendering the scene
* to the shadow map. This includes the {@link ShadowBox} which calculates
* the position and size of the "view cuboid", the simple renderer and
* shader program that are used to render objects to the shadow map, and the
* {@link ShadowFrameBuffer} to which the scene is rendered. The size of the
* shadow map is determined here.
*
* @param camera
* - the camera being used in the scene.
*/
public ShadowMapMasterRenderer(Camera camera) {
shader = new ShadowShader();
shadowBox = new ShadowBox(lightViewMatrix, camera);
shadowFbo = new ShadowFrameBuffer(SHADOW_MAP_SIZE, SHADOW_MAP_SIZE);
entityRenderer = new ShadowMapEntityRenderer(shader, projectionViewMatrix);
}
/**
* Carries out the shadow render pass. This renders the entities to the
* shadow map. First the shadow box is updated to calculate the size and
* position of the "view cuboid". The light direction is assumed to be
* "-lightPosition" which will be fairly accurate assuming that the light is
* very far from the scene. It then prepares to render, renders the entities
* to the shadow map, and finishes rendering.
*
* @param entities
* - the lists of entities to be rendered. Each list is
* associated with the {@link TexturedModel} that all of the
* entities in that list use.
* @param sun
* - the light acting as the sun in the scene.
*/
public void render(Map<TexturedModel, List<Entity>> entities, Light sun) {
shadowBox.update();
Vector3f sunPosition = sun.getPosition();
Vector3f lightDirection = new Vector3f(-sunPosition.x, -sunPosition.y, -sunPosition.z);
prepare(lightDirection, shadowBox);
entityRenderer.render(entities);
finish();
}
/**
* This biased projection-view matrix is used to convert fragments into
* "shadow map space" when rendering the main render pass. It converts a
* world space position into a 2D coordinate on the shadow map. This is
* needed for the second part of shadow mapping.
*
* @return The to-shadow-map-space matrix.
*/
public Matrix4f getToShadowMapSpaceMatrix() {
return Matrix4f.mul(offset, projectionViewMatrix, null);
}
/**
* Clean up the shader and FBO on closing.
*/
public void cleanUp() {
shader.cleanUp();
shadowFbo.cleanUp();
}
/**
* @return The ID of the shadow map texture. The ID will always stay the
* same, even when the contents of the shadow map texture change
* each frame.
*/
public int getShadowMap() {
return shadowFbo.getShadowMap();
}
/**
* @return The light's "view" matrix.
*/
protected Matrix4f getLightSpaceTransform() {
return lightViewMatrix;
}
/**
* Prepare for the shadow render pass. This first updates the dimensions of
* the orthographic "view cuboid" based on the information that was
* calculated in the {@link SHadowBox} class. The light's "view" matrix is
* also calculated based on the light's direction and the center position of
* the "view cuboid" which was also calculated in the {@link ShadowBox}
* class. These two matrices are multiplied together to create the
* projection-view matrix. This matrix determines the size, position, and
* orientation of the "view cuboid" in the world. This method also binds the
* shadows FBO so that everything rendered after this gets rendered to the
* FBO. It also enables depth testing, and clears any data that is in the
* FBOs depth attachment from last frame. The simple shader program is also
* started.
*
* @param lightDirection
* - the direction of the light rays coming from the sun.
* @param box
* - the shadow box, which contains all the info about the
* "view cuboid".
*/
private void prepare(Vector3f lightDirection, ShadowBox box) {
updateOrthoProjectionMatrix(box.getWidth(), box.getHeight(), box.getLength());
updateLightViewMatrix(lightDirection, box.getCenter());
Matrix4f.mul(projectionMatrix, lightViewMatrix, projectionViewMatrix);
shadowFbo.bindFrameBuffer();
GL11.glEnable(GL11.GL_DEPTH_TEST);
GL11.glClear(GL11.GL_DEPTH_BUFFER_BIT);
shader.start();
}
/**
* Finish the shadow render pass. Stops the shader and unbinds the shadow
* FBO, so everything rendered after this point is rendered to the screen,
* rather than to the shadow FBO.
*/
private void finish() {
shader.stop();
shadowFbo.unbindFrameBuffer();
}
/**
* Updates the "view" matrix of the light. This creates a view matrix which
* will line up the direction of the "view cuboid" with the direction of the
* light. The light itself has no position, so the "view" matrix is centered
* at the center of the "view cuboid". The created view matrix determines
* where and how the "view cuboid" is positioned in the world. The size of
* the view cuboid, however, is determined by the projection matrix.
*
* @param direction
* - the light direction, and therefore the direction that the
* "view cuboid" should be pointing.
* @param center
* - the center of the "view cuboid" in world space.
*/
private void updateLightViewMatrix(Vector3f direction, Vector3f center) {
direction.normalise();
center.negate();
lightViewMatrix.setIdentity();
float pitch = (float) Math.acos(new Vector2f(direction.x, direction.z).length());
Matrix4f.rotate(pitch, new Vector3f(1, 0, 0), lightViewMatrix, lightViewMatrix);
float yaw = (float) Math.toDegrees(((float) Math.atan(direction.x / direction.z)));
yaw = direction.z > 0 ? yaw - 180 : yaw;
Matrix4f.rotate((float) -Math.toRadians(yaw), new Vector3f(0, 1, 0), lightViewMatrix,
lightViewMatrix);
Matrix4f.translate(center, lightViewMatrix, lightViewMatrix);
}
/**
* Creates the orthographic projection matrix. This projection matrix
* basically sets the width, length and height of the "view cuboid", based
* on the values that were calculated in the {@link ShadowBox} class.
*
* @param width
* - shadow box width.
* @param height
* - shadow box height.
* @param length
* - shadow box length.
*/
private void updateOrthoProjectionMatrix(float width, float height, float length) {
projectionMatrix.setIdentity();
projectionMatrix.m00 = 2f / width;
projectionMatrix.m11 = 2f / height;
projectionMatrix.m22 = -2f / length;
projectionMatrix.m33 = 1;
}
/**
* Create the offset for part of the conversion to shadow map space. This
* conversion is necessary to convert from one coordinate system to the
* coordinate system that we can use to sample to shadow map.
*
* @return The offset as a matrix (so that it's easy to apply to other matrices).
*/
private static Matrix4f createOffset() {
Matrix4f offset = new Matrix4f();
offset.translate(new Vector3f(0.5f, 0.5f, 0.5f));
offset.scale(new Vector3f(0.5f, 0.5f, 0.5f));
return offset;
}
}
| jely2002/Walk-Simulator | src/shadows/ShadowMapMasterRenderer.java | Java | mit | 7,992 |
<div ng-controller="lessonCtrl as vm">
<div class="row" style="margin-bottom: 10px">
<div class="col-xs-12">
<progress-bar lessons="vm.lessonSvc.lessons" lesson="vm.lesson"></progress-bar>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="row">
<div class="col-xs-8">
<h3>Headings</h3>
</div>
<div class="col-xs-4">
<nav-list lesson="vm.lesson" lessons="vm.lessonSvc.lessons"></nav-list>
</div>
</div>
<p>
HTML supports headings using tags like <code>h1</code> and <code>h2</code> where <code>h1</code> is a level-1 heading and <code>h2</code> is a level-2 heading.
You can create these headings by adding one or more <code>#</code> symbols before your heading text. The number of <code>#</code> you
use will determine the size of the heading.
</p>
<pre>
<p>
# This is an h1 tag
</p>
<p>
## This is an h2 tag
</p>
</pre>
<h3>Example</h3>
<hr/>
<h1>This is an h1 tag</h1>
<h2>This is an h2 tag</h2>
</div>
<div class="col-sm-4">
<editor text="vm.lesson.text" lesson="vm.lesson"></editor>
</div>
<div class="col-sm-4">
<result text="vm.lesson.text"></result>
</div>
</div>
<md-footer number="vm.state.next"></md-footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-61916780-1', 'auto');
ga('send', 'pageview');
</script> | jacobswain/markdown-tutorial | public/app/lessons/lesson2.html | HTML | mit | 2,053 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Craig McClellan" name="author">
<title>Craig McClellan - T398514607721316352 </title>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/highlight.css" rel="stylesheet">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/craigmcclellan/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Craig McClellan" href="http://craigmcclellan.com/feed.xml" />
<link rel="alternate" type="application/json" title="Craig McClellan" href="http://craigmcclellan.com/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/craigmcclellan" />
<link rel="me" href="https://twitter.com/craigmcclellan" />
<link rel="me" href="https://github.com/craigwmcclellan" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<nav class="main-nav">
<a class="normal" href="/"> <span class="arrow">←</span> Home</a>
<a href="/archive/">Archive</a>
<a href="/about/">About</a>
<a href="/tools-of-choice/">Tools of Choice</a>
<a class="cta" href="https://micro.blog/craigmcclellan" rel="me">Also on Micro.blog</a>
</nav>
<section id="wrapper">
<article class="h-entry post">
<header>
<h2 class="headline">
<time class="dt-published" datetime="2013-11-07 12:17:41 -0600">
<a class="u-url dates" href="/2013/11/07/t398514607721316352.html">November 7, 2013</a>
</time>
</h2>
</header>
<section class="e-content post-body">
<p>Doctor Who is winning at social media promotion for the 50th anniversary special. <a href="http://t.co/yCVbu9ZcXE">t.co/yCVbu9ZcX…</a> #savetheday</p>
</section>
</article>
<section id="post-meta" class="clearfix">
<a href="/">
<img class="u-photo avatar" src="https://micro.blog/craigmcclellan/avatar.jpg">
<div>
<span class="p-author h-card dark">Craig McClellan</span>
<span><a href="https://micro.blog/craigmcclellan">@craigmcclellan</a></span>
</div>
</a>
</section>
</section>
<footer id="footer">
<section id="wrapper">
<ul>
<li><a href="/feed.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
<li><a href="https://micro.blog/craigmcclellan" rel="me">Micro.blog</a></li>
<!-- <li><a class="u-email" href="mailto:" rel="me">Email</a></li> -->
</ul>
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="http://craigmcclellan.com"/>
<input type="hidden" name="k8" value="#444444"/>
<input type="hidden" name="k9" value="#ee4792"/>
<input type="hidden" name="kt" value="h"/>
<input class="field" type="text" name="q" maxlength="255" placeholder="To search, type and hit Enter…"/>
<input type="submit" value="Search" style="display: none;" />
</form>
</section>
</footer>
</body>
</html>
| craigwmcclellan/craigwmcclellan.github.io | _site/2013/11/07/t398514607721316352.html | HTML | mit | 4,910 |
import debounce from 'debounce';
import $ from 'jquery';
const groupElementsByTop = (groups, element) => {
const top = $(element).offset().top;
groups[top] = groups[top] || [];
groups[top].push(element);
return groups;
};
const groupElementsByZero = (groups, element) => {
groups[0] = groups[0] || [];
groups[0].push(element);
return groups;
};
const clearHeight = elements => $(elements).css('height', 'auto');
const getHeight = element => $(element).height();
const applyMaxHeight = (elements) => {
const heights = elements.map(getHeight);
const maxHeight = Math.max.apply(null, heights);
$(elements).height(maxHeight);
};
const equalizeHeights = (elements, groupByTop) => {
// Sort into groups.
const groups = groupByTop ?
elements.reduce(groupElementsByTop, {}) :
elements.reduce(groupElementsByZero, {});
// Convert to arrays.
const groupsAsArray = Object.keys(groups).map((key) => {
return groups[key];
});
// Apply max height.
groupsAsArray.forEach(clearHeight);
groupsAsArray.forEach(applyMaxHeight);
};
$.fn.equalHeight = function ({
groupByTop = false,
resizeTimeout = 20,
updateOnDOMReady = true,
updateOnDOMLoad = false
} = {}) {
// Convert to native array.
const elements = this.toArray();
// Handle resize event.
$(window).on('resize', debounce(() => {
equalizeHeights(elements, groupByTop);
}, resizeTimeout));
// Handle load event.
$(window).on('load', () => {
if (updateOnDOMLoad) {
equalizeHeights(elements, groupByTop);
}
});
// Handle ready event.
$(document).on('ready', () => {
if (updateOnDOMReady) {
equalizeHeights(elements, groupByTop);
}
});
return this;
};
| dubbs/equal-height | src/jquery.equalHeight.js | JavaScript | mit | 1,714 |
toalien-site
============
| hbpoison/toalien-site | README.md | Markdown | mit | 26 |
/// <reference path="typings/tsd.d.ts" />
var plugins = {
beautylog: require("beautylog")("os"),
gulp: require("gulp"),
jade: require("gulp-jade"),
util: require("gulp-util"),
vinylFile: require("vinyl-file"),
jsonjade: require("./index.js"),
gulpInspect: require("gulp-inspect")
};
var jadeTemplate = plugins.vinylFile.readSync("./test/test.jade");
var noJadeTemplate = {}
plugins.gulp.task("check1",function(){
var stream = plugins.gulp.src("./test/test.json")
.pipe(plugins.jsonjade(jadeTemplate))
.pipe(plugins.jade({ //let jade do its magic
pretty: true,
basedir: '/'
})).on("error",plugins.util.log)
.pipe(plugins.gulpInspect(true))
.pipe(plugins.gulp.dest("./test/result/"));
return stream;
});
plugins.gulp.task("check2",function(){
var stream = plugins.gulp.src("./test/test.json")
.pipe(plugins.jsonjade(noJadeTemplate));
});
plugins.gulp.task("default",["check1","check2"],function(){
plugins.beautylog.success("Test passed");
});
plugins.gulp.start.apply(plugins.gulp, ['default']); | pushrocks/gulp-jsonjade | ts/test.ts | TypeScript | mit | 1,117 |
#include "mesh_adapt.h"
#include "mesh_adj.h"
#include "mesh_mod.h"
#include "cavity_op.h"
static void find_best_edge_split(mesh* m, split* s, ment e, ment v[2])
{
double mq;
double q;
unsigned ne;
unsigned i;
ment v_[2];
ne = simplex_ndown[e.t][EDGE];
mq = -1;
for (i = 0; i < ne; ++i) {
mesh_down(m, e, EDGE, i, v_);
split_start(s, EDGE, v_, ment_null);
q = split_quality(s);
if (q > mq) {
mq = q;
v[0] = v_[0];
v[1] = v_[1];
}
split_cancel(s);
}
}
static split* the_split;
static void refine_op(mesh* m, ment e)
{
ment v[2];
find_best_edge_split(m, the_split, e, v);
split_edge(the_split, v);
}
void mesh_refine(mesh* m, mflag* f)
{
the_split = split_new(m);
cavity_exec_flagged(m, f, refine_op, mesh_elem(m));
split_free(the_split);
}
void mesh_refine_all(mesh* m)
{
mflag* f = mflag_new_all(m, mesh_elem(m));
mesh_refine(m, f);
mflag_free(f);
}
| ibaned/tetknife | mesh_adapt.c | C | mit | 933 |
# Ancient Projects
While "Ancient" would be an interesting name for a project, it's used literally: This is old code I wrote way back; some from 2009, some from later, possibly some from even earlier.
I'm currently going through my files and cleaning up; as part of this I'm putting it in this Git repo, mostly to archive it. I don't really intend to do anything with it.
| mrwonko/ancient | readme.md | Markdown | mit | 374 |
// Structure to represent a proof
class ProofTree {
constructor({equation, rule, newScope=false }) {
this.equation = equation;
this.rule = rule;
this.newScope = newScope;
this.parent = null;
this.children = [];
this.isSound = !newScope;
}
isAssumption() {
return this.newScope;
}
isEmpty() {
return this.parent === null && this.children === [];
}
size() {
if (this.isEmpty()) return 0;
if (this.children.length)
return 1 + this.children.map(c=>c.size()).reduce((acc, c)=>acc+c);
return 1;
}
lastNumber() {
return this.size();
}
walk(fn) {
fn(this);
this.children.forEach(child => {
child.walk(fn);
});
}
last() {
if (this.children.length === 0) return this;
var last = this;
this.children.forEach(child => {
if (!child.isAssumption()) {
last = child.last();
}
});
return last;
}
setLines() {
var count = 1;
this.walk((child) => {
child.lineNumber = count;
count ++;
});
}
root() {
if (this.parent === null) return this;
return this.parent.root();
}
inScope(target) {
if (this.lineNumber === target) {
return true;
} else {
if (this.parent === null) return false;
var child = null;
var anySiblings = this.parent.children.some(child => {
return !child.isAssumption() && (child.lineNumber === target)
})
if (anySiblings) {
return true;
}
return this.parent.inScope(target);
}
}
// inScope(line1, line2, context=this.root()) {
//
// if (line1 === line2) return true;
// if (line1 > line2) return false;
// var line1Obj = context.line(line1);
// var line2Obj = context.line(line2);
// return this.inScope(line1Obj.lineNumber, line2Obj.parent.lineNumber, context);
// }
line(lineNumber) {
var line = null;
var count = 1;
this.walk(child => {
if (lineNumber === count) line = child;
count ++;
});
return line;
}
addLine(line) {
line.parent = this.last();
line.parent.children.push(line);
this.root().setLines();
}
closeBox() {
this.isSound = true;
}
addLineTo(line, lineNumber) {
// line.parent = this.line()
}
addLineNewScope({equation, rule}) {
var line = new ProofTree({
equation,
rule,
newScope: true
});
line.parent = this.last();
this.children.push(line);
line.root().setLines();
}
}
// Synonym as it reads better sometimes
ProofTree.prototype.scope = ProofTree.prototype.line;
export default ProofTree;
| jackdeadman/Natural-Deduction-React | src/js/classes/Proof/ProofTree.js | JavaScript | mit | 2,618 |
package me.puras.common.controller;
import me.puras.common.domain.DomainModel;
import me.puras.common.error.BaseErrCode;
import me.puras.common.json.Response;
import me.puras.common.json.ResponseHelper;
import me.puras.common.service.CrudService;
import me.puras.common.util.ClientListSlice;
import me.puras.common.util.ListSlice;
import me.puras.common.util.Pagination;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
public abstract class CrudController<T> extends BaseController {
public abstract CrudService<T> getService();
protected boolean beforeCheck(T t) {
return true;
}
protected void doCreateBefore(T t) {}
protected void doUpdateBefore(T t) {}
@GetMapping("")
public Response<ClientListSlice<T>> list(Pagination pagination) {
ListSlice<T> slice = getService().findAll(getBounds(pagination));
return updateResultResponse(pagination, slice);
}
@GetMapping("{id}")
public Response<T> detail(@PathVariable("id") Long id) {
T t = getService().findById(id);
notFoundIfNull(t);
return ResponseHelper.createSuccessResponse(t);
}
@PostMapping("")
public Response<T> create(@Valid @RequestBody T t, BindingResult bindingResult) {
if (bindingResult.hasErrors()) {
return ResponseHelper.createResponse(BaseErrCode.DATA_BIND_ERR.getCode(), BaseErrCode.DATA_BIND_ERR.getDesc());
}
if (!beforeCheck(t)) {
return ResponseHelper.createResponse(BaseErrCode.DATA_ALREADY_EXIST.getCode(), BaseErrCode.DATA_ALREADY_EXIST.getDesc());
}
doCreateBefore(t);
getService().create(t);
return ResponseHelper.createSuccessResponse(t);
}
@PutMapping("{id}")
public Response<T> update(@PathVariable("id") Long id, @RequestBody T t) {
T oldT = getService().findById(id);
notFoundIfNull(oldT);
if (t instanceof DomainModel) {
((DomainModel)t).setId(id);
}
if (!beforeCheck(t)) {
return ResponseHelper.createResponse(BaseErrCode.DATA_ALREADY_EXIST.getCode(), BaseErrCode.DATA_ALREADY_EXIST.getDesc());
}
doUpdateBefore(t);
getService().update(t);
return ResponseHelper.createSuccessResponse(t);
}
@DeleteMapping("{id}")
public Response<Boolean> delete(@PathVariable("id") Long id) {
T t = getService().findById(id);
notFoundIfNull(t);
int result = getService().delete(id);
return ResponseHelper.createSuccessResponse(result > 0 ? true : false);
}
} | puras/mo-common | src/main/java/me/puras/common/controller/CrudController.java | Java | mit | 2,669 |
# Recapping IPFS in Q4 2019 🎉
We’ve put together a very special issue looking back on all that you, the InterPlanetary File System (IPFS) community, accomplished so far, in 2019. From milestones like releases, projects like ProtoSchool, to the many new (and awesome) contributors who have joined us, and what’s to come for the rest of this year, we hope you enjoy this quarterly recap.
Thanks for being part of our community, we truly couldn’t make IPFS what is without you. ❤️
## Milestones
*As far as shipping goes, yeah we did that.*
### IPFS Browser Update
Read about [the ongoing collaborations with Firefox, Brave, Opera, and other browsers](https://blog.ipfs.io/2019-10-08-ipfs-browsers-update/) we have going on, and learn about our progress so far.
### Loads of IPFS Camp content to catch up on!
From [the keynotes to the developer interviews](https://blog.ipfs.io/2019-10-14-ipfs-camp-keynotes-interviews/), to [the Sci-Fi Fair videos](https://blog.ipfs.io/2019-10-03-ipfs-camp-sci-fi-fair-videos/), there’s a ton of great IPFS Camp videos to watch!
### js-ipfs 0.39.0 and 0.40.0 released
The js-ipfs team has been hard at work figuring out the foundations to switch to a hash format in the future, and much, much more. Check out the updates from both [version 0.39.0](https://blog.ipfs.io/071-js-ipfs-0-39/) and [0.40.0](https://blog.ipfs.io/2019-12-02-js-ipfs-0-40/).
### Learn how to use go-ipfs as a library
The title says it all! Learn how to use [go-ipfs as a library](https://blog.ipfs.io/073-go-ipfs-as-a-library/) with the new tutorial and take full advantage of the go-ipfs core API.
### Explore the Files API on ProtoSchool
This new tutorial [explores the methods at the top-level of js-ipfs](https://blog.ipfs.io/2019-11-06-explore-the-files-api-on-protoschool/) (add, get, cat, etc.) that are custom-built for working with files. Check it out!
### Presenting on IPFS? We got you
Feel free to [use these materials](https://github.com/ipfs/community#ipfs-event-materials), like How IPFS Works and IPFS Deep Dive Workshops, to make your event(s) awesome!
## Q4 by the names and numbers
All told **83 contributors** produced approximately **1607 commits across 91 repositories** in the IPFS project this past quarter. Thanks to the following folks for helping make this such an amazing end to a fantastic year. 👏
@0x6431346e
@aarshkshah1992
@achingbrain
@agowu338
@alanshaw
@alexander255
@Alexey-N-Chernyshov
@AliabbasMerchant
@alzuri
@andrewxhill
@aschmahmann
@AuHau
@autonome
@ay2306
@carsonfarmer
@csuwildcat
@cwaring
@daviddias
@dirkmc
@djdv
@doctorrobinson
@dreamski21
@ericronne
@erlend-sh
@Frijol
@frrist
@fulldecent
@gjeanmart
@hacdias
@hannahhoward
@hcg1314
@hinshun
@hsanjuan
@hueg
@hugomrdias
@ianopolous
@iiska
@jacobheun
@jessicaschilling
@jimpick
@jkosem
@johnnymatthews
@Jorropo
@jsoares
@kaczmarj
@khinsen
@kishansagathiya
@kpp
@Kubuxu
@lanzafame
@lidel
@martin-seeman
@mboperator
@meiqimichelle
@MichaelMure
@mikeal
@mikedotexe
@mkg200001
@momack2
@moul
@moyid
@nijynot
@nonsense
@olizilla
@parkan
@PedroMiguelSS
@pranjalv9
@raulk
@reasv
@renrutnnej
@sarthak0906
@Seenivasanseeni
@serejandmyself
@starmanontesla
@Stebalien
@stongo
@tapaswenipathak
@terichadbourne
@TheBinitGhimire
@vasco-santos
@vincepmartin
@whyrusleeping
@xiegeo
@yiannisbot
## Please help us in welcoming these new contributors 👋
IPFS wouldn’t be the same without your help! We’re so grateful to have you onboard. Thank you.
@0x6431346e
@aarshkshah1992
@Alexey-N-Chernyshov
@alzuri
@ay2306
@csuwildcat
@dreamski21
@erlend-sh
@Frijol
@fulldecent
@hcg1314
@iiska
@jkosem
@johnnymatthews
@jsoares
@kaczmarj
@kpp
@mboperator
@mikedotexe
@mkg200001
@moul
@nijynot
@nonsense
@pranjalv9
@reasv
@sarthak0906
@Seenivasanseeni
@serejandmyself
@starmanontesla
@stongo
@TheBinitGhimire
@vincepmartin
@xiegeo
@yiannisbot
## Contributors by the numbers
Here are the 10 contributors who touched the most repos in the project so this quarter:
* @Stebalien
* @achingbrain
* @aschmahmann
* @lidel
* @alanshaw
* @MichaelMure
* @hugomrdias
* @jessicaschilling
* @hacdias
Once again, thanks for all of your hard work and contributions in 2019. Keep up the great job!
## Awesome content
### The Decentralized Web Is Coming
Amazon, Google, Facebook, and Twitter are in the federal government’s crosshairs, but the technology necessary to undermine their dominance may already exist. [See how IPFS plays a role](https://www.youtube.com/watch?v=R1ccwyP6fjc&feature=youtu.be) in the internet of the future.
### IPFS + ENS Everywhere: Introducing EthDNS
[EthDNS](https://medium.com/the-ethereum-name-service/ethdns-9d56298fa38a) bridges the traditional web world to the new universe of ENS-named, IPFS-backed decentralized sites and dapps through the ancient, yet indispensable, 🧙♂️ Domain Name System 🧙♂️.
### Exploding IPFS data
Enabling single use links, expiring links and more through [a simple link shortening service](https://blog.textile.io/ipfs-experiments-creating-ipfs-links-that-you-can-delete/).
### Presenting Building Web3 at Web3 Summit 2019
Catch up on [Juan Benet’s talk from Web3 Summit 2019](https://www.youtube.com/watch?v=pJOG5Ql7ZD0) on Building Web3.
### Tim Berners-Lee seems to be a fan of IPFS and libp2p,
OMG senpai noticed [us](https://twitter.com/sgrasmann/status/1189194596544200708/photo/1)!
### Brave Browser in 2020: New Ad-Blocks, Filters, SDK, and IPFS
Back in November, [Brave announced plans](https://u.today/brave-browser-in-2020-new-ad-blocks-filters-sdk-and-ipfs) to launch and implement IPFS, a cutting edge approach to decentralization. 💁♀️
### GeoHot hacks on IPFS during “Simple Skills Sunday”
Recently George Hotz, or GeoHot, got the chance to [hack on some IPFS](https://www.youtube.com/watch?v=EecfVsdQMcM) while creating Tic Tac Toe in React for Simple Skills Sunday. Check out the full video, or skip to 2:45:00 to get straight to the IPFS bit.
### DAppNode’s IPFS Pinner Package Demo
In case you missed it, DAppNode created an IPFS-pinner! [Watch this demo](https://www.youtube.com/watch?time_continue=1&v=I2MuNFlVnHo&feature=emb_logo) on the creative combo of IPFS Cluster, ENS, and IPFS for collaborative community mirrors of your favorite package registry.
## Coming up in 2020
+ We celebrate 2019 in style 🎉
+ The IPFS docs get a brand new look
+ Check out [the goals we’ve outlined so far for 2020](https://github.com/ipfs/roadmap#2020-goals)
## Thanks for reading ☺️
That’s it for this special edition of the IPFS Weekly. If we missed something, reply to this email and let us know! We’ll return with all the ecosystem news you love to read about on January 7, 2020.
If this is your first time reading the IPFS Weekly, you can learn more or get involved by checking out [the project on GitHub](https://github.com/ipfs), or joining us [in chat](https://riot.im/app/#/room/#ipfs:matrix.org).
See you next year! 👋
| ipfs/weekly | published/072-2019-dec-17.md | Markdown | mit | 6,968 |
version https://git-lfs.github.com/spec/v1
oid sha256:20e35c5c96301564881e3f892b8c5e38c98b131ea58889ed9889b15874e39cbe
size 8394
| yogeshsaroya/new-cdnjs | ajax/libs/preconditions/5.2.4/preconditions.min.js | JavaScript | mit | 129 |
The MIT License (MIT)
Copyright (c) 2016 Adrian Tsumanu Woźniak
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Eraden/axon | License.md | Markdown | mit | 1,090 |
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% assign page_title = '' %}
{% if page.title == "Home" %}
{% capture page_title %}
{{ site.title }}{{ site.title2 }} | {{ site.description }}
{%if paginator and paginator.page != 1 %} - {{ paginator.page }}{% endif %}
{% endcapture %}
{% else %}
{% capture page_title %}
{%if page.slug == 'category' %}Category: {% endif %}
{%if page.slug == 'tag' %}Tag: {% endif %} {{ page.title }} | {{ site.title }}{{ site.title2}}
{% endcapture %}
{% endif %}
{% capture page_title %}
{{ page_title | strip | rstrip | lstrip | escape | strip_newlines }}
{% endcapture %}
<title>{{ page_title }}</title>
{% assign page_description = '' %}
{% capture page_description %}
{% if page.description %}
{{ page.description | strip_html | strip | rstrip | strip_newlines | truncate: 160 }}
{% else %}
{{ site.description }}
{% endif %}
{%if paginator and paginator.page != 1 %} - {{ paginator.page }} {% endif %}
{%if page.slug == 'category' %} Category: {{ page.title }}{% endif %}
{%if page.slug == 'tag' %} Tag: {{ page.title }}{% endif %}
{% endcapture %}
{% capture page_description %}
{{ page_description | strip | rstrip | lstrip | escape | strip_newlines }}
{% endcapture %}
<meta name="description" content="{{ page_description }}">
<meta name="keywords" content="{% if page.keywords %}{{ page.keywords }}{% else %}{{ site.keywords }}{% endif %}">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
{% assign page_image = '' %}
{% capture page_image %}
{% if page.cover %}
{{ page.cover | prepend: site.baseurl | prepend: site.url }}
{% else %}
{{ site.cover | prepend: site.baseurl | prepend: site.url }}
{% endif %}
{% endcapture %}
{% capture page_image %}{{ page_image | strip | rstrip | lstrip | escape | strip_newlines }}{% endcapture %}
<!-- Social: Facebook / Open Graph -->
{% if page.id %}
<meta property="og:type" content="article">
<meta property="article:author" content="{{ site.author.name }}">
<meta property="article:section" content="{{ page.categories | join: ', ' }}">
<meta property="article:tag" content="{{ page.keywords }}">
<meta property="article:published_time" content="{{ page.date }}">
{% else%}
<meta property="og:type" content="website">
{% endif %}
<meta property="og:url" content="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<meta property="og:title" content="{{ page_title }}">
<meta property="og:image" content="{{ page_image }}">
<meta property="og:description" content="{{ page_description }}">
<meta property="og:site_name" content="{{ site.author.name }}">
<meta property="og:locale" content="{{ site.og_locale }}">
<!-- Social: Twitter -->
<meta name="twitter:card" content="{{ site.twitter_card }}">
<meta name="twitter:site" content="{{ site.twitter_site }}">
<meta name="twitter:title" content="{{ page_title }}">
<meta name="twitter:description" content="{{ page_description }}">
<meta name="twitter:image:src" content="{{ page_image }}">
<!-- Social: Google+ / Schema.org -->
<meta itemprop="name" content="{{ page_title }}">
<meta itemprop="description" content="{{ page_description }}">
<meta itemprop="image" content="{{ page_image }}">
<!-- rel prev and next -->
{% if paginator.previous_page %}
<link rel="prev" href="{{ paginator.previous_page_path | prepend: site.baseurl | prepend: site.url }}">
{% endif %}
{% if paginator.next_page %}
<link rel="next" href="{{ paginator.next_page_path | prepend: site.baseurl | prepend: site.url }}">
{% endif %}
<link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/assets/css/font-awesome.min.css" | prepend: site.baseurl }}">
<!-- Canonical link tag -->
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}{{ site.title2 }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
<script type="text/javascript">
var disqus_shortname = '{{ site.disqus_shortname }}';
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
| Shiharoku/shiharoku.github.io | _includes/head.html | HTML | mit | 5,025 |
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using AgileSqlClub.MergeUi.DacServices;
using AgileSqlClub.MergeUi.Merge;
using AgileSqlClub.MergeUi.Metadata;
using AgileSqlClub.MergeUi.PackagePlumbing;
using AgileSqlClub.MergeUi.VSServices;
using MessageBox = System.Windows.Forms.MessageBox;
namespace AgileSqlClub.MergeUi.UI
{
public static class DebugLogging
{
public static bool Enable = true;
}
public partial class MyControl : UserControl, IStatus
{
private bool _currentDataGridDirty;
private VsProject _currentProject;
private ISchema _currentSchema;
private ITable _currentTable;
private ISolution _solution;
public MyControl()
{
InitializeComponent();
//Refresh();
}
public void SetStatus(string message)
{
Dispatcher.InvokeAsync(() => { LastStatusMessage.Text = message; });
}
private void Refresh()
{
Task.Run(() => DoRefresh());
}
private void DoRefresh()
{
Dispatcher.Invoke(() => { DebugLogging.Enable = Logging.IsChecked.Value; });
try
{
if (_currentDataGridDirty)
{
if (!CheckSaveChanges())
{
return;
}
}
var cursor = Cursors.Arrow;
Dispatcher.Invoke(() =>
{
cursor = Cursor;
RefreshButton.IsEnabled = false;
Projects.ItemsSource = null;
Schemas.ItemsSource = null;
Tables.ItemsSource = null;
DataGrid.DataContext = null;
Cursor = Cursors.Wait;
});
_solution = new SolutionParser(new ProjectEnumerator(), new DacParserBuilder(), this);
Dispatcher.Invoke(() =>
{
Projects.ItemsSource = _solution.GetProjects();
Cursor = cursor;
RefreshButton.IsEnabled = true;
});
}
catch (Exception e)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error see output window"; });
OutputWindowMessage.WriteMessage("Error Enumerating projects:");
OutputWindowMessage.WriteMessage(e.Message);
}
}
[SuppressMessage("Microsoft.Globalization", "CA1300:SpecifyMessageBoxOptions")]
private void button1_Click(object sender, RoutedEventArgs e)
{
Refresh();
}
private void Projects_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
if (null == Projects.SelectedValue)
return;
var projectName = Projects.SelectedValue.ToString();
if (String.IsNullOrEmpty(projectName))
return;
Schemas.ItemsSource = null;
Tables.ItemsSource = null;
_currentProject = _solution.GetProject(projectName);
if (string.IsNullOrEmpty(_currentProject.GetScript(ScriptType.PreDeploy)) &&
string.IsNullOrEmpty(_currentProject.GetScript(ScriptType.PostDeploy)))
{
MessageBox.Show(
"The project needs a post deploy script - add one anywhere in the project and refresh", "MergeUi");
return;
}
LastBuildTime.Text = string.Format("Last Dacpac Build Time: {0}", _currentProject.GetLastBuildTime());
Schemas.ItemsSource = _currentProject.GetSchemas();
}
catch (Exception ex)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error see output window "; });
OutputWindowMessage.WriteMessage("Error reading project: {0}", ex.Message);
}
}
private void Schemas_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
if (null == Schemas.SelectedValue)
return;
var schemaName = Schemas.SelectedValue.ToString();
if (String.IsNullOrEmpty(schemaName))
return;
_currentSchema = _currentProject.GetSchema(schemaName);
Tables.ItemsSource = _currentSchema.GetTables();
}
catch (Exception ex)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error see output window"; });
OutputWindowMessage.WriteMessage("Error selecting schema:");
OutputWindowMessage.WriteMessage(ex.Message);
}
}
private void Tables_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
if (null == Tables.SelectedValue)
return;
var tableName = Tables.SelectedValue.ToString();
if (String.IsNullOrEmpty(tableName))
return;
_currentTable = _currentSchema.GetTable(tableName);
if (_currentTable.Data == null)
{
_currentTable.Data = new DataTableBuilder(tableName, _currentTable.Columns).Get();
}
DataGrid.DataContext = _currentTable.Data.DefaultView;
//TODO -= check for null and start adding a datatable when building the table (maybe need a lazy loading)
//we also need a repository of merge statements which is the on disk representation so we can grab those
//if they exist or just create a new one - then save them back and
}
catch (Exception ex)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error Enumerating projects: " + ex.Message; });
OutputWindowMessage.WriteMessage("Error selecting table ({0}-):",
_currentTable == null ? "null" : _currentTable.Name,
Tables.SelectedValue == null ? "selected = null" : Tables.SelectedValue.ToString());
OutputWindowMessage.WriteMessage(ex.Message);
}
}
private bool CheckSaveChanges()
{
return true;
}
private void DataGrid_OnRowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
{
_currentDataGridDirty = true;
}
private void button1_Save(object sender, RoutedEventArgs e)
{
//need to finish off saving back to the files (need a radio button with pre/post deploy (not changeable when read from file) - futrue feature
//need a check to write files on window closing
//need lots of tests
try
{
_solution.Save();
}
catch (Exception ex)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error see output window"; });
OutputWindowMessage.WriteMessage("Error saving solution files:");
OutputWindowMessage.WriteMessage(ex.Message);
}
}
private void ImportTable(object sender, RoutedEventArgs e)
{
if (_currentTable == null)
{
MessageBox.Show("Please choose a table in the drop down list", "MergeUi");
return;
}
try
{
new Importer().GetData(_currentTable);
}
catch (Exception ex)
{
Dispatcher.Invoke(() => { LastStatusMessage.Text = "Error see output window"; });
OutputWindowMessage.WriteMessage("Error importing data (table={0}):", _currentTable.Name);
OutputWindowMessage.WriteMessage(ex.Message);
}
DataGrid.DataContext = _currentTable.Data.DefaultView;
}
private void Logging_OnChecked(object sender, RoutedEventArgs e)
{
DebugLogging.Enable = Logging.IsChecked.Value;
}
}
public interface IStatus
{
void SetStatus(string message);
}
} | GoEddie/MergeUi | src/AgileSqlClub.MergeUiPackage/UI/MyControl.xaml.cs | C# | mit | 8,845 |
<?php
namespace Neutral\BlockBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}
*/
class Configuration implements ConfigurationInterface
{
/**
* {@inheritDoc}
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('neutral_block');
// Here you should define the parameters that are allowed to
// configure your bundle. See the documentation linked above for
// more information on that topic.
return $treeBuilder;
}
}
| neutralord/neutral.su | src/Neutral/BlockBundle/DependencyInjection/Configuration.php | PHP | mit | 881 |
<!DOCTYPE HTML>
<!--
Strata by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Leticia Wright · Kevin Li</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Kevin Li">
<meta name="description" content="Personal Website, Portfolio, and Blog">
<meta http-equiv="content-language" content="en-us" />
<meta name="og:site_name" content="Kevin Li">
<meta name="og:title" content="Leticia Wright">
<meta name="og:url" content="http://kevinwli.com/tags/leticia-wright/">
<meta name="og:image" content="http://kevinwli.com/images/https://res.cloudinary.com/lilingkai/image/upload/s--tB1TDmk3--/c_scale,q_jpegmini:1,w_1600/v1492638792/Kevin_vk8jrp.jpg">
<meta name="generator" content="Hugo 0.54.0" />
<!--[if lte IE 8]><script src='http://kevinwli.com/js/ie/html5shiv.js'></script><![endif]-->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://kevinwli.com/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="http://kevinwli.com//css/ie8.css"><![endif]-->
<link href="http://kevinwli.com/tags/leticia-wright/index.xml" rel="alternate" type="application/rss+xml" title="Kevin Li" />
<link href="http://kevinwli.com/tags/leticia-wright/index.xml" rel="feed" type="application/rss+xml" title="Kevin Li" />
<link rel="favicon" href="http://res.cloudinary.com/lilingkai/image/upload/v1480470082/favicon_v0tkdd.png">
</head>
<body id="top">
<!-- Header -->
<header id="header">
<a href="http://kevinwli.com/" class="image avatar"><img src="https://res.cloudinary.com/lilingkai/image/upload/s--tB1TDmk3--/c_scale,q_jpegmini:1,w_1600/v1492638792/Kevin_vk8jrp.jpg" alt="" /></a>
<h1><strong>Kevin Li</strong> <br> Creator, Developer, Musician</h1>
<nav id="sidebar">
<ul>
<li><a href="http://kevinwli.com/">Home</a></li>
<li><a href="http://kevinwli.com/KevinLiResume.pdf">Resume</a></li>
<li><a href="http://kevinwli.com/post/">Blog</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<span>
<h1>
<a href="http://kevinwli.com/post/2019-05-08-guava-island-review/">Guava Island</a>
</h1>
<i class="fa fa-calendar"></i>
<time datetime="2019-05-08 00:00:00 +0000 UTC">2019-05-08</time>
<i class="fa fa-folder"></i>
<a class="article-category-link" href="http://kevinwli.com/categories/film-review">Film Review</a>
<i class="fa fa-tags"></i>
<a class="article-category-link" href="http://kevinwli.com/tags/guava-island">Guava Island</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/hiro-murai">Hiro Murai</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/donald-glover">Donald Glover</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/rihanna">Rihanna</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/leticia-wright">Leticia Wright</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/nonso-anozie">Nonso Anozie</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/tv-ma">TV-MA</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/2019">2019</a>
·
<a class="article-category-link" href="http://kevinwli.com/tags/project-film-52">PROJECT-FILM-52</a>
</span>
<p><p>Donald Glover released his latest artistic endeavor last month on Amazon Prime, and this time it’s a short film by the name of “Guava Island”. Most art that Donald churns out is of high quality, and for the most part, “Guava Island” is no exception. Yet, there is a feeling of squandered opportunities here that make it feel less like a powerful short film and more like a long, self-glorifying music video.</p></p>
<hr>
</div>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="//github.com/lilingkai" target="_blank" class="icon fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/kevin-li-09591474/" target="_blank" class="icon fa-linkedin-square"><span class="label">Linkedin</span></a></li>
<li><a href="https://www.youtube.com/user/lilingkai" target="_blank" class="icon fa-youtube"><span class="label">YouTube</span></a></li>
<li><a href="http://kevinwli.com/#contact-form" class="icon fa-envelope-o"><span class="label">Email</span></a></li>
<li><a href="http://kevinwli.com/tags/leticia-wright/index.xml" class="icon fa-rss" type="application/rss+xml"><span class="label">RSS</span></a></li>
</ul>
<ul class="copyright">
<li>© Kevin Li</li>
<li>Design: <a href="//html5up.net">HTML5 UP</a></li>
</ul>
</footer>
<!-- Scripts -->
<script src="http://kevinwli.com/js/jquery.min.js"></script>
<script src="http://kevinwli.com/js/jquery.poptrox.min.js"></script>
<script src="http://kevinwli.com/js/skel.min.js"></script>
<script src="http://kevinwli.com/js/util.js"></script>
<script src="http://kevinwli.com/js/main.js"></script>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-71563316-1', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</body>
</html>
| lilingkai/lilingkai.github.io | tags/leticia-wright/index.html | HTML | mit | 6,017 |
<?php
namespace Aquicore\API\PHP\Common;
class BatteryLevelModule
{
/* Battery range: 6000 ... 3600 */
const BATTERY_LEVEL_0 = 5500;/*full*/
const BATTERY_LEVEL_1 = 5000;/*high*/
const BATTERY_LEVEL_2 = 4500;/*medium*/
const BATTERY_LEVEL_3 = 4000;/*low*/
/* below 4000: very low */
}
| koodiph/acquicore-api | src/Common/BatteryLevelModule.php | PHP | mit | 311 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
using ZitaAsteria;
using ZitaAsteria.World;
namespace ZAsteroids.World.HUD
{
class HUDSheilds : HUDComponent
{
public SpriteFont Font { get; set; }
public Texture2D SheildTexture { get; set; }
public Texture2D ActiveTexture { get; set; }
public Texture2D DamageTexture { get; set; }
private RelativeTexture SheildInfo;
private RelativeTexture WorkingValue;
private bool enabled;
private bool update = false;
private Vector2 safePositionTopRight;
private Color color;
public HUDSheilds()
{
}
public override void Initialize()
{
// Must initialize base to get safe draw area
base.Initialize();
SheildTexture = WorldContent.hudContent.sheilds;
ActiveTexture = WorldContent.hudContent.active;
DamageTexture = WorldContent.hudContent.damage;
SheildInfo = new RelativeTexture(SheildTexture);
SheildInfo.Children.Add("Base01", new RelativeTexture(ActiveTexture) { Position = new Vector2(129, 203), EnableDraw = true });
SheildInfo.Children.Add("Base02", new RelativeTexture(ActiveTexture) { Position = new Vector2(164.5f, 182.5f), EnableDraw = true });
SheildInfo.Children.Add("Base03", new RelativeTexture(ActiveTexture) { Position = new Vector2(129.5f, 123), EnableDraw = true });
SheildInfo.Children.Add("Base04", new RelativeTexture(ActiveTexture) { Position = new Vector2(147, 92.5f), EnableDraw = true });
SheildInfo.Children.Add("Base05", new RelativeTexture(ActiveTexture) { Position = new Vector2(199.5f, 42), EnableDraw = true });
SheildInfo.Children.Add("Base06", new RelativeTexture(ActiveTexture) { Position = new Vector2(234.5f, 102), EnableDraw = true });
SheildInfo.Children.Add("Damage01", new RelativeTexture(DamageTexture) { Position = new Vector2(94.5f, 143) });
SheildInfo.Children.Add("Damage02", new RelativeTexture(DamageTexture) { Position = new Vector2(112, 153) });
SheildInfo.Children.Add("Damage03", new RelativeTexture(DamageTexture) { Position = new Vector2(112, 133) });
SheildInfo.Children.Add("Damage04", new RelativeTexture(DamageTexture) { Position = new Vector2(112, 113) });
SheildInfo.Children.Add("Damage05", new RelativeTexture(DamageTexture) { Position = new Vector2(129.5f, 143) });
SheildInfo.Children.Add("Damage06", new RelativeTexture(DamageTexture) { Position = new Vector2(129.5f, 103) });
SheildInfo.Children.Add("Damage07", new RelativeTexture(DamageTexture) { Position = new Vector2(129.5f, 83) });
SheildInfo.Children.Add("Damage08", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 173) });
SheildInfo.Children.Add("Damage09", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 153) });
SheildInfo.Children.Add("Damage10", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 133) });
SheildInfo.Children.Add("Damage11", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 113) });
SheildInfo.Children.Add("Damage12", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 73) });
SheildInfo.Children.Add("Damage13", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 53) });
SheildInfo.Children.Add("Damage14", new RelativeTexture(DamageTexture) { Position = new Vector2(147, 12) });
SheildInfo.Children.Add("Damage15", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 162.5f) });
SheildInfo.Children.Add("Damage16", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 142.5f) });
SheildInfo.Children.Add("Damage17", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 122.5f) });
SheildInfo.Children.Add("Damage18", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 102.5f) });
SheildInfo.Children.Add("Damage19", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 82.5f) });
SheildInfo.Children.Add("Damage20", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 62.5f) });
SheildInfo.Children.Add("Damage21", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 42.5f) });
SheildInfo.Children.Add("Damage22", new RelativeTexture(DamageTexture) { Position = new Vector2(164.5f, 22.5f) });
SheildInfo.Children.Add("Damage23", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 173) });
SheildInfo.Children.Add("Damage24", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 153) });
SheildInfo.Children.Add("Damage25", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 133) });
SheildInfo.Children.Add("Damage26", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 113) });
SheildInfo.Children.Add("Damage27", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 73) });
SheildInfo.Children.Add("Damage28", new RelativeTexture(DamageTexture) { Position = new Vector2(182.5f, 53) });
SheildInfo.Children.Add("Damage29", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 62) });
SheildInfo.Children.Add("Damage30", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 82) });
SheildInfo.Children.Add("Damage31", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 102) });
SheildInfo.Children.Add("Damage32", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 122) });
SheildInfo.Children.Add("Damage33", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 142) });
SheildInfo.Children.Add("Damage34", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 162) });
SheildInfo.Children.Add("Damage35", new RelativeTexture(DamageTexture) { Position = new Vector2(199.5f, 182) });
SheildInfo.Children.Add("Damage36", new RelativeTexture(DamageTexture) { Position = new Vector2(217.5f, 112.5f) });
SheildInfo.Children.Add("Damage37", new RelativeTexture(DamageTexture) { Position = new Vector2(217.5f, 92.5f) });
SheildInfo.Children.Add("Damage38", new RelativeTexture(DamageTexture) { Position = new Vector2(217.5f, 72.5f) });
SheildInfo.Children.Add("Damage39", new RelativeTexture(DamageTexture) { Position = new Vector2(235, 122) });
SheildInfo.EnableDraw = true;
SheildInfo.Position = new Vector2(HUDDrawSafeArea.Right - (SheildTexture.Width / 2), HUDDrawSafeArea.Top + (SheildTexture.Height / 2));
safePositionTopRight = new Vector2(HUDDrawSafeArea.Right, HUDDrawSafeArea.Top);
Font = WorldContent.fontAL15pt;
}
public override void Update(GameTime gameTime)
{
//base.Update(gameTime);
// Fuck this sucks, but doing it at work, so will fix later
//DUUUUUUUUUDE, holy crap! 10 points for effort :) [GearsAD]
if (update)
{
if (HUDProperties.HealthAmount <= 97.0f)
{
SheildInfo.Children.TryGetValue("Damage32", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage32", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 95.0f)
{
SheildInfo.Children.TryGetValue("Damage39", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage39", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 93.0f)
{
SheildInfo.Children.TryGetValue("Damage02", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage02", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 90.0f)
{
SheildInfo.Children.TryGetValue("Damage38", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage38", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 87.0f)
{
SheildInfo.Children.TryGetValue("Damage03", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage03", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 85.0f)
{
SheildInfo.Children.TryGetValue("Damage37", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage37", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 83.0f)
{
SheildInfo.Children.TryGetValue("Damage04", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage04", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 80.0f)
{
SheildInfo.Children.TryGetValue("Damage36", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage36", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 77.0f)
{
SheildInfo.Children.TryGetValue("Damage05", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage05", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 75.0f)
{
SheildInfo.Children.TryGetValue("Damage35", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage35", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 73.0f)
{
SheildInfo.Children.TryGetValue("Damage06", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage06", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 70.0f)
{
SheildInfo.Children.TryGetValue("Damage34", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage34", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 67.0f)
{
SheildInfo.Children.TryGetValue("Damage07", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage07", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 65.0f)
{
SheildInfo.Children.TryGetValue("Damage33", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage33", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 63.0f)
{
SheildInfo.Children.TryGetValue("Damage22", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage22", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 60.0f)
{
SheildInfo.Children.TryGetValue("Damage01", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage01", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 57.0f)
{
SheildInfo.Children.TryGetValue("Damage09", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage09", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 55.0f)
{
SheildInfo.Children.TryGetValue("Damage31", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage31", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 53.0f)
{
SheildInfo.Children.TryGetValue("Damage10", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage10", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 50.0f)
{
SheildInfo.Children.TryGetValue("Damage30", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage30", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 47.0f)
{
SheildInfo.Children.TryGetValue("Damage11", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage11", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 45.0f)
{
SheildInfo.Children.TryGetValue("Damage29", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage29", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 43.0f)
{
SheildInfo.Children.TryGetValue("Damage12", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage12", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 40.0f)
{
SheildInfo.Children.TryGetValue("Damage28", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage28", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 37.0f)
{
SheildInfo.Children.TryGetValue("Damage13", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage13", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 35.0f)
{
SheildInfo.Children.TryGetValue("Damage27", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage27", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 33.0f)
{
SheildInfo.Children.TryGetValue("Damage14", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage14", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 30.0f)
{
SheildInfo.Children.TryGetValue("Damage26", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage26", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 27.0f)
{
SheildInfo.Children.TryGetValue("Damage15", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage15", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 25.0f)
{
SheildInfo.Children.TryGetValue("Damage25", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage25", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 23.0f)
{
SheildInfo.Children.TryGetValue("Damage16", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage16", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 20.0f)
{
SheildInfo.Children.TryGetValue("Damage24", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage24", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 17.0f)
{
SheildInfo.Children.TryGetValue("Damage17", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage17", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 15.0f)
{
SheildInfo.Children.TryGetValue("Damage23", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage23", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 13.0f)
{
SheildInfo.Children.TryGetValue("Damage18", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage18", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 10.0f)
{
SheildInfo.Children.TryGetValue("Damage08", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage08", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 7.0f)
{
SheildInfo.Children.TryGetValue("Damage19", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage19", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 5.0f)
{
SheildInfo.Children.TryGetValue("Damage21", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage21", out WorkingValue);
WorkingValue.EnableDraw = false;
}
if (HUDProperties.HealthAmount <= 0.0f)
{
SheildInfo.Children.TryGetValue("Damage20", out WorkingValue);
WorkingValue.EnableDraw = true;
}
else
{
SheildInfo.Children.TryGetValue("Damage20", out WorkingValue);
WorkingValue.EnableDraw = false;
}
}
update = !update;
}
public override void Draw()
{
if (enabled)
{
HUDSpriteBatch.Begin();
SheildInfo.Draw(HUDSpriteBatch);
string health = HUDProperties.HealthAmount.ToString();
if (HUDProperties.HealthAmount <= 80)
{
color = Color.Orange;
}
else if (HUDProperties.HealthAmount <= 40)
{
color = Color.Red;
}
else
{
color = WorldContent.hudContent.hudTextColor;
}
HUDSpriteBatch.DrawString(Font, health, safePositionTopRight + new Vector2(-SheildTexture.Width + 45, 22), color);
HUDSpriteBatch.End();
}
}
/// <summary>
/// Sets whether the component should be drawn.
/// </summary>
/// <param name="enabled">enable the component</param>
public void Enable(bool enabled)
{
this.enabled = enabled;
}
}
}
| GearsAD/zasteroids | ZAsteroids/World/HUD/HUDSheilds.cs | C# | mit | 26,807 |
---
layout: post
date: 2016-03-19
title: "Anne Barge Promenade 2016 Spring Sleeveless Floor-Length Aline/Princess"
category: Anne Barge
tags: [Anne Barge,Aline/Princess ,Illusion,Floor-Length,Sleeveless,2016,Spring]
---
### Anne Barge Promenade
Just **$299.99**
### 2016 Spring Sleeveless Floor-Length Aline/Princess
<table><tr><td>BRANDS</td><td>Anne Barge</td></tr><tr><td>Silhouette</td><td>Aline/Princess </td></tr><tr><td>Neckline</td><td>Illusion</td></tr><tr><td>Hemline/Train</td><td>Floor-Length</td></tr><tr><td>Sleeve</td><td>Sleeveless</td></tr><tr><td>Years</td><td>2016</td></tr><tr><td>Season</td><td>Spring</td></tr></table>
<a href="https://www.readybrides.com/en/anne-barge/5898-anne-barge-promenade.html"><img src="//img.readybrides.com/12955/anne-barge-promenade.jpg" alt="Anne Barge Promenade" style="width:100%;" /></a>
<!-- break -->
Buy it: [https://www.readybrides.com/en/anne-barge/5898-anne-barge-promenade.html](https://www.readybrides.com/en/anne-barge/5898-anne-barge-promenade.html)
| HOLEIN/HOLEIN.github.io | _posts/2016-03-19-Anne-Barge-Promenade-2016-Spring-Sleeveless-FloorLength-AlinePrincess.md | Markdown | mit | 1,017 |
namespace Miruken.Callback
{
using System;
[AttributeUsage(AttributeTargets.Parameter)]
public class KeyAttribute : Attribute
{
public KeyAttribute(object key)
{
Key = key;
}
public KeyAttribute(string key, StringComparison comparison)
{
Key = new StringKey(key, comparison);
}
public object Key { get; }
}
}
| Miruken-DotNet/Miruken | Source/Miruken/Callback/KeyAttribute.cs | C# | mit | 419 |
module Cubic
module Generator
# Config stores data needed throughout the generation process.
class Config
@settings = {}
class << self
def all
@settings
end
def [](key)
all[key] || defaults(key)
end
def root_path(path)
@settings[:root_path] = path
end
# Name of the application
def name(name)
@settings[:name] = name
end
# Prefered testing framework.
def test_type(type)
@settings[:test_type] = type || 'Rspec'
end
def orm(orm)
@settings[:orm] = orm || 'Sequel'
end
def db(db)
@settings[:db] = db || 'sqlite3'
end
# Consider renaming to 'template engine'
def html_type(type)
@settings[:html_type] = type || 'haml'
end
def css_type(type)
@settings[:css_type] = type || 'css'
end
# Gems to be added to Gemfile
def gems(gems)
@settings[:gems] = gems
end
# Default options.
def defaults(name)
{ root_path: Dir.getwd,
name: 'No Name',
test_type: 'rspec',
orm: 'Sequel',
db: 'sqlite3',
html_type: 'haml',
css_type: 'css' }[name]
end
end
end
end
end
| Scootin/cubic | lib/cubic/generators/config.rb | Ruby | mit | 1,388 |
namespace OpenProtocolInterpreter.IOInterface
{
/// <summary>
/// IO interface message category. Every IO interface mid must implement <see cref="IIOInterface"/>.
/// </summary>
public interface IIOInterface
{
}
}
| Rickedb/OpenProtocolInterpreter | src/OpenProtocolInterpreter/IOInterface/IIOInterface.cs | C# | mit | 241 |
import { HMR_PATH } from '../config/constants';
function webpackMiddleware(): object[] {
const middleware: object[] = [];
if (BalmJS.webpackCompiler) {
middleware.push(
require('webpack-dev-middleware')(
BalmJS.webpackCompiler,
Object.assign({}, BalmJS.config.server.devOptions, {
publicPath: BalmJS.file.publicUrlOrPath,
stats: false
})
)
);
if (BalmJS.config.server.useHMR) {
middleware.push(
require('webpack-hot-middleware')(BalmJS.webpackCompiler, {
log: false,
path: HMR_PATH
})
);
}
} else {
BalmJS.logger.warn('webpack middleware', 'Webpack compiler is not ready');
}
return middleware;
}
export default webpackMiddleware;
| balmjs/balm | packages/balm-core/src/middlewares/webpack.ts | TypeScript | mit | 770 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./dab721f0a9fe4d47eb683c33bbdbce2f653fbfb8bc93a607e7a7ad30636c7061.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/3c50d53817dc82535f222c79c815a409340e031917350739cd6607d2f38eed9a.html | HTML | mit | 550 |
require 'RMagick'
class MemesController < ApplicationController
before_action :check_meme_destroy_permission, only: [:destroy]
before_action :check_meme_group_permissions, only: [:show]
# GET /memes
# GET /memes.json
def index
@memes = Meme.where(:group_id => nil).order("created_at DESC")
@group = nil
if params[:sort] and params[:sort] == "popular"
@memes = @memes.sort{|m1, m2| m2.popularity <=> m1.popularity }
@memes = Kaminari.paginate_array(@memes)
end
@memes = @memes.page(params[:page]).per($MEMES_PER_PAGE)
end
# GET /memes/1
# GET /memes/1.json
def show
if @meme.user_id
@author = User.find(@meme.user_id)
if @author.username
@author_name = @author.username
end
end
end
# GET /memes/new
def new
@meme = Meme.new
@group = Group.find_by_key(params[:group_id])
if current_user.try(:groups)
@groups = current_user.groups
elsif @group
@groups = [@group]
else
@groups = []
end
@templates = Template.all
end
# POST /memes
# POST /memes.json
def create
# TODO(juarez): Add security, sanitize input. Check if template is actually present.
@meme = Meme.new(meme_params.merge({:key => UUID.new().generate, :user_id => current_user}))
if user_signed_in?
@meme.user_id = current_user.id
end
if !params[:images][:bg].empty?
# Set result to background image.
result = Magick::Image.read_inline(params[:images][:bg]).first
result.format = "JPEG"
end
if !params[:images][:top].empty?
image_top = Magick::Image.read_inline(params[:images][:top]).first
result = result.composite!(image_top, Magick::CenterGravity, Magick::OverCompositeOp)
end
if !params[:images][:bottom].empty?
image_bottom = Magick::Image.read_inline(params[:images][:bottom]).first
result = result.composite!(image_bottom, Magick::CenterGravity, Magick::OverCompositeOp)
end
respond_to do |format|
if @meme.save
s3 = AWS::S3.new
begin
obj = s3.buckets[ENV['S3_BUCKET_NAME']].objects[@meme.id.to_s + ".jpg"]
obj.write(result.to_blob, {:acl => :public_read, :cache_control => "max-age=14400"})
rescue Exception => ex
# Upload failed, try again.
puts 'Error uploading meme to S3, retrying.'
puts ex.message
begin
obj = s3.buckets[ENV['S3_BUCKET_NAME']].objects[@meme.id.to_s + ".jpg"]
obj.write(result.to_blob, {:acl => :public_read, :cache_control => "max-age=14400"})
rescue Exception => ex
# Upload failed, alert the user and return to the previous page.
puts 'Error uploading meme to S3 on 2nd and final attempt.'
puts ex.message
flash[:error] = "Oh noes! There was an error saving your meme, please try again."
@meme.destroy
redirect_to :back
return
end
else
# Upload completed.
if user_signed_in?
# If the user is signed in then auto add an upvote from them.
Vote.new(user: current_user, meme: @meme, value: :up).save
end
if @meme.group
redirect_path = group_meme_path(@meme.group, @meme)
else
redirect_path = meme_path(@meme)
end
end
format.html { redirect_to redirect_path, notice: 'Meme was successfully created.' }
format.json { render action: 'show', status: :created, location: @meme }
else
format.html { render action: 'new' }
format.json { render json: @meme.errors, status: :unprocessable_entity }
end
end
end
# DELETE /memes/1
# DELETE /memes/1.json
def destroy
@meme.destroy
respond_to do |format|
format.html { redirect_to memes_url, notice: 'Meme was successfully deleted.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_meme
@meme = Meme.find_by_key(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def meme_params
if params[:meme][:group_id] == "0" or params[:meme][:group_id] == 0
# The meme is to be public.
params[:meme].delete(:group_id)
end
params.require(:meme).permit(:context, :group_id)
end
def vote_params
params.require(:vote).permit(:meme, :user_id, :value)
end
def check_meme_group_permissions
@meme = Meme.find_by_key(params[:id])
@group = @meme.group
if [email protected]? and (@group.visibility == "private") and (!current_user or (current_user and !current_user.groups.include?(@group)))
not_found_error
end
end
def check_meme_destroy_permission
@meme = Meme.find_by_key(params[:id])
if !current_user or (@meme.user_id != current_user.id and !current_user.admin)
forbidden_access_error
end
end
end
| ignition25/memegen | app/controllers/memes_controller.rb | Ruby | mit | 5,069 |
<html>
<head>
<title>Docs For Class PHPExcel_Writer_Excel2007_ContentTypes</title>
<link rel="stylesheet" type="text/css" href="../media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">PHPExcel_Writer_Excel2007</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="../classtrees_PHPExcel_Writer_Excel2007.html" class="menu">class tree: PHPExcel_Writer_Excel2007</a> ]
[ <a href="../elementindex_PHPExcel_Writer_Excel2007.html" class="menu">index: PHPExcel_Writer_Excel2007</a> ]
[ <a href="../elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="todolist">
<p><a href="../todolist.html">Todo List</a></p>
</div>
<b>Packages:</b><br />
<a href="../li_PHPExcel.html">PHPExcel</a><br />
<a href="../li_com-tecnick-tcpdf.html">com-tecnick-tcpdf</a><br />
<a href="../li_JAMA.html">JAMA</a><br />
<a href="../li_Math_Stats.html">Math_Stats</a><br />
<a href="../li_PHPExcel_CachedObjectStorage.html">PHPExcel_CachedObjectStorage</a><br />
<a href="../li_PHPExcel_Calculation.html">PHPExcel_Calculation</a><br />
<a href="../li_PHPExcel_Cell.html">PHPExcel_Cell</a><br />
<a href="../li_PHPExcel_Reader.html">PHPExcel_Reader</a><br />
<a href="../li_PHPExcel_Reader_Excel5.html">PHPExcel_Reader_Excel5</a><br />
<a href="../li_PHPExcel_RichText.html">PHPExcel_RichText</a><br />
<a href="../li_PHPExcel_Settings.html">PHPExcel_Settings</a><br />
<a href="../li_PHPExcel_Shared.html">PHPExcel_Shared</a><br />
<a href="../li_PHPExcel_Shared_Best_Fit.html">PHPExcel_Shared_Best_Fit</a><br />
<a href="../li_PHPExcel_Shared_Escher.html">PHPExcel_Shared_Escher</a><br />
<a href="../li_PHPExcel_Shared_OLE.html">PHPExcel_Shared_OLE</a><br />
<a href="../li_PHPExcel_Style.html">PHPExcel_Style</a><br />
<a href="../li_PHPExcel_Worksheet.html">PHPExcel_Worksheet</a><br />
<a href="../li_PHPExcel_Worksheet_Drawing.html">PHPExcel_Worksheet_Drawing</a><br />
<a href="../li_PHPExcel_Writer.html">PHPExcel_Writer</a><br />
<a href="../li_PHPExcel_Writer_Excel5.html">PHPExcel_Writer_Excel5</a><br />
<a href="../li_PHPExcel_Writer_Excel2007.html">PHPExcel_Writer_Excel2007</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Comments.php.html"> Comments.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---ContentTypes.php.html"> ContentTypes.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---DocProps.php.html"> DocProps.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Drawing.php.html"> Drawing.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007.php.html"> Excel2007.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Rels.php.html"> Rels.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---StringTable.php.html"> StringTable.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Style.php.html"> Style.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Theme.php.html"> Theme.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Workbook.php.html"> Workbook.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---Worksheet.php.html"> Worksheet.php
</a><br>
<a href="../PHPExcel_Writer_Excel2007/_PHPExcel---Writer---Excel2007---WriterPart.php.html"> WriterPart.php
</a><br>
</div><br />
<b>Classes:</b><br />
<div class="package">
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007.html">PHPExcel_Writer_Excel2007</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Comments.html">PHPExcel_Writer_Excel2007_Comments</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_ContentTypes.html">PHPExcel_Writer_Excel2007_ContentTypes</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_DocProps.html">PHPExcel_Writer_Excel2007_DocProps</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Drawing.html">PHPExcel_Writer_Excel2007_Drawing</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Rels.html">PHPExcel_Writer_Excel2007_Rels</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_StringTable.html">PHPExcel_Writer_Excel2007_StringTable</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Style.html">PHPExcel_Writer_Excel2007_Style</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Theme.html">PHPExcel_Writer_Excel2007_Theme</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Workbook.html">PHPExcel_Writer_Excel2007_Workbook</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_Worksheet.html">PHPExcel_Writer_Excel2007_Worksheet</a><br />
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_WriterPart.html">PHPExcel_Writer_Excel2007_WriterPart</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<h1>Class: PHPExcel_Writer_Excel2007_ContentTypes</h1>
Source Location: /PHPExcel/Writer/Excel2007/ContentTypes.php<br /><br />
<table width="100%" border="0">
<tr><td valign="top">
<h3><a href="#class_details">Class Overview</a></h3>
<pre><a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_WriterPart.html">PHPExcel_Writer_Excel2007_WriterPart</a>
|
--PHPExcel_Writer_Excel2007_ContentTypes</pre><br />
<div class="description">PHPExcel_Writer_Excel2007_ContentTypes</div><br /><br />
<h4>Author(s):</h4>
<ul>
</ul>
<h4>Copyright:</h4>
<ul>
<li>Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)</li>
</ul>
</td>
<td valign="top">
<h3><a href="#class_methods">Methods</a></h3>
<ul>
<li><a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_ContentTypes.html#methodwriteContentTypes">writeContentTypes</a></li>
</ul>
</td>
</tr></table>
<hr />
<table width="100%" border="0"><tr>
<td valign="top">
<h3>Inherited Methods</h3>
<div class="tags">
<h4>Class: <a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_WriterPart.html">PHPExcel_Writer_Excel2007_WriterPart</a></h4>
<dl>
<dt>
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_WriterPart.html#methodgetParentWriter">PHPExcel_Writer_Excel2007_WriterPart::getParentWriter()</a>
</dt>
<dd>
Get parent IWriter object
</dd>
<dt>
<a href="../PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_WriterPart.html#methodsetParentWriter">PHPExcel_Writer_Excel2007_WriterPart::setParentWriter()</a>
</dt>
<dd>
Set parent IWriter object
</dd>
</dl>
</div>
</td>
</tr></table>
<hr />
<a name="class_details"></a>
<h3>Class Details</h3>
<div class="tags">
[line <a href="../__filesource/fsource_PHPExcel_Writer_Excel2007__PHPExcelWriterExcel2007ContentTypes.php.html#a36">36</a>]<br />
PHPExcel_Writer_Excel2007_ContentTypes<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>copyright:</b> </td><td>Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)</td>
</tr>
</table>
</div>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<hr />
<a name="class_methods"></a>
<h3>Class Methods</h3>
<div class="tags">
<hr />
<a name="methodwriteContentTypes"></a>
<h3>method writeContentTypes <span class="smalllinenumber">[line <a href="../__filesource/fsource_PHPExcel_Writer_Excel2007__PHPExcelWriterExcel2007ContentTypes.php.html#a45">45</a>]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>string writeContentTypes(
[
$pPHPExcel = null])</code>
</td></tr></table>
</td></tr></table><br />
Write content types to XML format<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b> </td><td>XML Output</td>
</tr>
<tr>
<td><b>throws:</b> </td><td>Exception</td>
</tr>
<tr>
<td><b>access:</b> </td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type"><a href="../PHPExcel/PHPExcel.html">PHPExcel</a> </td>
<td><b>$pPHPExcel</b> </td>
<td></td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
</div><br />
<div class="credit">
<hr />
Documentation generated on Thu, 26 Aug 2010 17:41:02 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html> | HadoDokis/Pragtico | app/vendors/PHPExcel/Documentation/API/PHPExcel_Writer_Excel2007/PHPExcel_Writer_Excel2007_ContentTypes.html | HTML | mit | 10,605 |
/**
* Javascript file for Category Show.
* It requires jQuery.
*/
function wpcs_gen_tag() {
// Category Show searches for term_id since 0.4.1 and not term slug.
// There is a need to add the id%% tag to be compatible with other versions
$("#wpcs_gen_tag").val("%%wpcs-"+$("#wpcs_term_dropdown").val()+"%%"+$("#wpcs_order_type").val()+$("#wpcs_order_by").val()+"%%id%%");
$("#wpcs_gen_tag").select();
$("#wpcs_gen_tag").focus();
} | mfolker/saddind | wp-content/plugins/wp-catergory-show/wp-category-show.js | JavaScript | mit | 438 |
# funkin-gonuts
http://youtu.be/BpJ26Q21y3g?t=1m50s
An attempt at a Go IRC Bot.
| icco/funkin-gonuts | README.md | Markdown | mit | 82 |
//
// TextViewController.h
// Galary
//
// Created by joshuali on 16/6/24.
// Copyright © 2016年 joshuali. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TextViewController : UIViewController
@end
| liyaozhong/Galary | Galary/TextViewController.h | C | mit | 218 |
# YNRefreshController
RefreshController in swift
| xuyunan/YNRefreshController | README.md | Markdown | mit | 49 |
function mathGame(){
var game = new Phaser.Game(window.innerWidth, window.innerHeight, Phaser.auto, 'math', {
preload: onPreload,
create: onCreate,
// resize:onResize
});
WebFontConfig = {
active: function() { game.time.events.add(Phaser.Timer.SECOND, createText, this); },
google: {
families: ['Fredericka the Great']
}
};
var sumsArray = [];
var questionText;
var randomSum;
var timeTween;
var numberTimer;
var buttonMask;
var replay;
var score=0;
var scoreText;
var isGameOver = false;
var topScore;
var numbersArray = [-3,-2,-1,1,2,3];
function buildThrees(initialNummber,currentIndex,limit,currentString){
for(var i=0;i<numbersArray.length;i++){
var sum = initialNummber+numbersArray[i];
var outputString = currentString+(numbersArray[i]<0?"":"+")+numbersArray[i];
if(sum>0 && sum<4 && currentIndex==limit){
sumsArray[limit][sum-1].push(outputString);
}
if(currentIndex<limit){
buildThrees(sum,currentIndex+1,limit,outputString);
}
}
}
function onPreload() {
// responsiveScale();
game.load.script('webfont', '//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js');
game.load.image("timebar", "/images/math/timebar.png");
game.load.image("buttonmask", "/images/math/buttonmask.png");
game.load.spritesheet("buttons", "/images/math/buttons.png",400,50);
game.load.spritesheet('myguy', '/images/math/dance.png', 70, 120);
game.load.image("background", "/images/math/board2.png");
game.load.image("replay", "images/math/replay.png");
game.load.image("home", "images/home.png");
}
function onCreate() {
topScore = localStorage.getItem("topScore")==null?0:localStorage.getItem("topScore");
// game.stage.backgroundColor = "#cccccc";
chalkBoard = game.add.sprite(1100, 850,"background");
chalkBoard.x = 0;
chalkBoard.y = 0;
chalkBoard.height = game.height;
chalkBoard.width = game.width;
game.stage.disableVisibilityChange = true;
gameOverSprite = this.game.add.sprite(600, 300, 'myguy');
gameOverSprite.visible = false;
gameOverSprite.frame = 0;
gameOverSprite.animations.add('left', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13], 10, true);
replay = game.add.button(game.width*.6, game.height*.1,"replay",replay,this);
replay.visable = false;
home = game.add.button(game.width*.75, game.height*.1, 'home', function onClick(){window.location.href ="/home"});
home.scale.setTo(0.2,0.2);
for(var i=1;i<5;i++){
sumsArray[i]=[[],[],[]];
for(var j=1;j<=3;j++){
buildThrees(j,1,i,j);
}
}
questionText = game.add.text(game.width*.5,game.height*.3,"-");
questionText.anchor.set(0.5);
scoreText = game.add.text(game.width*.1,game.height*.10,"-");
for(var i=0;i<3;i++){
var numberButton = game.add.button(game.width*.3,game.height*.4+i*75,"buttons",checkAnswer,this).frame=i;
}
numberTimer = game.add.sprite(game.width*.3,game.height*.4,"timebar");
nextNumber();
}
function createText() {
questionText.font = 'Fredericka the Great';
questionText.fontSize = 37;
questionText.addColor('#edf0f3',0);
scoreText.font = 'Fredericka the Great';
scoreText.fontSize = 37;
scoreText.addColor('#edf0f3',0);
};
function gameOver(gameOverString){
// game.stage.backgroundColor = "#ff0000";
console.log(gameOverString)
questionText.text = "Wrong Answer!";
questionText.addColor('#ff471a',0);
isGameOver = true;
localStorage.setItem("topScore",Math.max(score,topScore));
numberTimer.destroy();
buttonMask.destroy();
replay.visible = true;
// gameOverSprite.visible = true;
// gameOverSprite.animations.play('left');
}
function checkAnswer(button){
var correctAnswer;
if(!isGameOver){
if(button.frame==randomSum){
score+=Math.floor((buttonMask.x+350)/4);
nextNumber();
}
else{
if(score>0) {
timeTween.stop();
}
correctAnswer = randomSum;
gameOver(correctAnswer);
}
}
}
function replay(){
$("#math").html("");
mathGame();
}
function nextNumber(){
scoreText.text = "Score: "+score.toString()+"\nBest Score: "+topScore.toString();
if(buttonMask){
buttonMask.destroy();
game.tweens.removeAll();
}
buttonMask = game.add.graphics(game.width*.3,game.height*.4);
buttonMask.beginFill(0xffffff);
buttonMask.drawRect(0, 0, 400, 200);
buttonMask.endFill();
numberTimer.mask = buttonMask;
if(score>0){
timeTween=game.add.tween(buttonMask);
timeTween.to({
x: -350
}, 9000, "Linear",true);
timeTween.onComplete.addOnce(function(){
gameOver("?");
}, this);
}
randomSum = game.rnd.between(0,2);
questionText.text = sumsArray[Math.min(Math.round((score-100)/400)+1,4)][randomSum][game.rnd.between(0,sumsArray[Math.min(Math.round((score-100)/400)+1,4)][randomSum].length-1)];
}
}
// }
| JulianBoralli/klink | app/assets/javascripts/math.js | JavaScript | mit | 5,149 |
package com.javarush.test.level14.lesson08.bonus03;
/**
* Created by Алексей on 12.04.2014.
*/
public class Singleton
{
private static Singleton instance;
private Singleton()
{
}
public static Singleton getInstance()
{
if ( instance == null )
{
instance = new Singleton();
}
return instance;
}
}
| Juffik/JavaRush-1 | src/com/javarush/test/level14/lesson08/bonus03/Singleton.java | Java | mit | 381 |
// Copyright (c) Rotorz Limited. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root.
namespace Rotorz.Games.Collections
{
/// <summary>
/// Can be implemented along with <see cref="IReorderableListAdaptor"/> when drop
/// insertion or ordering is desired.
/// </summary>
/// <remarks>
/// <para>This type of "drop" functionality can occur when the "drag" phase of the
/// drag and drop operation was initiated elsewhere. For example, a custom
/// <see cref="IReorderableListAdaptor"/> could insert entirely new items by
/// dragging and dropping from the Unity "Project" window.</para>
/// </remarks>
/// <see cref="IReorderableListAdaptor"/>
public interface IReorderableListDropTarget
{
/// <summary>
/// Determines whether an item is being dragged and that it can be inserted
/// or moved by dropping somewhere into the reorderable list control.
/// </summary>
/// <remarks>
/// <para>This method is always called whilst drawing an editor GUI.</para>
/// </remarks>
/// <param name="insertionIndex">Zero-based index of insertion.</param>
/// <returns>
/// A value of <c>true</c> if item can be dropped; otherwise <c>false</c>.
/// </returns>
/// <see cref="UnityEditor.DragAndDrop"/>
bool CanDropInsert(int insertionIndex);
/// <summary>
/// Processes the current drop insertion operation when <see cref="CanDropInsert(int)"/>
/// returns a value of <c>true</c> to process, accept or cancel.
/// </summary>
/// <remarks>
/// <para>This method is always called whilst drawing an editor GUI.</para>
/// <para>This method is only called when <see cref="CanDropInsert(int)"/>
/// returns a value of <c>true</c>.</para>
/// </remarks>
/// <param name="insertionIndex">Zero-based index of insertion.</param>
/// <see cref="ReorderableListGUI.CurrentListControlID"/>
/// <see cref="UnityEditor.DragAndDrop"/>
void ProcessDropInsertion(int insertionIndex);
}
}
| tenvick/hugula | Client/Assets/Third/PSD2UGUI/@rotorz/unity3d-reorderable-list/Editor/Collections/IReorderableListDropTarget.cs | C# | mit | 2,164 |
# Rspec Thinking Sphinx matchers
[](https://travis-ci.org/Govinda-Fichtner/rspec-thinking-sphinx-matchers)
Test your Thinking Sphinx 3 index defintions with the custom rspec matchers of this gem.
If you are still using Thinking Sphinx 2 have a look at https://github.com/fuzzyalej/thinking-sphinx-rspec-matchers
I would appreciate feedback very much, in the form of comments, code and/or beer! :-)
# Installation
To install the matchers you only have to add the gem to your test group in `Gemfile`:
group :test do
gem 'rspec-thinking-sphinx-matchers'
end
And then execute:
$ bundle
# Use
describe "fields" do
it { should index :name, :from => :client, :as => :client_name }
it { should index :content }
end
describe "attributes" do
it { should have_attribute :user_id, :as => :users }
end
Field options
:from
:as
:facet
:sortable
Attribute Field options
:from
:as
:facet
# Testing
If you are feeling brave and want to test the gem, simply issue a `bundle exec rspec`. Contributions and enhancements and mostly welcomed!
# References
[1] https://github.com/fuzzyalej/thinking-sphinx-rspec-matchers
[2] http://openmonkey.com/2009/07/19/thinking-sphinx-rspec-matchers/
[3] https://gist.github.com/21755
# Credits
Thanks to Pal Allan from http://freelancing-gods.com/ for creating Thinking Sphinx!
Thanks to Alejandro Andrés for the rspec matchers for ThinkingSphinx v2.
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
| Govinda-Fichtner/rspec-thinking-sphinx-matchers | README.md | Markdown | mit | 1,855 |
'use strict';exports.__esModule = true;var _stringify = require('babel-runtime/core-js/json/stringify');var _stringify2 = _interopRequireDefault(_stringify);var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);var _inherits2 = require('babel-runtime/helpers/inherits');var _inherits3 = _interopRequireDefault(_inherits2);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var _class = function (_think$controller$bas) {(0, _inherits3.default)(_class, _think$controller$bas);function _class() {(0, _classCallCheck3.default)(this, _class);return (0, _possibleConstructorReturn3.default)(this, _think$controller$bas.apply(this, arguments));}
/**
* some base method in here
*/_class.prototype.
get = function get(key) {
if (key == undefined) {
return this.http._get;
}
return this.http._get[key];
};_class.prototype.
post = function post(key) {
if (key == undefined) {
return this.http._post;
}
return this.http._post[key];
};_class.prototype.
getCookie = function getCookie(key) {
if (key == undefined) {
return '';
}
return this.http._cookie;
};_class.prototype.
setCookie = function setCookie(key, val) {
if (typeof val !== 'string') {
val = (0, _stringify2.default)(val);
}
return this.http._cookie[key] = val;
};_class.prototype.
apiErrorHandle = function apiErrorHandle(errno) {
var API_ERROR_MSG_TABLE = {
// user
'101': '用户未登录',
'102': '用户密码错误',
'111': '密码不一致',
// category
'3000': 'Category name is empty' };
var msg = API_ERROR_MSG_TABLE[errno] || 'system error';
console.log(msg);
this.fail(errno, msg);
};return _class;}(think.controller.base);exports.default = _class; | JackPu/albums | App/user/controller/base.js | JavaScript | mit | 4,099 |
# Die Class 2: Arbitrary Symbols
# I worked on this challenge [by myself, with: ].
# I spent [#] hours on this challenge.
# Pseudocode
# Input: array of strings
# Output: random selection from the array
# Steps: initialize the die with a non-empty array
# define a method that finds the number of sides (strings in the array)
# define a method that rolls and returns a random string from the die array
# Initial Solution
class Die
def initialize(labels)
if labels == []
raise ArgumentError.new("Please enter a valid array of strings to set up the die")
end
@sides = labels.length
@labels = labels
end
def sides
@sides
end
def roll
p @labels[rand(@sides)]
end
end
# dice = Die.new(["3"])
# #p dice
# #p dice.sides
# #dice.roll
# Refactored Solution
#nothing to refactor
# # Reflection
# What were the main differences between this die class and the last one you created in terms of implementation? Did you need to change much logic to get this to work?
# # Very similiar in implementation, the biggest things that changed were:
# 1) the syntax for the error check in intialize now looking for an empty string instead of a particular value
# 2) needing to declare another instance variable for the labels themselves so we could call them again later during the roll
# 3) changing the roll method to run rand instead the index call for the @labels array
# What does this exercise teach you about making code that is easily changeable or modifiable?
# super helpful that the solution from the last exercise was easily changeable as it took far less time this week to just build on top of it.
# What new methods did you learn when working on this challenge, if any? none
# What concepts about classes were you able to solidify in this challenge? usage of the instance variables to make available information to class methods. | schwartztal/phase-0 | week-6/die-2/my_solution.rb | Ruby | mit | 1,874 |
// +build !windows
package native
import "github.com/itchio/butler/endpoints/launch"
func handleUE4Prereqs(params launch.LauncherParams) error {
// nothing to worry about on non-windows platforms
return nil
}
| itchio/butler | endpoints/launch/launchers/native/ue4_prereqs_stub.go | GO | mit | 214 |
package com.ntlx.exception;
public class BoardNotFoundException extends KanbanException {
private static final long serialVersionUID = 1L;
private int boardId;
public BoardNotFoundException (int boardId) {
this.boardId = boardId;
}
public String getMessage() {
return "Board not found. (ID: " + boardId + ")";
}
}
| NautiluX/yukan | java_backend/src/main/java/com/ntlx/exception/BoardNotFoundException.java | Java | mit | 326 |
# coding: utf-8
require_relative 'wrapper_comparator'
module Comparability
module Comparators
class ReverseWrapperComparator < WrapperComparator
def compare(me, other)
reverse(wrapped_compare(me, other))
end
private
def reverse(comparison_result)
if comparison_result.nil? || comparison_result.zero?
comparison_result
else
-comparison_result
end
end
end
end
end | ippeiukai/comparability | lib/comparability/comparators/reverse_wrapper_comparator.rb | Ruby | mit | 461 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simon</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/simon.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700|VT323" rel="stylesheet">
</head>
<body>
<h2></h2>
<div id="s_container">
<div id="s_outer">
<div id="s_inner">
<div id="s_button_tl" class="s_button_large"></div>
<div id="s_button_tr" class="s_button_large"></div>
<div id="s_button_bl" class="s_button_large"></div>
<div id="s_button_br" class="s_button_large"></div>
<div id="s_controls_area">
<div id="s_display">
STEPS <span id="s_steps"></span>
WINS <span id="s_wins"></span>
<span id="s_strict"></span>
</div>
<input type="button" id="s_button_restart"class="s_button_normal" value="Start">
<input type="button" id="s_button_strict" class="s_button_normal" value="Strict">
</div>
</div>
</div>
</div>
<script src="js/simon.js"></script>
</body>
</html> | sassjajc/freecodecamp-projects | public/simon.html | HTML | mit | 1,192 |
<h2>Editing Tip</h2>
<br>
<?php echo render('admin/tips/_form'); ?>
<p>
<?php echo Html::anchor('admin/tips/view/'.$tip->id, 'View'); ?> |
<?php echo Html::anchor('admin/tips', 'Back'); ?></p>
| gudeg-united/mishAPP | fuel/app/views/admin/tips/edit.php | PHP | mit | 196 |
package com.hyh.arithmetic.skills;
import android.annotation.SuppressLint;
import java.util.ArrayList;
import java.util.List;
/**
* 规划了一份需求的技能清单 req_skills,并打算从备选人员名单 people 中选出些人组成一个「必要团队」
* ( 编号为 i 的备选人员 people[i] 含有一份该备选人员掌握的技能列表)。
* 所谓「必要团队」,就是在这个团队中,对于所需求的技能列表 req_skills 中列出的每项技能,团队中至少有一名成员已经掌握。
* 我们可以用每个人的编号来表示团队中的成员:例如,团队 team = [0, 1, 3] 表示掌握技能分别为 people[0],people[1],和 people[3] 的备选人员。
* 请你返回 任一 规模最小的必要团队,团队成员用人员编号表示。你可以按任意顺序返回答案,本题保证答案存在。
* <p>
* 示例 1:
* 输入:req_skills = ["java","nodejs","reactjs"],
* people = [["java"],["nodejs"],["nodejs","reactjs"]]
* 输出:[0,2]
* <p>
* 示例 2:
* 输入:req_skills = ["algorithms","math","java","reactjs","csharp","aws"],
* people = [["algorithms","math","java"],["algorithms","math","reactjs"],["java","csharp","aws"],["reactjs","csharp"],["csharp","math"],["aws","java"]]
* 输出:[1,2]
* <p>
* <p>
* 1 <= req_skills.length <= 16
* 1 <= people.length <= 60
* 1 <= people[i].length, req_skills[i].length, people[i][j].length <= 16
* req_skills 和 people[i] 中的元素分别各不相同
* req_skills[i][j], people[i][j][k] 都由小写英文字母组成
* 本题保证「必要团队」一定存在
*/
public class Solution4 {
@SuppressLint("UseSparseArrays")
public int[] smallestSufficientTeam(String[] req_skills, List<List<String>> people) {
int req_skills_code = (int) (Math.pow(2, req_skills.length) - 1);
List<Integer> people_code = new ArrayList<>();
for (int i = 0; i < people.size(); i++) {
List<String> person_skills = people.get(i);
int person_code = 0;
for (int j = 0; j < person_skills.size(); j++) {
String skill = person_skills.get(j);
int index = indexOf(req_skills, skill);
if (index >= 0) {
person_code += Math.pow(2, index);
}
}
people_code.add(person_code);
}
for (int i = 0; i < people_code.size(); i++) {
Integer i_person_code = people_code.get(i);
if (i_person_code == 0) continue;
if (i == people_code.size() - 1) break;
for (int j = i + 1; j < people_code.size(); j++) {
Integer j_person_code = people_code.get(j);
if ((i_person_code | j_person_code) == j_person_code) {
people_code.set(i, 0);
} else if ((i_person_code | j_person_code) == i_person_code) {
people_code.set(j, 0);
}
}
}
Object[] preResult = new Object[req_skills.length];
Object[] result = new Object[req_skills.length];
/*Integer person_code = people_code.get(0);
for (int i = 0; i < req_skills.length; i++) {
int skills_code = (int) (Math.pow(2, i + 1) - 1);
if ((person_code | skills_code) == person_code) {
preResult[i] = new int[]{0};
} else {
break;
}
}*/
int person_code = 0;
for (int i = 0; i < people_code.size(); i++) {
person_code |= people_code.get(i);
for (int j = 0; j < req_skills.length; j++) {
int skills_code = (int) (Math.pow(2, j + 1) - 1);
if ((person_code | skills_code) == person_code) {
//result[i] = new int[]{0};
} else {
}
}
}
/*for (int i = 0; i < req_skills.length; i++) {
int skills_code = (int) (Math.pow(2, i + 1) - 1);
int people_code_temp = 0;
for (int j = 0; j < people_code.size(); j++) {
people_code_temp |= people_code.get(j);
if () {
}
}
preResult = result;
}*/
return null;
}
private int indexOf(String[] req_skills, String skill) {
for (int index = 0; index < req_skills.length; index++) {
String req_skill = req_skills[index];
if (req_skill.equals(skill)) return index;
}
return -1;
}
} | EricHyh/FileDownloader | ArithmeticDemo/src/main/java/com/hyh/arithmetic/skills/Solution4.java | Java | mit | 4,599 |
// Generated by CoffeeScript 1.8.0
(function() {
var TaskSchema, mongoose;
mongoose = require('./mongoose');
TaskSchema = mongoose.Schema({
id: {
type: Number,
unique: true
},
title: {
type: String
},
url: {
type: String,
unique: true
},
status: {
type: Number,
"default": 1
}
});
module.exports = mongoose.model('Task', TaskSchema);
}).call(this);
//# sourceMappingURL=tasks.js.map
| youqingkui/fav-dailyzhihu2evernote | models/tasks.js | JavaScript | mit | 472 |
---
layout: page
title: Twin Corporation Conference
date: 2016-05-24
author: Helen Conrad
tags: weekly links, java
status: published
summary: In hac habitasse platea dictumst. Morbi.
banner: images/banner/people.jpg
booking:
startDate: 05/07/2016
endDate: 05/12/2016
ctyhocn: PHLCVHX
groupCode: TCC
published: true
---
Nulla sit amet tincidunt ligula, volutpat mollis lorem. Curabitur ac orci vitae quam sodales dignissim feugiat sollicitudin sapien. Ut aliquet, sem at volutpat accumsan, dolor enim varius lectus, eu ultrices ligula purus quis nunc. Sed iaculis orci non nunc congue, non egestas ex porttitor. Nam vitae erat sed odio consectetur commodo quis a dui. Morbi lacinia mi in augue placerat consectetur. Nunc at libero blandit, efficitur urna sed, rutrum arcu.
1 Curabitur semper eros sed varius consectetur
1 Sed consequat libero eu nibh dignissim, iaculis tempor neque feugiat
1 Vestibulum bibendum nibh quis dictum pellentesque
1 Etiam posuere nibh in leo convallis semper
1 Vestibulum vulputate leo vitae felis facilisis fringilla.
Nam in augue elit. Sed ornare mauris a purus ultricies, porta interdum nibh pulvinar. Nunc metus leo, rutrum eu scelerisque quis, euismod gravida ligula. Proin cursus, tellus ac consectetur ornare, sem est vestibulum tortor, eu tristique ante nunc et justo. Integer eleifend porttitor enim, vel tempor diam suscipit eu. Sed sollicitudin dui nisl, sit amet dignissim est elementum eu. Nunc rutrum mi id turpis luctus, quis pellentesque nisl mattis. Duis consequat eros massa. Aliquam mollis tellus sapien, vel congue risus bibendum id. Mauris maximus viverra tellus eu maximus. Proin ut magna at erat tempor vulputate. Etiam mattis risus vel lectus varius, iaculis euismod elit laoreet. Etiam rhoncus tincidunt arcu et suscipit. Maecenas vel quam consequat, interdum sem in, condimentum massa. Praesent eleifend velit quis lacinia mattis. Mauris ut eros ut odio elementum tristique in ut turpis.
In at orci vel odio pretium malesuada. Cras vel lectus non leo pretium sodales vitae eu eros. Donec ut lacus tempus, rhoncus massa sed, luctus tellus. Pellentesque congue cursus dictum. Sed tincidunt nisi in magna viverra pharetra id a urna. Vivamus suscipit justo sapien, a tempus felis facilisis non. Nulla facilisi. Vestibulum suscipit mi sed dolor convallis, vitae dictum turpis facilisis. Nulla iaculis malesuada lorem sit amet feugiat. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
| KlishGroup/prose-pogs | pogs/P/PHLCVHX/TCC/index.md | Markdown | mit | 2,480 |
//
//////////////////////////////////////////////////////////////////////////////
//
// Copyright 2018 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software in either electronic or hard copy form.
//
//////////////////////////////////////////////////////////////////////////////
//
//
#ifndef __AXPNT2D_H_
#define __AXPNT2D_H_
#include "gept2dar.h"
#include "gepnt2d.h"
#include "gevec2d.h"
#pragma pack (push, 8)
#ifndef AXAUTOEXP
#ifdef AXAUTO_DLL
#define AXAUTOEXP __declspec(dllexport)
#else
#define AXAUTOEXP __declspec(dllimport)
#endif
#endif
#pragma warning(disable : 4290)
class AXAUTOEXP AcAxPoint2d : public AcGePoint2d
{
public:
// constructors
AcAxPoint2d();
AcAxPoint2d(double x, double y);
AcAxPoint2d(const AcGePoint2d& pt);
AcAxPoint2d(const AcGeVector2d& pt);
AcAxPoint2d(const VARIANT* var) throw(HRESULT);
AcAxPoint2d(const VARIANT& var) throw(HRESULT);
AcAxPoint2d(const SAFEARRAY* safeArrayPt) throw(HRESULT);
// equal operators
AcAxPoint2d& operator=(const AcGePoint2d& pt);
AcAxPoint2d& operator=(const AcGeVector2d& pt);
AcAxPoint2d& operator=(const VARIANT* var) throw(HRESULT);
AcAxPoint2d& operator=(const VARIANT& var) throw(HRESULT);
AcAxPoint2d& operator=(const SAFEARRAY* safeArrayPt) throw(HRESULT);
// type requests
VARIANT* asVariantPtr() const throw(HRESULT);
SAFEARRAY* asSafeArrayPtr() const throw(HRESULT);
VARIANT& setVariant(VARIANT& var) const throw(HRESULT);
VARIANT* setVariant(VARIANT* var) const throw(HRESULT);
// utilities
private:
AcAxPoint2d& fromSafeArray(const SAFEARRAY* safeArrayPt) throw(HRESULT);
};
#pragma warning(disable : 4275)
class AXAUTOEXP AcAxPoint2dArray : public AcGePoint2dArray
{
public:
// equal operators
AcAxPoint2dArray& append(const AcGePoint2d& pt);
AcAxPoint2dArray& append(const VARIANT* var) throw(HRESULT);
AcAxPoint2dArray& append(const VARIANT& var) throw(HRESULT);
AcAxPoint2dArray& append(const SAFEARRAY* safeArrayPt) throw(HRESULT);
// type requests
SAFEARRAY* asSafeArrayPtr() const throw(HRESULT);
VARIANT& setVariant(VARIANT& var) const throw(HRESULT);
VARIANT* setVariant(VARIANT* var) const throw(HRESULT);
// utilities
private:
AcAxPoint2dArray& fromSafeArray(const SAFEARRAY* safeArrayPt) throw(HRESULT);
};
#pragma pack (pop)
#endif
| satya-das/cppparser | test/e2e/test_input/ObjectArxHeaders/axpnt2d.h | C | mit | 2,559 |
var mongoose = require('mongoose'),
_ = require('underscore'),
roomTokenizer = function(msg) {
var tokens = [];
tokens = tokens.concat(msg.content.split(' '));
tokens.push(msg.author);
return tokens;
};
exports.init = function(db) {
var EntitySchemaDefinition,
EntitySchema,
EntityModel;
//create schema
EntitySchemaDefinition = {
content : { type: String, required: true },
author: {
email: String,
username: String,
avatar: String
},
room: { type: mongoose.Schema.ObjectId, required: true },
status: { type: Number, required: true },
date : { type: Date },
keywords: [String]
};
EntitySchema = new mongoose.Schema(EntitySchemaDefinition, {autoIndex: false} );
EntitySchema.index({keywords: 1});
//during save update all keywords
EntitySchema.pre('save', function(next) {
//set dates
if ( !this.date ) {
this.date = new Date();
}
//clearing keywords
this.keywords.length = 0;
//adding keywords
this.keywords = this.keywords.concat(roomTokenizer(this));
next();
});
EntityModel = db.model('Message', EntitySchema);
return EntityModel;
}; | vitoss/Corpo-Chat | service/lib/model/Message.js | JavaScript | mit | 1,286 |
import React, { PropTypes } from 'react'
import { Grid, Row, Col } from 'react-bootstrap'
import Sort from '../../components/Sort'
import ProjectFilterForm from '../../components/ProjectFilterForm'
import Search from '../../containers/Search'
import ProjectsDashboardStatContainer from '../../containers/ProjectsDashboardStatContainer';
import { PROJECTS_SORT } from '../../resources/options'
const ProjectsDashboard = (props) => {
return (
<Grid fluid>
<Row>
<Col xs={12} md={4}>
<ProjectsDashboardStatContainer />
</Col>
<Col xs={12} md={8}>
Latest Updates
</Col>
</Row>
<Row>
<Col md={12}>
<Search
types={['projects']}
searchId='projectsDashboardSearch'
filterElement={<ProjectFilterForm />}
sortElement={<Sort options={PROJECTS_SORT} />}
/>
</Col>
</Row>
</Grid>
)
}
export default ProjectsDashboard
| envisioning/tdb-storybook | src/pages/ProjectsDashboard/index.js | JavaScript | mit | 978 |
<HTML><HEAD>
<TITLE>Review for Scream (1996)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0117571">Scream (1996)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Tim+Voon">Tim Voon</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>
SCREAM 1996
A film review by Timothy Voon
Copyright 1997 Timothy Voon</PRE>
<P>Cast: Neve Campbell, Rose McGowan, Skeet Ulrich, Courteney Cox, David
Arquette, Matthew Lillard, Jamie Kennedy, Drew Barrymore, Henry Winkler
Director: Wes Craven Screenplay: Kevin Williamson</P>
<PRE>Ring, RING. Ring, RING.
'Hello, who is it?' Drew asks.
(It's the pizza man.)
'I didn't order any pizza. You must have the wrong number.'</PRE>
<PRE>Ring, RING. Ring, RING.
'Hello who is it?' Drew asks again.
(What are you doing?)
'Who is this?'
(It's the pizza man.)
'I told you before. You must have the wrong number. I didn't order any
pizza, I've already got popcorn. So buzz off.'</PRE>
<P>Ring, RING. Ring, RING.
'Hello?' Drew asks.
(What's your favourite pizza?)
'Look I don't even like pizza. So leave me alone.'
(Put the phone down again bitch, and I'll shove pizza down your scrawny
little throat!)
'Who are you?' Whimper, whimper.
(The pizza man. I told you already. So tell me what is your favourite
pizza?)
'Look this isn't funny. My boyfriend's coming over anytime now. If you
don't leave me alone you'll have to deal with him.'
(Look outside the window)
'Why?'
(Just do it!)
'SCREAAAAAAAAAAAAAAAAAAAAAAAM!'
(So tell me, what is your favourite pizza?)
'Leave him alone. What do you want?'
(I want to play a game)
'What game?'
(Answer the question correctly, and I promise that I won't drop the
200,000 pizzas on your boyfriend's head)
'Okay, I'll play just don't hurt him.'
(Good then answer the question, what's your favourite pizza?)
'I only eat Vegetarian.'
(So tell me, what is the other name for 'Asterolis Hungarus Marolis',
which is a common ingredient used in the making of vegetarian pizzas?)
'I know this one, just give me a minute.'
(Your time is running out little girl)
'It's the ..., it's the, ....it's the Capsicums.'
(Yes, very good.)
'Now let my boyfriend go.'
(The games, not over.)
'But you said you'd let him go if I answered the question correctly.'
(I lied. Now here's the real 'live or die' question. If you answer this
one correctly, he gets to live.)
'Noooooooo. That's not fair.'
(Come on, you're doing so well. So tell me, in a 'B.B.Q. Leg-Of-Chicken'
pizza, what is the main ingredient?)
'That's a tough one. Hold on ....it's .....it's.....'
(Your time is running out little girl)
'It's chicken.'
(Wrong.)
'I know it's chicken. I've eaten it a hundred times.'
(I thought you said you were vegetarian?)
'I lied.'
(The answer is still wrong. Everyone knows that there is no such thing
as a 'B.B.Q. Leg-O-Chicken Pizza.', and even if there were such a thing,
the main ingredient would be chicken feet.)
'That's not fair. That was a trick question!'
(Bye, bye boyfriend.)
'No. SCREAAAAAAAAAAAAAAAAAAAAM!'</P>
<P> From 'The Very Private Telephone Conversations' of TMT Voon.</P>
<P>I've never quite liked horror movies. So I am glad I watched this
particularly movie on video. You can tone down the screams with the
volume control; and the blood bath of butchering frenzy is nicely
reduced to a red fuzz on the screen with the fast forward button. I
openly, and unashamedly admit, that I have never watched any classic
horror movies like 'Friday the Thirteenth', 'Nightmare on Elm Street',
'Halloween', 'The Shining', 'Edward Scissorhands' (it's a joke) etc etc.
And I have no great plans to watch any either. Excessive bloodiness is
best left in abattoirs, and off the big screen.</P>
<P>However, I can say that the director Wes Craven, a name which inspires
thoughts of shiny metal blades and ripping skin, has made a 'horror'
flick much more acceptable by throwing in elements of a
mystery/thriller, to balance out the unpleasant elements of pure horror.
He has also carefully chosen a cast i.e. Neve Campbell, Courtney Cox, Drew
Barrymore names which are not synonymously linked with horror, to help
draw a more general audience into that acquired taste for blood.</P>
<P>I have to admit that I thought the serial killer was the 'boyish'
policeman from the word go. Boy was I wrong! I guess the bad hunch was
an unfortunate after effect of watching 'Primal Fear'. Although the plot
is unbelievable, it will keep you guessing right to the very end, and
that's what any movie really needs to do if it is to get a favourable
response from it's viewers.</P>
<P>Comment: What did you say? I can't hear you?</P>
<PRE>Fear Feel Scale:
0% Panic / *SCREAM* / 911 100%</PRE>
<PRE>Timothy Voon
e-mail: <A HREF="mailto:[email protected]">[email protected]</A></PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
| xianjunzhengbackup/code | data science/machine_learning_for_the_web/chapter_4/movie/8482.html | HTML | mit | 5,818 |
import _plotly_utils.basevalidators
class TextfontValidator(_plotly_utils.basevalidators.CompoundValidator):
def __init__(self, plotly_name="textfont", parent_name="scattersmith", **kwargs):
super(TextfontValidator, self).__init__(
plotly_name=plotly_name,
parent_name=parent_name,
data_class_str=kwargs.pop("data_class_str", "Textfont"),
data_docs=kwargs.pop(
"data_docs",
"""
color
colorsrc
Sets the source reference on Chart Studio Cloud
for `color`.
family
HTML font family - the typeface that will be
applied by the web browser. The web browser
will only be able to apply a font if it is
available on the system which it operates.
Provide multiple font families, separated by
commas, to indicate the preference in which to
apply fonts if they aren't available on the
system. The Chart Studio Cloud (at
https://chart-studio.plotly.com or on-premise)
generates images on a server, where only a
select number of fonts are installed and
supported. These include "Arial", "Balto",
"Courier New", "Droid Sans",, "Droid Serif",
"Droid Sans Mono", "Gravitas One", "Old
Standard TT", "Open Sans", "Overpass", "PT Sans
Narrow", "Raleway", "Times New Roman".
familysrc
Sets the source reference on Chart Studio Cloud
for `family`.
size
sizesrc
Sets the source reference on Chart Studio Cloud
for `size`.
""",
),
**kwargs
)
| plotly/plotly.py | packages/python/plotly/plotly/validators/scattersmith/_textfont.py | Python | mit | 1,869 |
export default function mapNodesToColumns({
children = [],
columns = 1,
dimensions = [],
} = {}) {
let nodes = []
let heights = []
if (columns === 1) {
return children
}
// use dimensions to calculate the best column for each child
if (dimensions.length && dimensions.length === children.length) {
for(let i=0; i<columns; i++) {
nodes[i] = []
heights[i] = 0
}
children.forEach((child, i) => {
let { width, height } = dimensions[i]
let index = heights.indexOf(Math.min(...heights))
nodes[index].push(child)
heights[index] += height / width
})
}
// equally spread the children across the columns
else {
for(let i=0; i<columns; i++) {
nodes[i] = children.filter((child, j) => j % columns === i)
}
}
return nodes
} | novascreen/react-columns | src/mapNodesToColumns.js | JavaScript | mit | 811 |
/**
* @fileoverview enforce or disallow capitalization of the first letter of a comment
* @author Kevin Partington
*/
"use strict";
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const LETTER_PATTERN = require("../util/patterns/letters");
const astUtils = require("../util/ast-utils");
//------------------------------------------------------------------------------
// Helpers
//------------------------------------------------------------------------------
const DEFAULT_IGNORE_PATTERN = astUtils.COMMENTS_IGNORE_PATTERN,
WHITESPACE = /\s/g,
MAYBE_URL = /^\s*[^:/?#\s]+:\/\/[^?#]/, // TODO: Combine w/ max-len pattern?
DEFAULTS = {
ignorePattern: null,
ignoreInlineComments: false,
ignoreConsecutiveComments: false
};
/*
* Base schema body for defining the basic capitalization rule, ignorePattern,
* and ignoreInlineComments values.
* This can be used in a few different ways in the actual schema.
*/
const SCHEMA_BODY = {
type: "object",
properties: {
ignorePattern: {
type: "string"
},
ignoreInlineComments: {
type: "boolean"
},
ignoreConsecutiveComments: {
type: "boolean"
}
},
additionalProperties: false
};
/**
* Get normalized options for either block or line comments from the given
* user-provided options.
* - If the user-provided options is just a string, returns a normalized
* set of options using default values for all other options.
* - If the user-provided options is an object, then a normalized option
* set is returned. Options specified in overrides will take priority
* over options specified in the main options object, which will in
* turn take priority over the rule's defaults.
*
* @param {Object|string} rawOptions The user-provided options.
* @param {string} which Either "line" or "block".
* @returns {Object} The normalized options.
*/
function getNormalizedOptions(rawOptions, which) {
if (!rawOptions) {
return Object.assign({}, DEFAULTS);
}
return Object.assign({}, DEFAULTS, rawOptions[which] || rawOptions);
}
/**
* Get normalized options for block and line comments.
*
* @param {Object|string} rawOptions The user-provided options.
* @returns {Object} An object with "Line" and "Block" keys and corresponding
* normalized options objects.
*/
function getAllNormalizedOptions(rawOptions) {
return {
Line: getNormalizedOptions(rawOptions, "line"),
Block: getNormalizedOptions(rawOptions, "block")
};
}
/**
* Creates a regular expression for each ignorePattern defined in the rule
* options.
*
* This is done in order to avoid invoking the RegExp constructor repeatedly.
*
* @param {Object} normalizedOptions The normalized rule options.
* @returns {void}
*/
function createRegExpForIgnorePatterns(normalizedOptions) {
Object.keys(normalizedOptions).forEach(key => {
const ignorePatternStr = normalizedOptions[key].ignorePattern;
if (ignorePatternStr) {
const regExp = RegExp(`^\\s*(?:${ignorePatternStr})`);
normalizedOptions[key].ignorePatternRegExp = regExp;
}
});
}
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
type: "suggestion",
docs: {
description: "enforce or disallow capitalization of the first letter of a comment",
category: "Stylistic Issues",
recommended: false,
url: "https://eslint.org/docs/rules/capitalized-comments"
},
fixable: "code",
schema: [
{ enum: ["always", "never"] },
{
oneOf: [
SCHEMA_BODY,
{
type: "object",
properties: {
line: SCHEMA_BODY,
block: SCHEMA_BODY
},
additionalProperties: false
}
]
}
],
messages: {
unexpectedLowercaseComment: "Comments should not begin with a lowercase character",
unexpectedUppercaseComment: "Comments should not begin with an uppercase character"
}
},
create(context) {
const capitalize = context.options[0] || "always",
normalizedOptions = getAllNormalizedOptions(context.options[1]),
sourceCode = context.getSourceCode();
createRegExpForIgnorePatterns(normalizedOptions);
//----------------------------------------------------------------------
// Helpers
//----------------------------------------------------------------------
/**
* Checks whether a comment is an inline comment.
*
* For the purpose of this rule, a comment is inline if:
* 1. The comment is preceded by a token on the same line; and
* 2. The command is followed by a token on the same line.
*
* Note that the comment itself need not be single-line!
*
* Also, it follows from this definition that only block comments can
* be considered as possibly inline. This is because line comments
* would consume any following tokens on the same line as the comment.
*
* @param {ASTNode} comment The comment node to check.
* @returns {boolean} True if the comment is an inline comment, false
* otherwise.
*/
function isInlineComment(comment) {
const previousToken = sourceCode.getTokenBefore(comment, { includeComments: true }),
nextToken = sourceCode.getTokenAfter(comment, { includeComments: true });
return Boolean(
previousToken &&
nextToken &&
comment.loc.start.line === previousToken.loc.end.line &&
comment.loc.end.line === nextToken.loc.start.line
);
}
/**
* Determine if a comment follows another comment.
*
* @param {ASTNode} comment The comment to check.
* @returns {boolean} True if the comment follows a valid comment.
*/
function isConsecutiveComment(comment) {
const previousTokenOrComment = sourceCode.getTokenBefore(comment, { includeComments: true });
return Boolean(
previousTokenOrComment &&
["Block", "Line"].indexOf(previousTokenOrComment.type) !== -1
);
}
/**
* Check a comment to determine if it is valid for this rule.
*
* @param {ASTNode} comment The comment node to process.
* @param {Object} options The options for checking this comment.
* @returns {boolean} True if the comment is valid, false otherwise.
*/
function isCommentValid(comment, options) {
// 1. Check for default ignore pattern.
if (DEFAULT_IGNORE_PATTERN.test(comment.value)) {
return true;
}
// 2. Check for custom ignore pattern.
const commentWithoutAsterisks = comment.value
.replace(/\*/g, "");
if (options.ignorePatternRegExp && options.ignorePatternRegExp.test(commentWithoutAsterisks)) {
return true;
}
// 3. Check for inline comments.
if (options.ignoreInlineComments && isInlineComment(comment)) {
return true;
}
// 4. Is this a consecutive comment (and are we tolerating those)?
if (options.ignoreConsecutiveComments && isConsecutiveComment(comment)) {
return true;
}
// 5. Does the comment start with a possible URL?
if (MAYBE_URL.test(commentWithoutAsterisks)) {
return true;
}
// 6. Is the initial word character a letter?
const commentWordCharsOnly = commentWithoutAsterisks
.replace(WHITESPACE, "");
if (commentWordCharsOnly.length === 0) {
return true;
}
const firstWordChar = commentWordCharsOnly[0];
if (!LETTER_PATTERN.test(firstWordChar)) {
return true;
}
// 7. Check the case of the initial word character.
const isUppercase = firstWordChar !== firstWordChar.toLocaleLowerCase(),
isLowercase = firstWordChar !== firstWordChar.toLocaleUpperCase();
if (capitalize === "always" && isLowercase) {
return false;
}
if (capitalize === "never" && isUppercase) {
return false;
}
return true;
}
/**
* Process a comment to determine if it needs to be reported.
*
* @param {ASTNode} comment The comment node to process.
* @returns {void}
*/
function processComment(comment) {
const options = normalizedOptions[comment.type],
commentValid = isCommentValid(comment, options);
if (!commentValid) {
const messageId = capitalize === "always"
? "unexpectedLowercaseComment"
: "unexpectedUppercaseComment";
context.report({
node: null, // Intentionally using loc instead
loc: comment.loc,
messageId,
fix(fixer) {
const match = comment.value.match(LETTER_PATTERN);
return fixer.replaceTextRange(
// Offset match.index by 2 to account for the first 2 characters that start the comment (// or /*)
[comment.range[0] + match.index + 2, comment.range[0] + match.index + 3],
capitalize === "always" ? match[0].toLocaleUpperCase() : match[0].toLocaleLowerCase()
);
}
});
}
}
//----------------------------------------------------------------------
// Public
//----------------------------------------------------------------------
return {
Program() {
const comments = sourceCode.getAllComments();
comments.filter(token => token.type !== "Shebang").forEach(processComment);
}
};
}
};
| Aladdin-ADD/eslint | lib/rules/capitalized-comments.js | JavaScript | mit | 10,861 |
namespace PythonSharp.Exceptions
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class AttributeError : Exception
{
public AttributeError(string message)
: base(message)
{
}
}
}
| ajlopez/PythonSharp | Src/PythonSharp/Exceptions/AttributeError.cs | C# | mit | 308 |
package iso20022
// Security that is a sub-set of an investment fund, and is governed by the same investment fund policy, eg, dividend option or valuation currency.
type FinancialInstrument11 struct {
// Unique and unambiguous identifier of a security, assigned under a formal or proprietary identification scheme.
Identification *SecurityIdentification3Choice `xml:"Id"`
// Name of the financial instrument in free format text.
Name *Max350Text `xml:"Nm,omitempty"`
// Specifies whether the financial instrument is transferred as an asset or as cash.
TransferType *TransferType1Code `xml:"TrfTp"`
}
func (f *FinancialInstrument11) AddIdentification() *SecurityIdentification3Choice {
f.Identification = new(SecurityIdentification3Choice)
return f.Identification
}
func (f *FinancialInstrument11) SetName(value string) {
f.Name = (*Max350Text)(&value)
}
func (f *FinancialInstrument11) SetTransferType(value string) {
f.TransferType = (*TransferType1Code)(&value)
}
| fgrid/iso20022 | FinancialInstrument11.go | GO | mit | 983 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tree-diameter: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.1 / tree-diameter - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
tree-diameter
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-26 18:01:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-26 18:01:49 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/coq-contribs/tree-diameter"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TreeDiameter"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: program verification" "keyword: trees" "keyword: paths" "keyword: graphs" "keyword: distance" "keyword: diameter" "category: Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms" ]
authors: [ "Jean-Christophe Filliâtre" ]
bug-reports: "https://github.com/coq-contribs/tree-diameter/issues"
dev-repo: "git+https://github.com/coq-contribs/tree-diameter.git"
synopsis: "Diameter of a binary tree"
description: """
This contribution contains the verification of a divide-and-conquer
algorithm to compute the diameter of a binary tree (the
maxmimal distance between two nodes in the tree)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/tree-diameter/archive/v8.6.0.tar.gz"
checksum: "md5=4dedc9ccd559cadcb016452f59eda4eb"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-tree-diameter.8.6.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.1).
The following dependencies couldn't be met:
- coq-tree-diameter -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-tree-diameter.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.08.1-2.0.5/released/8.13.1/tree-diameter/8.6.0.html | HTML | mit | 7,194 |
---
layout: page
title: Hill - Travis Wedding
date: 2016-05-24
author: Denise Joseph
tags: weekly links, java
status: published
summary: Morbi dignissim viverra tortor sed molestie. Nullam.
banner: images/banner/office-01.jpg
booking:
startDate: 10/08/2016
endDate: 10/12/2016
ctyhocn: CBKKSHX
groupCode: HTW
published: true
---
Quisque convallis feugiat ex, id volutpat nulla feugiat quis. Suspendisse non velit augue. Donec bibendum tempor tellus nec dignissim. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent aliquam mauris id urna vestibulum maximus. Aliquam placerat a turpis et porta. Duis at mauris justo. Pellentesque lobortis, magna quis imperdiet tempus, augue diam gravida nisl, a ultricies urna diam et leo. Cras arcu nulla, egestas a convallis id, tincidunt a ex. Proin purus sem, rutrum nec mi eu, finibus consectetur est. Nunc vitae eros erat. Phasellus tincidunt at eros quis faucibus.
* Morbi non nisl at libero ultricies varius
* Donec efficitur ligula eget arcu condimentum posuere.
Praesent vitae felis luctus, scelerisque nulla at, euismod est. Maecenas molestie lectus sit amet posuere laoreet. Maecenas in accumsan lacus. Fusce purus lacus, commodo quis dictum ac, hendrerit in tellus. Quisque dignissim laoreet est a euismod. Phasellus a neque sit amet velit tempus tempus. Nulla facilisi. Sed ac nisl scelerisque, molestie urna in, dapibus nulla. Proin nec erat dignissim, vehicula est quis, elementum felis. Curabitur pellentesque, urna ac luctus hendrerit, est urna commodo lectus, ac pellentesque purus mi pretium eros.
Integer vitae tellus a tortor consectetur ullamcorper. Sed vestibulum consequat magna, eget imperdiet mi interdum sit amet. Proin sed finibus augue. Proin tellus metus, laoreet non sodales sed, laoreet sed magna. Phasellus eros augue, fermentum at risus suscipit, varius interdum massa. Phasellus porta tortor et nulla consectetur mattis. Phasellus eu nunc mattis, consequat elit sed, cursus nibh. Integer a euismod lorem. Maecenas risus mauris, lacinia nec erat sed, scelerisque vehicula metus.
| KlishGroup/prose-pogs | pogs/C/CBKKSHX/HTW/index.md | Markdown | mit | 2,077 |
module.exports = {
FIREBASE_URL: 'https://amber-heat-<your-app>.firebaseio.com/',
TWITTER_KEY: '',
TWITTER_SECRET: '',
TWITTER_CALLBACK: process.env.TWITTER_CALLBACK || 'Twitter Callback Url'
}; | mikhailbartashevich/ngCarcass | server/config.js | JavaScript | mit | 199 |
/**
* @hidden
* @param a0
* @param a1
* @param a2
* @param a3
* @param a4
* @param a5
* @param a6
* @param a7
* @param b0
* @param b1
* @param b2
* @param b3
* @param b4
* @param b5
* @param b6
* @param b7
* @param index
* @returns
*/
export declare function extE3(a0: number, a1: number, a2: number, a3: number, a4: number, a5: number, a6: number, a7: number, b0: number, b1: number, b2: number, b3: number, b4: number, b5: number, b6: number, b7: number, index: number): number;
| geometryzen/davinci-newton | build/module/lib/math/extE3.d.ts | TypeScript | mit | 501 |
require 'rails_helper'
describe SectionSevenController do
it { should respond_to(:index) }
end
| impact100/common-grant-application | spec/controllers/section_seven_controller_spec.rb | Ruby | mit | 98 |
# dispensable-chat
Socket.io party chat
Team name: `dispensable-flicker`
http://jsdev.learnersguild.org/goals/378-Socket-Party_Chat.html
## Instructions
Type the following in your terminal
1. `git clone https://github.com/TrevorJamesH/dispensable-chat.git trevorSocket`
2. `cd trevorSocket`
3. `npm run init-db`
4. Get the Secret code from our team via Slack
5. `echo "The secret code you got from us" > .env`
6. `npm start`
8. Open Google chrome to `localhost:3000`
9. Say "WOW this is amazing!"
10. Give us 100% on the project in slack by typing `/review #dispensable-flicker 100`
11. Give us high-gives too.
## Specifications
Our own added spec. (Gives us credit/points for it? I heard it's a guild wide spec now)
- [X] No linting errors. You can run eslint with `npm run lint`.
### General Specs
- [X] App has a **landing page** (on route `/`) where a user can either **log in** of **sign up**.
- [X] App has a **home page** (on route `/home`) where the user can see a list of chatrooms they have subscribed to along with a feed of all the conversation for currently selected room.
- [X] Uses Socket.io to make a socket.
- [X] Uses ajax/fetch calls to communicate with API endpoints.
- [X] Backend view rendering ( via pug or HTML ) is separated from API and socket actions.
- [X] Uses Javascript and/or jQuery for dymanic DOM mode creation and manipulation.
- [X] Repo includes a README.md with [spec list](http://jsdev.learnersguild.org/) and it is checked off with completed specs.
- [X] All dependancies are properly declared in a `package.json`
- [X] Variables, functions, files, etc. have appropriate and meaningful names.
- [X] Functions are small and serve a single purpose.
- [X] The artifact produced is properly licensed, preferably with the MIT license.
### User log-in/sign-up story
- [X] View has a `log-in` button.
- [X] View has a `sign-up` button.
- [X] When `log-in` button is clicked, both `log-in` and `sign-up` button are hidden and a `log-in form` takes their place on the screen.
- [X] Same as above for `sign` up, but instead of a `log-in form` we see a `sign-up form`.
- [X] On **either form** clicking a `cancel` button removes the form from view, and we again get a view with the two buttons.
- [X] On `log-in form`, clicking submit will check to see if the user exists and authenticate the entered password with the user's stored password.
- [X] On `sign-up form`, clicking submit adds them to the database and logs them in.
- [X] On log-in, after the user is authenticated, a session is set.
- [X] Closing the page and reopening it will redirect user to `/home`
- [X] Session persists until `logout` or after 30 minutes pass.
### User chatroom story
- [X] User can make a new chatroom by clicking a `+` button.
- [X] User can search on a search bar that auto-completes with all of the chatrooms in the database that match the entered string.
- [X] User can see a `chatroom list` of all of the chatrooms they have subscribed too.
- [X] `<div class='messages [other classes] >'` exists as a container to where messages for a current chatroom are displayed.
- [X] When a chatroom in `chatroom list` is clicked, the `<div class='messages [other classes] >` displays a list of all the current messages in that chatroom.
- [X] User can unsubscribe from a chatroom and it is deleted from their `chatroom list`.
- [X] `messages div` has a textarea where you can enter a message.
- [X] User can send a message by clicking a send button and/or pressing the enter keyboard key.
- [X] Messages are displayed in descending chronological order. ( oldest on top of history )
- [X] User's sent messages are displayed on the right side, all other messages on the left side.
- [X] Anytime a message is sent, anyone in the chatroom can see the new message almost immediately. ( You can do this by logging in as a different user on a new browser window )
| TrevorJamesH/dispensable-chat | README.md | Markdown | mit | 3,879 |
/**
* Copyright (C) 2012 - 2014 Xeiam LLC http://xeiam.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.xeiam.xchange.justcoin.service.polling;
import java.io.IOException;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import si.mazi.rescu.RestProxyFactory;
import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.currency.CurrencyPair;
import com.xeiam.xchange.justcoin.Justcoin;
import com.xeiam.xchange.justcoin.JustcoinAdapters;
import com.xeiam.xchange.justcoin.dto.marketdata.JustcoinTicker;
import com.xeiam.xchange.service.BaseExchangeService;
import com.xeiam.xchange.utils.AuthUtils;
public class JustcoinBasePollingService<T extends Justcoin> extends BaseExchangeService {
protected final T justcoin;
private final Set<CurrencyPair> currencyPairs = new HashSet<CurrencyPair>();
/**
* Constructor
*
* @param exchangeSpecification The {@link ExchangeSpecification}
*/
public JustcoinBasePollingService(Class<T> type, ExchangeSpecification exchangeSpecification) {
super(exchangeSpecification);
this.justcoin = RestProxyFactory.createProxy(type, exchangeSpecification.getSslUri());
}
@Override
public Collection<CurrencyPair> getExchangeSymbols() throws IOException {
if (currencyPairs.isEmpty()) {
for (final JustcoinTicker ticker : justcoin.getTickers()) {
final CurrencyPair currencyPair = JustcoinAdapters.adaptCurrencyPair(ticker.getId());
currencyPairs.add(currencyPair);
}
}
return currencyPairs;
}
protected String getBasicAuthentication() {
return AuthUtils.getBasicAuth(exchangeSpecification.getUserName(), exchangeSpecification.getPassword());
}
}
| habibmasuro/XChange | xchange-justcoin/src/main/java/com/xeiam/xchange/justcoin/service/polling/JustcoinBasePollingService.java | Java | mit | 2,758 |
WBlog
=======
[](https://travis-ci.org/windy/wblog)
[](https://codeclimate.com/github/windy/wblog)
[](https://codeclimate.com/github/windy/wblog)
为移动而生的 Ruby on Rails 开源博客. WBlog 基于 MIT 协议, 自由使用.
* 用户极为友好的阅读体验
* 自带干净的评论系统
* 简洁而不简单的发布博客流程
访问我的博客以体验: <http://yafeilee.me>
后台禁止爬虫, 使用: <http://yafeilee.me/admin> 访问, 用户名密码可配置.
截图如下: <#screenshots>
### WBlog 的设计目标
* 优先以手机用户体验为主
* 独立干净的评论系统
* 良好的博客语法高亮支持
* 可邮件订阅
* Markdown 支持
* 尽可能独立
### 特色
* 优先支持移动端访问
* 响应式设计, 支持所有屏幕终端, 并且支持微信扫码继续阅读和分享
* 自带评论系统, 干净而方便
* Markdown 支持, 博客语法高亮, 方便技术性博客
* 开源可商用, 定制能力强
### 期望
成为 `Ruby on Rails` 下最好用的独立博客建站系统
### 开发环境
WBlog 是一个标准的 Ruby on Rails 应用. 开发环境依赖于:
* Ruby ( = 2.3.1 )
* Postgresql ( >= 9.x )
配置 WBlog:
```shell
gem install bundler
bundle install
cp config/application.yml.example config/application.yml
cp config/database.yml.example config/database.yml
```
更新对应配置: application.yml & database.yml.
对于配置有不明白的地方, 可以来这里咨询.
就这样, 可以尝试启动了:
```shell
rails s
```
登录 http://localhsot:3000/admin 来发布第一篇博客.
### 发布应用
WBlog 采用了 `mina` 作为自动化发布工具, 使用 `nginx`, `puma` 为相关容器.
对应的发布流程在: [WBlog 的发布流程](https://github.com/windy/wblog/wiki)
### 技术栈
* Ruby on Rails 5.0.0
* Ruby 2.3.1
* Foundation 6
* mina
* slim
* Postgresql
## Ruby 相关开源博客推荐
* writings.io( Ruby on Rails 4.0.2 ): <https://github.com/chloerei/writings>
* jekyll( Ruby Gem, Markdown, Static ): <http://jekyllrb.com/>
* octopress( Github Pages ): <http://octopress.org/>
* middleman( Ruby Gem, Static ): <https://github.com/middleman/middleman>
* robbin_site( Padrino ): <https://github.com/robbin/robbin_site>
### Screenshots
首页:

小屏首页:

展开的小屏首页:

博客详情页:

展开的博客详情页:

管理员登录页:

管理页面板:

发布新博客页:

博客管理页:

| Syuusuke/hosea-blog | README.zh-CN.md | Markdown | mit | 3,486 |
'use strict'
const _ = require('lodash')
module.exports = {
getQueryString(url) {
const qs = {}
_.forEach(url.split('?').pop().split('&'), s => {
if (!s) return
const kv = s.split('=')
if (kv[0]) {
qs[kv[0]] = decodeURIComponent(kv[1])
}
})
return qs
},
toQueryString(o) {
return _.keys(o).map(k => k + '=' + encodeURIComponent(o[k])).join('&')
},
isMobile(v) {
return /^1[358]\d{9}$/.test(v)
},
getRandomStr() {
return (1e32 * Math.random()).toString(36).slice(0, 16)
}
}
| tmspnn/uic | src/util/helpers.js | JavaScript | mit | 554 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v4.4.3 - v4.4.4: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v4.4.3 - v4.4.4
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Isolate.html">Isolate</a></li><li class="navelem"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">DisallowJavascriptExecutionScope</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Isolate::DisallowJavascriptExecutionScope Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>CRASH_ON_FAILURE</b> enum value (defined in <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DisallowJavascriptExecutionScope</b>(Isolate *isolate, OnFailure on_failure) (defined in <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>OnFailure</b> enum name (defined in <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>THROW_ON_FAILURE</b> enum value (defined in <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~DisallowJavascriptExecutionScope</b>() (defined in <a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html">v8::Isolate::DisallowJavascriptExecutionScope</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | aadf356/html/classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope-members.html | HTML | mit | 6,740 |
/*
* This file is part of React, licensed under the MIT License (MIT).
*
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
* React is re-licensed with permission from ReactPhysics3D author.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.flowpowered.react.collision.narrowphase.EPA;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Queue;
import com.flowpowered.react.ReactDefaults;
import com.flowpowered.react.collision.narrowphase.GJK.GJKAlgorithm;
import com.flowpowered.react.collision.narrowphase.GJK.Simplex;
import com.flowpowered.react.collision.shape.CollisionShape;
import com.flowpowered.react.constraint.ContactPoint.ContactPointInfo;
import com.flowpowered.react.math.Matrix3x3;
import com.flowpowered.react.math.Quaternion;
import com.flowpowered.react.math.Transform;
import com.flowpowered.react.math.Vector3;
/**
* This class is the implementation of the Expanding Polytope Algorithm (EPA). The EPA algorithm computes the penetration depth and contact points between two enlarged objects (with margin) where the
* original objects (without margin) intersect. The penetration depth of a pair of intersecting objects A and B is the length of a point on the boundary of the Minkowski sum (A-B) closest to the
* origin. The goal of the EPA algorithm is to start with an initial simplex polytope that contains the origin and expend it in order to find the point on the boundary of (A-B) that is closest to the
* origin. An initial simplex that contains the origin has been computed with the GJK algorithm. The EPA Algorithm will extend this simplex polytope to find the correct penetration depth. The
* implementation of the EPA algorithm is based on the book "Collision Detection in 3D Environments".
*/
public class EPAAlgorithm {
private static final int MAX_SUPPORT_POINTS = 100;
private static final int MAX_FACETS = 200;
/**
* Computes the penetration depth with the EPA algorithm. This method computes the penetration depth and contact points between two enlarged objects (with margin) where the original objects
* (without margin) intersect. An initial simplex that contains the origin has been computed with GJK algorithm. The EPA Algorithm will extend this simplex polytope to find the correct penetration
* depth. Returns true if the computation was successful, false if not.
*
* @param simplex The initial simplex
* @param collisionShape1 The first collision shape
* @param transform1 The transform of the first collision shape
* @param collisionShape2 The second collision shape
* @param transform2 The transform of the second collision shape
* @param v The vector in which to store the closest point
* @param contactInfo The contact info in which to store the contact info of the collision
* @return Whether or not the computation was successful
*/
public boolean computePenetrationDepthAndContactPoints(Simplex simplex,
CollisionShape collisionShape1, Transform transform1,
CollisionShape collisionShape2, Transform transform2,
Vector3 v, ContactPointInfo contactInfo) {
final Vector3[] suppPointsA = new Vector3[MAX_SUPPORT_POINTS];
final Vector3[] suppPointsB = new Vector3[MAX_SUPPORT_POINTS];
final Vector3[] points = new Vector3[MAX_SUPPORT_POINTS];
final TrianglesStore triangleStore = new TrianglesStore();
final Queue<TriangleEPA> triangleHeap = new PriorityQueue<>(MAX_FACETS, new TriangleComparison());
final Transform body2Tobody1 = Transform.multiply(transform1.getInverse(), transform2);
final Matrix3x3 rotateToBody2 = Matrix3x3.multiply(transform2.getOrientation().getMatrix().getTranspose(), transform1.getOrientation().getMatrix());
int nbVertices = simplex.getSimplex(suppPointsA, suppPointsB, points);
final float tolerance = ReactDefaults.MACHINE_EPSILON * simplex.getMaxLengthSquareOfAPoint();
int nbTriangles = 0;
triangleStore.clear();
switch (nbVertices) {
case 1:
return false;
case 2: {
final Vector3 d = Vector3.subtract(points[1], points[0]).getUnit();
final int minAxis = d.getAbsoluteVector().getMinAxis();
final float sin60 = (float) Math.sqrt(3) * 0.5f;
final Quaternion rotationQuat = new Quaternion(d.getX() * sin60, d.getY() * sin60, d.getZ() * sin60, 0.5f);
final Matrix3x3 rotationMat = rotationQuat.getMatrix();
final Vector3 v1 = d.cross(new Vector3(minAxis == 0 ? 1 : 0, minAxis == 1 ? 1 : 0, minAxis == 2 ? 1 : 0));
final Vector3 v2 = Matrix3x3.multiply(rotationMat, v1);
final Vector3 v3 = Matrix3x3.multiply(rotationMat, v2);
suppPointsA[2] = collisionShape1.getLocalSupportPointWithMargin(v1);
suppPointsB[2] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, Vector3.negate(v1))));
points[2] = Vector3.subtract(suppPointsA[2], suppPointsB[2]);
suppPointsA[3] = collisionShape1.getLocalSupportPointWithMargin(v2);
suppPointsB[3] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, Vector3.negate(v2))));
points[3] = Vector3.subtract(suppPointsA[3], suppPointsB[3]);
suppPointsA[4] = collisionShape1.getLocalSupportPointWithMargin(v3);
suppPointsB[4] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, Vector3.negate(v3))));
points[4] = Vector3.subtract(suppPointsA[4], suppPointsB[4]);
if (isOriginInTetrahedron(points[0], points[2], points[3], points[4]) == 0) {
suppPointsA[1].set(suppPointsA[4]);
suppPointsB[1].set(suppPointsB[4]);
points[1].set(points[4]);
} else if (isOriginInTetrahedron(points[1], points[2], points[3], points[4]) == 0) {
suppPointsA[0].set(suppPointsA[4]);
suppPointsB[0].set(suppPointsB[4]);
points[0].set(points[4]);
} else {
return false;
}
nbVertices = 4;
}
case 4: {
final int badVertex = isOriginInTetrahedron(points[0], points[1], points[2], points[3]);
if (badVertex == 0) {
final TriangleEPA face0 = triangleStore.newTriangle(points, 0, 1, 2);
final TriangleEPA face1 = triangleStore.newTriangle(points, 0, 3, 1);
final TriangleEPA face2 = triangleStore.newTriangle(points, 0, 2, 3);
final TriangleEPA face3 = triangleStore.newTriangle(points, 1, 3, 2);
if (!(face0 != null && face1 != null && face2 != null && face3 != null
&& face0.getDistSquare() > 0 && face1.getDistSquare() > 0
&& face2.getDistSquare() > 0 && face3.getDistSquare() > 0)) {
return false;
}
TriangleEPA.link(new EdgeEPA(face0, 0), new EdgeEPA(face1, 2));
TriangleEPA.link(new EdgeEPA(face0, 1), new EdgeEPA(face3, 2));
TriangleEPA.link(new EdgeEPA(face0, 2), new EdgeEPA(face2, 0));
TriangleEPA.link(new EdgeEPA(face1, 0), new EdgeEPA(face2, 2));
TriangleEPA.link(new EdgeEPA(face1, 1), new EdgeEPA(face3, 0));
TriangleEPA.link(new EdgeEPA(face2, 1), new EdgeEPA(face3, 1));
nbTriangles = addFaceCandidate(face0, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face1, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face2, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face3, triangleHeap, nbTriangles, Float.MAX_VALUE);
break;
}
if (badVertex < 4) {
suppPointsA[badVertex - 1].set(suppPointsA[4]);
suppPointsB[badVertex - 1].set(suppPointsB[4]);
points[badVertex - 1].set(points[4]);
}
nbVertices = 3;
}
case 3: {
final Vector3 v1 = Vector3.subtract(points[1], points[0]);
final Vector3 v2 = Vector3.subtract(points[2], points[0]);
final Vector3 n = v1.cross(v2);
suppPointsA[3] = collisionShape1.getLocalSupportPointWithMargin(n);
suppPointsB[3] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, Vector3.negate(n))));
points[3] = Vector3.subtract(suppPointsA[3], suppPointsB[3]);
suppPointsA[4] = collisionShape1.getLocalSupportPointWithMargin(Vector3.negate(n));
suppPointsB[4] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, n)));
points[4] = Vector3.subtract(suppPointsA[4], suppPointsB[4]);
final TriangleEPA face0 = triangleStore.newTriangle(points, 0, 1, 3);
final TriangleEPA face1 = triangleStore.newTriangle(points, 1, 2, 3);
final TriangleEPA face2 = triangleStore.newTriangle(points, 2, 0, 3);
final TriangleEPA face3 = triangleStore.newTriangle(points, 0, 2, 4);
final TriangleEPA face4 = triangleStore.newTriangle(points, 2, 1, 4);
final TriangleEPA face5 = triangleStore.newTriangle(points, 1, 0, 4);
if (!(face0 != null && face1 != null && face2 != null && face3 != null && face4 != null && face5 != null &&
face0.getDistSquare() > 0 && face1.getDistSquare() > 0 &&
face2.getDistSquare() > 0 && face3.getDistSquare() > 0 &&
face4.getDistSquare() > 0 && face5.getDistSquare() > 0)) {
return false;
}
TriangleEPA.link(new EdgeEPA(face0, 1), new EdgeEPA(face1, 2));
TriangleEPA.link(new EdgeEPA(face1, 1), new EdgeEPA(face2, 2));
TriangleEPA.link(new EdgeEPA(face2, 1), new EdgeEPA(face0, 2));
TriangleEPA.link(new EdgeEPA(face0, 0), new EdgeEPA(face5, 0));
TriangleEPA.link(new EdgeEPA(face1, 0), new EdgeEPA(face4, 0));
TriangleEPA.link(new EdgeEPA(face2, 0), new EdgeEPA(face3, 0));
TriangleEPA.link(new EdgeEPA(face3, 1), new EdgeEPA(face4, 2));
TriangleEPA.link(new EdgeEPA(face4, 1), new EdgeEPA(face5, 2));
TriangleEPA.link(new EdgeEPA(face5, 1), new EdgeEPA(face3, 2));
nbTriangles = addFaceCandidate(face0, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face1, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face2, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face3, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face4, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbTriangles = addFaceCandidate(face5, triangleHeap, nbTriangles, Float.MAX_VALUE);
nbVertices = 5;
}
break;
}
if (nbTriangles == 0) {
return false;
}
TriangleEPA triangle;
float upperBoundSquarePenDepth = Float.MAX_VALUE;
do {
triangle = triangleHeap.remove();
nbTriangles--;
if (!triangle.isObsolete()) {
if (nbVertices == MAX_SUPPORT_POINTS) {
break;
}
suppPointsA[nbVertices] = collisionShape1.getLocalSupportPointWithMargin(triangle.getClosestPoint());
suppPointsB[nbVertices] = Transform.multiply(
body2Tobody1,
collisionShape2.getLocalSupportPointWithMargin(Matrix3x3.multiply(rotateToBody2, Vector3.negate(triangle.getClosestPoint()))));
points[nbVertices] = Vector3.subtract(suppPointsA[nbVertices], suppPointsB[nbVertices]);
final int indexNewVertex = nbVertices;
nbVertices++;
final float wDotv = points[indexNewVertex].dot(triangle.getClosestPoint());
if (wDotv <= 0) {
throw new IllegalStateException("wDotv must be greater than zero");
}
final float wDotVSquare = wDotv * wDotv / triangle.getDistSquare();
if (wDotVSquare < upperBoundSquarePenDepth) {
upperBoundSquarePenDepth = wDotVSquare;
}
final float error = wDotv - triangle.getDistSquare();
if (error <= Math.max(tolerance, GJKAlgorithm.REL_ERROR_SQUARE * wDotv)
|| points[indexNewVertex].equals(points[triangle.get(0)])
|| points[indexNewVertex].equals(points[triangle.get(1)])
|| points[indexNewVertex].equals(points[triangle.get(2)])) {
break;
}
int i = triangleStore.getNbTriangles();
if (!triangle.computeSilhouette(points, indexNewVertex, triangleStore)) {
break;
}
while (i != triangleStore.getNbTriangles()) {
final TriangleEPA newTriangle = triangleStore.get(i);
nbTriangles = addFaceCandidate(newTriangle, triangleHeap, nbTriangles, upperBoundSquarePenDepth);
i++;
}
}
}
while (nbTriangles > 0 && triangleHeap.element().getDistSquare() <= upperBoundSquarePenDepth);
v.set(Matrix3x3.multiply(transform1.getOrientation().getMatrix(), triangle.getClosestPoint()));
final Vector3 pALocal = triangle.computeClosestPointOfObject(suppPointsA);
final Vector3 pBLocal = Transform.multiply(body2Tobody1.getInverse(), triangle.computeClosestPointOfObject(suppPointsB));
final Vector3 normal = v.getUnit();
final float penetrationDepth = v.length();
if (penetrationDepth <= 0) {
throw new IllegalStateException("penetration depth must be greater that zero");
}
contactInfo.set(normal, penetrationDepth, pALocal, pBLocal);
return true;
}
// Decides if the origin is in the tetrahedron.
// Returns 0 if the origin is in the tetrahedron or returns the index (1,2,3 or 4) of the bad
// vertex if the origin is not in the tetrahedron.
private static int isOriginInTetrahedron(Vector3 p1, Vector3 p2, Vector3 p3, Vector3 p4) {
final Vector3 normal1 = Vector3.subtract(p2, p1).cross(Vector3.subtract(p3, p1));
if (normal1.dot(p1) > 0 == normal1.dot(p4) > 0) {
return 4;
}
final Vector3 normal2 = Vector3.subtract(p4, p2).cross(Vector3.subtract(p3, p2));
if (normal2.dot(p2) > 0 == normal2.dot(p1) > 0) {
return 1;
}
final Vector3 normal3 = Vector3.subtract(p4, p3).cross(Vector3.subtract(p1, p3));
if (normal3.dot(p3) > 0 == normal3.dot(p2) > 0) {
return 2;
}
final Vector3 normal4 = Vector3.subtract(p2, p4).cross(Vector3.subtract(p1, p4));
if (normal4.dot(p4) > 0 == normal4.dot(p3) > 0) {
return 3;
}
return 0;
}
// Adds a triangle face in the candidate triangle heap in the EPA algorithm.
private static int addFaceCandidate(TriangleEPA triangle, Queue<TriangleEPA> heap, int nbTriangles, float upperBoundSquarePenDepth) {
if (triangle.isClosestPointInternalToTriangle() && triangle.getDistSquare() <= upperBoundSquarePenDepth) {
heap.add(triangle);
nbTriangles++;
}
return nbTriangles;
}
// Compares the EPA triangles in the queue.
private static class TriangleComparison implements Comparator<TriangleEPA> {
@Override
public int compare(TriangleEPA face1, TriangleEPA face2) {
final float dist1 = face1.getDistSquare();
final float dist2 = face2.getDistSquare();
if (dist1 == dist2) {
return 0;
}
return dist1 > dist2 ? 1 : -1;
}
}
}
| flow/react | src/main/java/com/flowpowered/react/collision/narrowphase/EPA/EPAAlgorithm.java | Java | mit | 18,355 |
<?xml version="1.0" ?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>algebra/samples-ja.html</title>
</head>
<body>
<p>[<a href="index-ja.html">index-ja</a>] </p>
<h1><a name="label-0" id="label-0">ûK</a></h1><!-- RDLabel: "ûK" -->
<h2><a name="label-1" id="label-1">CONTENTS</a></h2><!-- RDLabel: "CONTENTS" -->
<ul>
<li><a href="#label-2">LÀW</a>
<ul>
<li><a href="#label-3">W</a></li>
<li><a href="#label-4">Ê</a></li>
<li><a href="#label-5">Q</a></li>
</ul></li>
<li><a href="#label-6">½®ÌvZ</a></li>
<li><a href="#label-7">½Ï½®ÌvZ</a></li>
<li><a href="#label-8">½Ï½®ÌvZ»ÌQ</a></li>
<li><a href="#label-9">½®ð¡Ì½®ÅÁ½]èðßé</a></li>
<li><a href="#label-10">½®ÌOuiîêðßé</a></li>
<li><a href="#label-11">fÌðìé</a></li>
<li><a href="#label-12">ãÌðìé</a></li>
<li><a href="#label-15">¤Ì̶¬</a>
<ul>
<li><a href="#label-16">®Â̤ÌðæÁÄLðìé</a></li>
<li><a href="#label-17">LÖÌ̶¬</a></li>
<li><a href="#label-18">ãgåÌãÌL®ÌvZ</a></li>
<li><a href="#label-19">ãÖÌ</a></li>
</ul></li>
<li><a href="#label-20">ü`ã</a>
<ul>
<li><a href="#label-21">A§1ûö®ðð</a></li>
<li><a href="#label-22">³ûsñÌÎp»</a></li>
<li><a href="#label-23">sñÌPöqðßé</a></li>
<li><a href="#label-24">sñÌ Jordan W`ðßé</a></li>
<li><a href="#label-25">Cayley-Hamilton ÌèÌi³Ìjؾ</a></li>
</ul></li>
<li><a href="#label-26">Ouiîêð³ÌîêÅ\»·é</a></li>
<li><a href="#label-27">CÓÌîêÅÁ½¤Æ]èðßéi]èOÉÓ¡ª éj</a></li>
<li><a href="#label-28">öªð</a>
<ul>
<li><a href="#label-29">®W½®Ìöªð</a></li>
<li><a href="#label-30">Zp W½®Ìöªð</a></li>
<li><a href="#label-31">LÌãgåã̽®Ìöªð</a></li>
<li><a href="#label-32">LÌãgåÌãgåã̽®Ìöªð</a></li>
<li><a href="#label-33">x^4 + 10x^2 + 1 Ìöªð</a></li>
<li><a href="#label-34">®ALW½Ï½®Ìöªð</a></li>
<li><a href="#label-35">Zp W½Ï½®Ìöªð</a></li>
</ul></li>
<li><a href="#label-36">ãûö®</a>
<ul>
<li><a href="#label-37">Ŭ½®</a></li>
<li><a href="#label-38">ŬªðÌ</a></li>
<li><a href="#label-39">½®ÌKAQ</a></li>
</ul></li>
<li><a href="#label-40">ô½</a>
<ul>
<li><a href="#label-41">dS̶Ý</a></li>
<li><a href="#label-42">OS̶Ý</a></li>
<li><a href="#label-43">S̶Ý</a></li>
<li><a href="#label-44">4 ÂÌÊÏ</a></li>
</ul></li>
<li><a href="#label-45">ðÍ</a>
<ul>
<li><a href="#label-46">OW
Ìæ@</a></li>
</ul></li>
</ul>
<h2><a name="label-2" id="label-2">LÀW</a></h2><!-- RDLabel: "LÀW" -->
<h3><a name="label-3" id="label-3">W</a></h3><!-- RDLabel: "W" -->
<pre># sample-set01.rb
require "algebra"
#intersection
p Set[0, 1, 2, 4] & Set[1, 3, 5] == Set[1]
p Set[0, 1, 2, 4] & Set[7, 3, 5] == Set.phi
#union
p Set[0, 1, 2, 4] | Set[1, 3, 5] == Set[0, 1, 2, 3, 4, 5]
#membership
p Set[1, 3, 2].has?(1)
#inclusion
p Set[3, 2, 1, 3] < Set[3, 1, 4, 2, 0]</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-4" id="label-4">Ê</a></h3><!-- RDLabel: "Ê" -->
<pre># sample-map01.rb
require "algebra"
a = Map[0=>2, 1=>2, 2=>0]
b = Map[0=>1, 1=>1, 2=>1]
p a * b #=> {0=>2, 1=>2, 2=>2}</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-5" id="label-5">Q</a></h3><!-- RDLabel: "Q" -->
<pre># sample-group01.rb
require "algebra"
e = Permutation[0, 1, 2, 3, 4]
a = Permutation[1, 0, 3, 4, 2]
b = Permutation[0, 2, 1, 3, 4]
p a * b #=> [2, 0, 3, 4, 1]
g = Group.new(e, a, b)
g.complete!
p g == PermutationGroup.symmetric(5) #=> true</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-6" id="label-6">½®ÌvZ</a></h2><!-- RDLabel: "½®ÌvZ" -->
<pre># sample-polynomial01.rb
require "algebra"
P = Polynomial.create(Integer, "x")
x = P.var
p((x + 1)**100) #=> x^100 + 100x^99 + ... + 100x + 1</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-7" id="label-7">½Ï½®ÌvZ</a></h2><!-- RDLabel: "½Ï½®ÌvZ" -->
<pre># sample-polynomial02.rb
require "algebra"
P = Polynomial(Integer, "x", "y", "z")
x, y, z = P.vars
p((-x + y + z)*(x + y - z)*(x - y + z))
#=> -z^3 + (y + x)z^2 + (y^2 - 2xy + x^2)z - y^3 + xy^2 + x^2y - x^3</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-8" id="label-8">½Ï½®ÌvZ»ÌQ</a></h2><!-- RDLabel: "½Ï½®ÌvZ»ÌQ" -->
<pre># sample-m-polynomial01.rb
require "algebra"
P = MPolynomial(Integer)
x, y, z, w = P.vars("xyz")
p((-x + y + z)*(x + y - z)*(x - y + z))
#=> -x^3 + x^2y + x^2z + xy^2 - 2xyz + xz^2 - y^3 + y^2z + yz^2 - z^3</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-9" id="label-9">½®ð¡Ì½®ÅÁ½]èðßé</a></h2><!-- RDLabel: "½®ð¡Ì½®ÅÁ½]èðßé" -->
<pre># sample-divmod01.rb
require "algebra"
P = MPolynomial(Rational)
x, y, z = P.vars("xyz")
f = x**2*y + x*y**2 + y*2 + z**3
g = x*y-z**3
h = y*2-6*z
P.set_ord(:lex) # lex, grlex, grevlex
puts "(#{f}).divmod([#{g}, #{h}]) =>", "#{f.divmod(g, h).inspect}"
#=> (x^2y + xy^2 + 2y + z^3).divmod([xy - z^3, 2y - 6z]) =>
# [[x + y, 1/2z^3 + 1], xz^3 + 3z^4 + z^3 + 6z]
# = [[Quotient1,Quotient2], Remainder]</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-10" id="label-10">½®ÌOuiîêðßé</a></h2><!-- RDLabel: "½®ÌOuiîêðßé" -->
<pre># sample-groebner01.rb
require "algebra"
P = MPolynomial(Rational, "xyz")
x, y, z = P.vars("xyz")
f1 = x**2 + y**2 + z**2 -1
f2 = x**2 + z**2 - y
f3 = x - z
p Groebner.basis([f1, f2, f3])
#=> [x - z, y - 2z^2, z^4 + 1/2z^2 - 1/4]</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-11" id="label-11">fÌðìé</a></h2><!-- RDLabel: "fÌðìé" -->
<pre># sample-primefield01.rb
require "algebra"
Z13 = ResidueClassRing(Integer, 13)
a, b, c, d, e, f, g = Z13
p [e + c, e - c, e * c, e * 2001, 3 + c, 1/c, 1/c * c, d / d, b * 1 / b]
#=> [6, 2, 8, 9, 5, 7, 1, 1, 1]
p( (1...13).collect{|i| Z13[i]**12} )
#=> [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-12" id="label-12">ãÌðìé</a></h2><!-- RDLabel: "ãÌðìé" -->
<pre># sample-algebraicfield01.rb
require "algebra"
Px = Polynomial(Rational, "x")
x = Px.var
F = ResidueClassRing(Px, x**2 + x + 1)
x = F[x]
p( (x + 1)**100 )
#=> -x - 1
p( (x-1)** 3 / (x**2 - 1) )
#=> -3x - 3
G = Polynomial(F, "y")
y = G.var
p( (x + y + 1)** 7 )
#=> y^7 + (7x + 7)y^6 + 8xy^5 + 4y^4 + (4x + 4)y^3 + 5xy^2 + 7y + x + 1
H = ResidueClassRing(G, y**5 + x*y + 1)
y = H[y]
p( 1/(x + y + 1)**7 )
#=> (1798/3x + 1825/9)y^4 + (-74x + 5176/9)y^3 +
# (-6886/9x - 5917/9)y^2 + (1826/3x - 3101/9)y + 2146/9x + 4702/9</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-13" id="label-13">±êƯ¶à̪ÌlɯéB</a></h3><!-- RDLabel: "±êƯ¶à̪ÌlɯéB" -->
<pre># sample-algebraicfield02.rb
require "algebra"
F = AlgebraicExtensionField(Rational, "x") {|x| x**2 + x + 1}
x = F.var
p( (x + 1)**100 )
p( (x-1)** 3 / (x**2 - 1) )
H = AlgebraicExtensionField(F, "y") {|y| y**5 + x*y + 1}
y = H.var
p( 1/(x + y + 1)**7 )</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-14" id="label-14">[gÌvZ</a></h3><!-- RDLabel: "[gÌvZ" -->
<pre># sample-algebraic-root01.rb
require "algebra"
R2, r2, r2_ = Root(Rational, 2) # r2 = sqrt(2), -sqrt(2)
p r2 #=> sqrt(2)
R3, r3, r3_ = Root(R2, 3) # r3 = sqrt(3), -sqrt(3)
p r3 #=> sqrt(3)
R6, r6, r6_ = Root(R3, 6) # R6 = R3, r6 = sqrt(6), -sqrt(6)
p r6 #=> -r2r3
p( (r6 + r2)*(r6 - r2) ) #=> 4
F, a, b = QuadraticExtensionField(Rational){|x| x**2 - x - 1}
# fibonacci numbers
(0..100).each do |n|
puts( (a**n - b**n)/(a - b) )
end</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-15" id="label-15">¤Ì̶¬</a></h2><!-- RDLabel: "¤Ì̶¬" -->
<h3><a name="label-16" id="label-16">®Â̤ÌðæÁÄLðìé</a></h3><!-- RDLabel: "®Â̤ÌðæÁÄLðìé" -->
<pre># sample-quotientfield01.rb
require "algebra"
Q = LocalizedRing(Integer)
a = Q.new(3, 5)
b = Q.new(5, 3)
p [a + b, a - b, a * b, a / b, a + 3, 1 + a]
#=> [34/15, -16/15, 15/15, 9/25, 18/5, 8/5]</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-17" id="label-17">LÖÌ̶¬</a></h3><!-- RDLabel: "LÖÌ̶¬" -->
<pre># sample-quotientfield02.rb
require "algebra"
F13 = ResidueClassRing(Integer, 13)
P = Polynomial(F13, "x")
Q = LocalizedRing(P)
x = Q[P.var]
p ( 1 / (x**2 - 1) - 1 / (x**3 - 1) )
#This is equivalent to the following
F = RationalFunctionField(F13, "x")
x = F.var
p ( 1 / (x**2 - 1) - 1 / (x**3 - 1) )</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-18" id="label-18">ãgåÌãÌL®ÌvZ</a></h3><!-- RDLabel: "ãgåÌãÌL®ÌvZ" -->
<pre># sample-quotientfield03.rb
require "algebra"
F13 = ResidueClassRing(Integer, 13)
F = AlgebraicExtensionField(F13, "a") {|a| a**2 - 2}
a = F.var
RF = RationalFunctionField(F, "x")
x = RF.var
p( (a/4*x + RF.unity/2)/(x**2 + a*x + 1) +
(-a/4*x + RF.unity/2)/(x**2 - a*x + 1) )
#=> 1/(x**4 + 1)</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-19" id="label-19">ãÖÌ</a></h3><!-- RDLabel: "ãÖÌ" -->
<pre># sample-quotientfield04.rb
require "algebra"
F13 = ResidueClassRing(Integer, 13)
F = RationalFunctionField(F13, "x")
x = F.var
AF = AlgebraicExtensionField(F, "a") {|a| a**2 - 2*x}
a = AF.var
p( (a/4*x + AF.unity/2)/(x**2 + a*x + 1) +
(-a/4*x + AF.unity/2)/(x**2 - a*x + 1) )
#=> (-x^3 + x^2 + 1)/(x^4 + 11x^3 + 2x^2 + 1)</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-20" id="label-20">ü`ã</a></h2><!-- RDLabel: "ü`ã" -->
<h3><a name="label-21" id="label-21">A§1ûö®ðð</a></h3><!-- RDLabel: "A§1ûö®ðð" -->
<pre># sample-gaussian-elimination01.rb
require "algebra"
M = MatrixAlgebra(Rational, 5, 4)
a = M.matrix{|i, j| i + j}
a.display #=>
#[0, 1, 2, 3]
#[1, 2, 3, 4]
#[2, 3, 4, 5]
#[3, 4, 5, 6]
#[4, 5, 6, 7]
a.kernel_basis.each do |v|
puts "a * #{v} = #{a * v}"
#=> a * [1, -2, 1, 0] = [0, 0, 0, 0, 0]
#=> a * [2, -3, 0, 1] = [0, 0, 0, 0, 0]
end</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-22" id="label-22">³ûsñÌÎp»</a></h3><!-- RDLabel: "³ûsñÌÎp»" -->
<pre># sample-diagonalization01.rb
require "algebra"
M = SquareMatrix(Rational, 3)
a = M[[1,-1,-1], [-1,1,-1], [2,1,-1]]
puts "A = "; a.display; puts
#A =
# 1, -1, -1
# -1, 1, -1
# 2, 1, -1
e = a.diagonalize
puts "Charactoristic Poly.: #{e.chpoly} => #{e.facts}";puts
#Charactoristic Poly.: t^3 - t^2 + t - 6 => (t - 2)(t^2 + t + 3)
puts "Algebraic Numbers:"
e.roots.each do |po, rs|
puts "#{rs.join(', ')} : roots of #{po} == 0"
end; puts
#Algebraic Numbers:
#a, -a - 1 : roots of t^2 + t + 3 == 0
puts "EigenSpaces: "
e.evalues.uniq.each do |ev|
puts "W_{#{ev}} = <#{e.espaces[ev].join(', ')}>"
end; puts
#EigenSpaces:
#W_{2} = <[4, -5, 1]>
#W_{a} = <[1/3a + 1/3, 1/3a + 1/3, 1]>
#W_{-a - 1} = <[-1/3a, -1/3a, 1]>
puts "Trans. Matrix:"
puts "P ="
e.tmatrix.display; puts
puts "P^-1 * A * P = "; (e.tmatrix.inverse * a * e.tmatrix).display; puts
#P =
# 4, 1/3a + 1/3, -1/3a
# -5, 1/3a + 1/3, -1/3a
# 1, 1, 1
#
#P^-1 * A * P =
# 2, 0, 0
# 0, a, 0
# 0, 0, -a - 1</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-23" id="label-23">sñÌPöqðßé</a></h3><!-- RDLabel: "sñÌPöqðßé" -->
<pre># sample-elementary-divisor01.rb
require "algebra"
M = SquareMatrix(Rational, 4)
a = M[
[2, 0, 0, 0],
[0, 2, 0, 0],
[0, 0, 2, 0],
[5, 0, 0, 2]
]
P = Polynomial(Rational, "x")
MP = SquareMatrix(P, 4)
ac = a._char_matrix(MP)
ac.display; puts #=>
#x - 2, 0, 0, 0
# 0, x - 2, 0, 0
# 0, 0, x - 2, 0
# -5, 0, 0, x - 2
p ac.elementary_divisor #=> [1, x - 2, x - 2, x^2 - 4x + 4]
require "algebra/matrix-algebra-triplet"
at = ac.to_triplet.e_diagonalize
at.body.display; puts #=>
# 1, 0, 0, 0
# 0, x - 2, 0, 0
# 0, 0, x - 2, 0
# 0, 0, 0, x^2 - 4x + 4
at.left.display; puts #=>
# 0, 0, 0, -1/5
# 0, 1, 0, 0
# 0, 0, 1, 0
# 5, 0, 0, x - 2
at.right.display; puts #=>
# 1, 0, 0, 1/5x - 2/5
# 0, 1, 0, 0
# 0, 0, 1, 0
# 0, 0, 0, 1
p at.left * ac * at.right == at.body #=> true</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-24" id="label-24">sñÌ Jordan W`ðßé</a></h3><!-- RDLabel: "sñÌ Jordan W`ðßé" -->
<pre># sample-jordan-form01.rb
require "algebra"
M4 = SquareMatrix(Rational, 4)
m = M4[
[-1, 1, 2, -1],
[-5, 3, 4, -2],
[3, -1, 0, 1],
[5, -2, -2, 3]
]
m.jordan_form.display; #=>
# 2, 0, 0, 0
# 0, 1, 1, 0
# 0, 0, 1, 1
# 0, 0, 0, 1
puts
#-----------------------------------
m = M4[
[3, 1, -1, 1],
[-3, -1, 3, -1],
[-2, -2, 0, 0],
[0, 0, -4, 2]
]
jf, pt, qt, field, modulus = m.jordan_form_info
p modulus #=> [a^2 + 4]
jf.display; puts #=>
# 2, 1, 0, 0
# 0, 2, 0, 0
# 0, 0, a, 0
# 0, 0, 0, -a
m = m.convert_to(jf.class)
p jf == pt * m * qt #=> true
#-----------------------------------
m = M4[
[-1, 1, 2, -1],
[-5, 3, 4, -2],
[3, -1, 0, 1],
[5, -2, -2, 0]
]
jf, pt, qt, field, modulus = m.jordan_form_info
p modulus #=> [a^3 + 3a - 1, b^2 + ab + a^2 + 3]
jf.display; puts #=>
# 2, 0, 0, 0
# 0, a, 0, 0
# 0, 0, b, 0
# 0, 0, 0, -b - a
m = m.convert_to(jf.class)
p jf == pt * m * qt #=> true</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-25" id="label-25">Cayley-Hamilton ÌèÌi³Ìjؾ</a></h3><!-- RDLabel: "Cayley-Hamilton ÌèÌi³Ìjؾ" -->
<pre># sample-cayleyhamilton01.rb
require "algebra"
n = 4
R = MPolynomial(Integer)
MR = SquareMatrix(R, n)
m = MR.matrix{|i, j| R.var("x#{i}#{j}") }
Rx = Polynomial(R, "x")
ch = m.char_polynomial(Rx)
p ch.evaluate(m) #=> 0</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-26" id="label-26">Ouiîêð³ÌîêÅ\»·é</a></h2><!-- RDLabel: "Ouiîêð³ÌîêÅ\»·é" -->
<pre># sample-groebner02.rb
require "algebra"
P = MPolynomial(Rational)
x, y, z = P.vars "xyz"
f1 = x**2 + y**2 + z**2 -1
f2 = x**2 + z**2 - y
f3 = x - z
coeff, basis = Groebner.basis_coeff([f1, f2, f3])
basis.each_with_index do |b, i|
p [coeff[i].inner_product([f1, f2, f3]), b]
p coeff[i].inner_product([f1, f2, f3]) == b #=> true
end</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-27" id="label-27">CÓÌîêÅÁ½¤Æ]èðßéi]èOÉÓ¡ª éj</a></h2><!-- RDLabel: "CÓÌîêÅÁ½¤Æ]èðßéi]èOÉÓ¡ª éj" -->
<pre># sample-groebner03.rb
require "algebra"
F5 = ResidueClassRing(Integer, 2)
F = AlgebraicExtensionField(F5, "a") {|a| a**3 + a + 1}
a = F.var
P = MPolynomial(F)
x, y, z = P.vars("xyz")
f1 = x + y**2 + z**2 - 1
f2 = x**2 + z**2 - y * a
f3 = x - z - a
f = x**3 + y**3 + z**3
q, r = f.divmod_s(f1, f2, f3)
p f == q.inner_product([f1, f2, f3]) + r #=> true</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-28" id="label-28">öªð</a></h2><!-- RDLabel: "öªð" -->
<h3><a name="label-29" id="label-29">®W½®Ìöªð</a></h3><!-- RDLabel: "®W½®Ìöªð" -->
<pre># sample-factorize01.rb
require "algebra"
P = Polynomial(Integer, "x")
x = P.var
f = 8*x**7 - 20*x**6 + 6*x**5 - 11*x**4 + 44*x**3 - 9*x**2 - 27
p f.factorize #=> (2x - 3)^3(x^2 + x + 1)^2</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-30" id="label-30">Zp W½®Ìöªð</a></h3><!-- RDLabel: "Zp W½®Ìöªð" -->
<pre># sample-factorize02.rb
require "algebra"
Z7 = ResidueClassRing(Integer, 7)
P = Polynomial(Z7, "x")
x = P.var
f = 8*x**7 - 20*x**6 + 6*x**5 - 11*x**4 + 44*x**3 - 9*x**2 - 27
p f.factorize #=> (x + 5)^2(x + 3)^2(x + 2)^3</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-31" id="label-31">LÌãgåã̽®Ìöªð</a></h3><!-- RDLabel: "LÌãgåã̽®Ìöªð" -->
<pre># sample-factorize03.rb
require "algebra"
A = AlgebraicExtensionField(Rational, "a") {|a| a**2 + a + 1}
a = A.var
P = Polynomial(A, "x")
x = P.var
f = x**4 + (2*a + 1)*x**3 + 3*a*x**2 + (-3*a - 5)*x - a + 1
p f.factorize #=> (x + a)^3(x - a + 1)</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-32" id="label-32">LÌãgåÌãgåã̽®Ìöªð</a></h3><!-- RDLabel: "LÌãgåÌãgåã̽®Ìöªð" -->
<pre># sample-factorize04.rb
require "algebra"
A = AlgebraicExtensionField(Rational, "a") {|a| a**2 - 2}
B = AlgebraicExtensionField(A, "b"){|b| b**2 + 1}
P = Polynomial(B, "x")
x = P.var
f = x**4 + 1
p f.factorize
#=> (x - 1/2ab - 1/2a)(x + 1/2ab - 1/2a)(x + 1/2ab + 1/2a)(x - 1/2ab + 1/2a)</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-33" id="label-33">x^4 + 10x^2 + 1 Ìöªð</a></h3><!-- RDLabel: "x^4 + 10x^2 + 1 Ìöªð" -->
<pre># sample-factorize05.rb
require "algebra"
def show(f, mod = 0)
if mod > 0
zp = ResidueClassRing(Integer, mod)
pzp = Polynomial(zp, f.variable)
f = f.convert_to(pzp)
end
fact = f.factorize
printf "mod %2d: %-15s => %s\n", mod, f, fact
end
Px = Polynomial(Integer, "x")
x = Px.var
f = x**4 + 10*x**2 + 1
#f = x**4 - 10*x**2 + 1
show(f)
Primes.new.each do |mod|
break if mod > 100
show(f, mod)
end
#mod 0: x^4 + 10x^2 + 1 => x^4 + 10x^2 + 1
#mod 2: x^4 + 1 => (x + 1)^4
#mod 3: x^4 + x^2 + 1 => (x + 2)^2(x + 1)^2
#mod 5: x^4 + 1 => (x^2 + 3)(x^2 + 2)
#mod 7: x^4 + 3x^2 + 1 => (x^2 + 4x + 6)(x^2 + 3x + 6)
#mod 11: x^4 - x^2 + 1 => (x^2 + 5x + 1)(x^2 + 6x + 1)
#mod 13: x^4 + 10x^2 + 1 => (x^2 - x + 12)(x^2 + x + 12)
#mod 17: x^4 + 10x^2 + 1 => (x^2 + 3x + 1)(x^2 + 14x + 1)
#mod 19: x^4 + 10x^2 + 1 => (x + 17)(x + 10)(x + 9)(x + 2)
#mod 23: x^4 + 10x^2 + 1 => (x^2 + 6)(x^2 + 4)
#mod 29: x^4 + 10x^2 + 1 => (x^2 + 21)(x^2 + 18)
#mod 31: x^4 + 10x^2 + 1 => (x^2 + 22x + 30)(x^2 + 9x + 30)
#mod 37: x^4 + 10x^2 + 1 => (x^2 + 32x + 36)(x^2 + 5x + 36)
#mod 41: x^4 + 10x^2 + 1 => (x^2 + 19x + 1)(x^2 + 22x + 1)
#mod 43: x^4 + 10x^2 + 1 => (x + 40)(x + 29)(x + 14)(x + 3)
#mod 47: x^4 + 10x^2 + 1 => (x^2 + 32)(x^2 + 25)
#mod 53: x^4 + 10x^2 + 1 => (x^2 + 41)(x^2 + 22)
#mod 59: x^4 + 10x^2 + 1 => (x^2 + 13x + 1)(x^2 + 46x + 1)
#mod 61: x^4 + 10x^2 + 1 => (x^2 + 54x + 60)(x^2 + 7x + 60)
#mod 67: x^4 + 10x^2 + 1 => (x + 55)(x + 39)(x + 28)(x + 12)
#mod 71: x^4 + 10x^2 + 1 => (x^2 + 43)(x^2 + 38)
#mod 73: x^4 + 10x^2 + 1 => (x + 68)(x + 44)(x + 29)(x + 5)
#mod 79: x^4 + 10x^2 + 1 => (x^2 + 64x + 78)(x^2 + 15x + 78)
#mod 83: x^4 + 10x^2 + 1 => (x^2 + 18x + 1)(x^2 + 65x + 1)
#mod 89: x^4 + 10x^2 + 1 => (x^2 + 9x + 1)(x^2 + 80x + 1)
#mod 97: x^4 + 10x^2 + 1 => (x + 88)(x + 54)(x + 43)(x + 9)</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-34" id="label-34">®ALW½Ï½®Ìöªð</a></h3><!-- RDLabel: "®ALW½Ï½®Ìöªð" -->
<pre># sample-m-factorize01.rb
require "algebra"
P = MPolynomial(Integer)
x, y, z = P.vars("xyz")
f = x**3 + y**3 + z**3 - 3*x*y*z
p f.factorize #=> (x + y + z)(x^2 - xy - xz + y^2 - yz + z^2)
PQ = MPolynomial(Rational)
x, y, z = PQ.vars("xyz")
f = x**3 + y**3/8 + z**3 - 3*x*y*z/2
p f.factorize #=> (1/8)(2x + y + 2z)(4x^2 - 2xy - 4xz + y^2 - 2yz + 4z^2)</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-35" id="label-35">Zp W½Ï½®Ìöªð</a></h3><!-- RDLabel: "Zp W½Ï½®Ìöªð" -->
<pre># sample-m-factorize02.rb
require "algebra"
Z7 = ResidueClassRing(Integer, 7)
P = MPolynomial(Z7)
x, y, z = P.vars("xyz")
f = x**3 + y**3 + z**3 - 3*x*y*z
p f.factorize #=> (x + 4y + 2z)(x + 2y + 4z)(x + y + z)</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-36" id="label-36">ãûö®</a></h2><!-- RDLabel: "ãûö®" -->
<h3><a name="label-37" id="label-37">Ŭ½®</a></h3><!-- RDLabel: "Ŭ½®" -->
<pre># sample-algebraic-equation01.rb
require "algebra"
PQ = MPolynomial(Rational)
a, b, c = PQ.vars("abc")
p AlgebraicEquation.minimal_polynomial(a + b + c, a**2-2, b**2-3, c**2-5)
#=> x^8 - 40x^6 + 352x^4 - 960x^2 + 576</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-38" id="label-38">ŬªðÌ</a></h3><!-- RDLabel: "ŬªðÌ" -->
<pre># sample-splitting-field01.rb
require "algebra"
PQ = Polynomial(Rational, "x")
x = PQ.var
f = x**4 + 2
p f #=> x^4 + 2
field, modulus, facts = f.decompose
p modulus #=> [a^4 + 2, b^2 + a^2]
p facts #=> (x - a)(x + a)(x - b)(x + b)
fp = Polynomial(field, "x")
x = fp.var
facts = Factors.new(facts.collect{|g, n| [g.evaluate(x), n]})
p facts.pi == f.convert_to(fp) #=> true</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-39" id="label-39">½®ÌKAQ</a></h3><!-- RDLabel: "½®ÌKAQ" -->
<pre># sample-galois-group01.rb
require "algebra/rational"
require "algebra/polynomial"
P = Algebra.Polynomial(Rational, "x")
x = P.var
(x**3 - 3*x + 1).galois_group.each do |g|
p g
end
#=> [0, 1, 2]
# [1, 2, 0]
# [2, 0, 1]]
(x**3 - x + 1).galois_group.each do |g|
p g
end
#=> [0, 1, 2]
# [1, 0, 2]
# [2, 0, 1]
# [0, 2, 1]
# [1, 2, 0]
# [2, 1, 0]</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-40" id="label-40">ô½</a></h2><!-- RDLabel: "ô½" -->
<h3><a name="label-41" id="label-41">dS̶Ý</a></h3><!-- RDLabel: "dS̶Ý" -->
<pre># sample-geometry01.rb
require 'algebra'
R = MPolynomial(Rational)
x,y,a1,a2,b1,b2,c1,c2 = R.vars('xya1a2b1b2c1c2')
V = Vector(R, 2)
X, A, B, C = V[x,y], V[a1,a2], V[b1,b2], V[c1,c2]
D = (B + C) /2
E = (C + A) /2
F = (A + B) /2
def line(p1, p2, p3)
SquareMatrix.det([[1, *p1], [1, *p2], [1, *p3]])
end
l1 = line(X, A, D)
l2 = line(X, B, E)
l3 = line(X, C, F)
s = line(A, B, C)
g = Groebner.basis [l1, l2, l3, s-1] #s-1 means non degeneracy
g.each_with_index do |f, i|
p f
end
#x - 1/3a1 - 1/3b1 - 1/3c1
#y - 1/3a2 - 1/3b2 - 1/3c2
#a1b2 - a1c2 - a2b1 + a2c1 + b1c2 - b2c1 - 1</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-42" id="label-42">OS̶Ý</a></h3><!-- RDLabel: "OS̶Ý" -->
<pre># sample-geometry02.rb
require 'algebra'
R = MPolynomial(Rational)
x,y,a1,a2,b1,b2,c1,c2 = R.vars('xya1a2b1b2c1c2')
V = Vector(R, 2)
X, A, B, C = V[x,y], V[a1,a2], V[b1,b2], V[c1,c2]
def line(p1, p2, p3)
SquareMatrix.det([[1, *p1], [1, *p2], [1, *p3]])
end
def vline(p1, p2, p3)
(p1-p2).norm2 - (p1-p3).norm2
end
l1 = vline(X, A, B)
l2 = vline(X, B, C)
l3 = vline(X, C, A)
s = line(A, B, C)
g = Groebner.basis [l1, l2, l3, s-1] #s-1 means non degeneracy
g.each do |f|
p f
end
#x - 1/2a1a2b1 + 1/2a1a2c1 + 1/2a1b1c2 - 1/2a1c1c2 - 1/2a1 - 1/2a2^2b2 + 1/2a2^2c2 + 1/2a2b1^2 - 1/2a2b1c1 + 1/2a2b2^2 - 1/2a2c2^2 - 1/2b1^2c2 + 1/2b1c1c2 - 1/2b2^2c2 + 1/2b2c2^2 - 1/2c1
#y + 1/2a1^2b1 - 1/2a1^2c1 - 1/2a1b1^2 + 1/2a1c1^2 + 1/2a2^2b1 - 1/2a2^2c1 - 1/2a2b1b2 - 1/2a2b1c2 + 1/2a2b2c1 + 1/2a2c1c2 + 1/2b1^2c1 + 1/2b1b2c2 - 1/2b1c1^2 -1/2b2c1c2 - 1/2b2 - 1/2c2
#a1b2 - a1c2 - a2b1 + a2c1 + b1c2 - b2c1 - 1</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-43" id="label-43">S̶Ý</a></h3><!-- RDLabel: "S̶Ý" -->
<pre># sample-geometry04.rb
require 'algebra'
R = MPolynomial(Rational)
x,y,a1,a2,b1,b2,c1,c2 = R.vars('xya1a2b1b2c1c2')
V = Vector(R, 2)
X, A, B, C = V[x,y], V[a1,a2], V[b1,b2], V[c1,c2]
def perpendicular(p0, p1, p2, p3)
(p0-p1).inner_product(p2-p3)
end
def line(p1, p2, p3)
SquareMatrix.det([[1, *p1], [1, *p2], [1, *p3]])
end
l1 = perpendicular(X, A, B, C)
l2 = perpendicular(X, B, C, A)
l3 = perpendicular(X, C, A, B)
s = line(A, B, C)
g = Groebner.basis [l1, l2, l3, s-1] #s-1 means non degeneracy
g.each do |f|
p f
end
#x + a1a2b1 - a1a2c1 - a1b1c2 + a1c1c2 + a2^2b2 - a2^2c2 - a2b1^2 + a2b1c1 - a2b2^2 + a2c2^2 + b1^2c2 - b1c1c2 - b1 + b2^2c2 - b2c2^2
#y - a1^2b1 + a1^2c1 + a1b1^2 - a1c1^2 - a2^2b1 + a2^2c1 + a2b1b2 + a2b1c2 - a2b2c1 - a2c1c2 - a2 - b1^2c1 - b1b2c2 + b1c1^2 + b2c1c2
#a1b2 - a1c2 - a2b1 + a2c1 + b1c2 - b2c1 - 1</pre>
<p><a href="#label-1">_</a></p>
<h3><a name="label-44" id="label-44">4 ÂÌÊÏ</a></h3><!-- RDLabel: "4 ÂÌÊÏ" -->
<p>see <a href="http://www1.odn.ne.jp/drinkcat/topic/column/quest/quest_2/quest_2.html"><URL:http://www1.odn.ne.jp/drinkcat/topic/column/quest/quest_2/quest_2.html></a> Question 3.</p>
<pre># sample-geometry07.rb
require "algebra"
R = MPolynomial(Rational)
m, b, a = R.vars("mba")
K = LocalizedRing(R)
a0, b0, m0 = K[a], K[b], K[m]
M = SquareMatrix(K, 3)
l0, l1, l2 = M[[0, 1, 0], [1, 1, -1], [1, 0, 0]]
m4 = M[[a0, 1, -a0], [1, b0, -b0], [m0, -1, 0]]
m40 = m4.dup; m40.set_row(0, l0)
m41 = m4.dup; m41.set_row(1, l1)
m42 = m4.dup; m42.set_row(2, l2)
def mdet(m, i)
i = i % 3
m.minor(i, 2).determinant * (-1) ** i
end
def tris(m, i)
pts = [0, 1, 2] - [i]
(m.determinant)**2 / mdet(m, pts[0]) / mdet(m, pts[1])
end
u0 = (tris(m4, 0) - tris(m40, 0)).numerator
u1 = (tris(m4, 1) - tris(m41, 1)).numerator
u2 = (tris(m4, 2) - tris(m42, 2)).numerator
puts [u0, u1, u2]
puts
[u0, u1, u2].each do |um|
p um.factorize
end
puts
x = u0 / a / (m*b+1)
y = u1 / (m+a) / (b-1)
z = u2 / (-b*a+1)
p x
p y
p z
puts
gb = Groebner.basis([x, y, z])
puts gb
puts
gb.each do |v|
p v.factorize
end
#(-1)(-mb + m + ba^3 + ba^2 - ba - a^2)
#(-1)(-ma + m + ba^2 - a^2)
#(-1)(b + a - 1)(-ba + 1)(a)
#(-1)(-ba + 1)(a)(a^2 + a - 1)
# => a = -1/2 + \sqrt{5}/2</pre>
<p><a href="#label-1">_</a></p>
<h2><a name="label-45" id="label-45">ðÍ</a></h2><!-- RDLabel: "ðÍ" -->
<h3><a name="label-46" id="label-46">OW
Ìæ@</a></h3><!-- RDLabel: "OW
Ìæ@" -->
<pre># sample-lagrange-multiplier01.rb
require 'algebra'
P = MPolynomial(Rational)
t, x, y, z = P.vars('txyz')
f = x**3+2*x*y*z - z**2
g = x**2 + y**2 + z**2 - 1
fx = f.derivate(x)
fy = f.derivate(y)
fz = f.derivate(z)
gx = g.derivate(x)
gy = g.derivate(y)
gz = g.derivate(z)
F = [fx - t * gx, fy - t * gy, fz - t * gz, g]
Groebner.basis(F).each do |h|
p h.factorize
end
#(1/7670)(7670t - 11505x - 11505yz - 335232z^6 + 477321z^4 - 134419z^2)
#x^2 + y^2 + z^2 - 1
#(1/3835)(3835xy - 19584z^5 + 25987z^3 - 6403z)
#(1/3835)(3835x + 3835yz - 1152z^4 - 1404z^2 + 2556)(z)
#(1/3835)(3835y^3 + 3835yz^2 - 3835y - 9216z^5 + 11778z^3 - 2562z)
#(1/3835)(3835y^2 - 6912z^4 + 10751z^2 - 3839)(z)
#(1/118)(118y - 1152z^3 + 453z)(z)(z - 1)(z + 1)
#(1/1152)(z)(z - 1)(3z - 2)(3z + 2)(z + 1)(128z^2 - 11)</pre>
<p><a href="#label-1">_</a></p>
</body>
</html>
| rubyworks/stick | work/consider/algebra-0.72/doc-ja/samples-ja.html | HTML | mit | 27,092 |
<!doctype html>
<html class="theme-next pisces use-motion" lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0" />
<meta name="description" content="Where there is a will, there is a way.">
<meta property="og:type" content="website">
<meta property="og:title" content="Mr7Cat">
<meta property="og:url" content="http://mr7cat.com/tags/ReactNative/index.html">
<meta property="og:site_name" content="Mr7Cat">
<meta property="og:description" content="Where there is a will, there is a way.">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Mr7Cat">
<meta name="twitter:description" content="Where there is a will, there is a way.">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://mr7cat.com/tags/ReactNative/"/>
<title> Tag: ReactNative | Mr7Cat </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<div class="container one-collumn sidebar-position-left ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Mr7Cat</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
Home
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
About
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
Archives
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
Tags
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-collapse">
<div class="collection-title">
<h2 >
ReactNative
<small>Tag</small>
</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/06/02/Redux/" itemprop="url">
<span itemprop="name">Redux</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-06-02T14:20:43+08:00"
content="2017-06-02" >
06-02
</time>
</div>
</header>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/03/24/ReactNative/" itemprop="url">
<span itemprop="name">React Native</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2017-03-24T10:30:30+08:00"
content="2017-03-24" >
03-24
</time>
</div>
</header>
</article>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="https://avatars3.githubusercontent.com/u/1405850?v=3&u=b02f4267aea6f9d517c0c8cfb0f357f3df02112c&s=140"
alt="Will" />
<p class="site-author-name" itemprop="name">Will</p>
<p class="site-description motion-element" itemprop="description">Where there is a will, there is a way.</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">15</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">4</span>
<span class="site-state-item-name">tags</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
<div class="cc-license motion-element" itemprop="license">
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" class="cc-opacity" target="_blank">
<img src="/images/cc-by-nc-sa.svg" alt="Creative Commons" />
</a>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">Will</span>
</div>
<div class="powered-by">
Powered by <a class="theme-link" href="https://hexo.io">Hexo</a>
</div>
<div class="theme-info">
Theme -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Pisces
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script src="https://cdn1.lncld.net/static/js/av-core-mini-0.6.1.js"></script>
<script>AV.initialize("WGTaLHJXovcKixHvuzFdYoPy-gzGzoHsz", "c0dcQAYhRg9RCUGWtEJKJ1mN");</script>
<script>
function showTime(Counter) {
var query = new AV.Query(Counter);
var entries = [];
var $visitors = $(".leancloud_visitors");
$visitors.each(function () {
entries.push( $(this).attr("id").trim() );
});
query.containedIn('url', entries);
query.find()
.done(function (results) {
var COUNT_CONTAINER_REF = '.leancloud-visitors-count';
if (results.length === 0) {
$visitors.find(COUNT_CONTAINER_REF).text(0);
return;
}
for (var i = 0; i < results.length; i++) {
var item = results[i];
var url = item.get('url');
var time = item.get('time');
var element = document.getElementById(url);
$(element).find(COUNT_CONTAINER_REF).text(time);
}
for(var i = 0; i < entries.length; i++) {
var url = entries[i];
var element = document.getElementById(url);
var countSpan = $(element).find(COUNT_CONTAINER_REF);
if( countSpan.text() == '') {
countSpan.text(0);
}
}
})
.fail(function (object, error) {
console.log("Error: " + error.code + " " + error.message);
});
}
function addCount(Counter) {
var $visitors = $(".leancloud_visitors");
var url = $visitors.attr('id').trim();
var title = $visitors.attr('data-flag-title').trim();
var query = new AV.Query(Counter);
query.equalTo("url", url);
query.find({
success: function(results) {
if (results.length > 0) {
var counter = results[0];
counter.fetchWhenSave(true);
counter.increment("time");
counter.save(null, {
success: function(counter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(counter.get('time'));
},
error: function(counter, error) {
console.log('Failed to save Visitor num, with error message: ' + error.message);
}
});
} else {
var newcounter = new Counter();
/* Set ACL */
var acl = new AV.ACL();
acl.setPublicReadAccess(true);
acl.setPublicWriteAccess(true);
newcounter.setACL(acl);
/* End Set ACL */
newcounter.set("title", title);
newcounter.set("url", url);
newcounter.set("time", 1);
newcounter.save(null, {
success: function(newcounter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(newcounter.get('time'));
},
error: function(newcounter, error) {
console.log('Failed to create');
}
});
}
},
error: function(error) {
console.log('Error:' + error.code + " " + error.message);
}
});
}
$(function() {
var Counter = AV.Object.extend("Counter");
if ($('.leancloud_visitors').length == 1) {
addCount(Counter);
} else if ($('.post-title-link').length > 1) {
showTime(Counter);
}
});
</script>
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</body>
</html>
| Mr7Cat/Mr7Cat.github.io | tags/ReactNative/index.html | HTML | mit | 14,215 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ META.project_short_title }} | The Texas Tribune</title>
{% block styles %}
<link rel="stylesheet" href="//api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.css">
<link rel="stylesheet" href="styles/main.css">
{% endblock %}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@texastribune">
<meta name="twitter:creator" content="@rdmurphy">
<meta property="og:url" content="http://{{ SITE.s3_bucket }}/{{ SITE.slug }}/">
<meta property="og:title" content="{{ META.project_title }}">
<meta property="og:type" content="article">
<meta property="og:description" content="{{ META.project_intro_clean }}">
<meta property="og:site_name" content="The Texas Tribune">
<meta property="og:image" content="http://{{ SITE.s3_bucket }}/{{ SITE.slug }}/assets/images/tedtracker-leadart.jpg">
<meta property="fb:app_id" content="154122474650943">
<script src="scripts/bundle.js" async defer></script>
</head>
<body>
<header class="masthead">
<h2 class="header-logo">
<a href="http://www.texastribune.org">
<img class="logo" src="assets/images/trib-logo-white-500x55.png" alt="The Texas Tribune">
</a>
</h2>
<button id="menu-button" class="menu-button">Menu</button>
</header>
<nav id="menu-nav" class="menu-nav">
<ul>
<li><a href="http://www.texastribune.org/">Front Page</a></li>
<li><a href="http://www.texastribune.org/2016/">2016 Coverage</a></li>
<li><a href="http://www.texastribune.org/directory/">Directory</a></li>
<li><a href="http://www.texastribune.org/events/">Events</a></li>
<li><a href="http://www.texastribune.org/subscribe/">Newsletters</a></li>
</ul>
</nav>
{% include 'templates/includes/_ad_atf.html' %}
<main class="container" role="main">
{% block content %}{% endblock %}
</main>
{% include 'templates/includes/_ad_btf.html' %}
<footer class="footer">
<div class="container">
<nav>
<ul>
<li class="copywrite">© 2015 <a href="http://www.texastribune.org/">The Texas Tribune</a></li>
</ul>
</nav>
<nav class="last-nav">
<ul>
<li><a href="http://www.texastribune.org/about/">About Us</a></li>
<li><a href="http://www.texastribune.org/contact/">Contact Us</a></li>
<li><a href="http://www.texastribune.org/support-us/donors-and-members/">Who Funds Us?</a></li>
<li><a href="http://www.texastribune.org/terms-of-service/">Terms of Service</a></li>
<li><a href="http://www.texastribune.org/ethics/">Code of Ethics</a></li>
<li><a href="http://www.texastribune.org/privacy/">Privacy Policy</a></li>
<li class="donate"><a href="https://www.texastribune.org/join/">Donate</a></li>
</ul>
</nav>
</div>
</footer>
{% block script %}
{% endblock %}
</body>
</html>
| texastribune/tedtracker | app/templates/_base.html | HTML | mit | 2,998 |
using Microsoft.Xna.Framework;
namespace XmasHell.FSM
{
public struct FSMStateData<T>
{
public FSM<T> Machine { get; internal set; }
public FSMBehaviour<T> Behaviour { get; internal set; }
public T State { get; internal set; }
public GameTime GameTime { get; internal set; }
}
}
| Noxalus/Xmas-Hell | Xmas-Hell/Xmas-Hell-Core/FSM/FSMStateData.cs | C# | mit | 315 |
// --------------------------------------------------------------------------------------------
#region // Copyright (c) 2020, SIL International. All Rights Reserved.
// <copyright from='2011' to='2020' company='SIL International'>
// Copyright (c) 2020, SIL International. All Rights Reserved.
//
// Distributable under the terms of the MIT License (https://sil.mit-license.org/)
// </copyright>
#endregion
// --------------------------------------------------------------------------------------------
using System.Collections.Generic;
using Paratext.Data;
using SIL.Scripture;
namespace HearThis.Script
{
/// <summary>
/// This exposes the things we care about out of ScrText, providing an
/// anti-corruption layer between Paratext and HearThis and allowing us to test the code
/// that calls Paratext.
/// </summary>
public interface IScripture : IScrProjectSettings
{
ScrVers Versification { get; }
List<UsfmToken> GetUsfmTokens(VerseRef verseRef);
IScrParserState CreateScrParserState(VerseRef verseRef);
string DefaultFont { get; }
bool RightToLeft { get; }
string EthnologueCode { get; }
string Name { get; }
IStyleInfoProvider StyleInfo { get; }
}
/// <summary>
/// This exposes the things we care about out of ScrText, providing an
/// anti-corruption layer between Paratext and HearThis and allowing us to test the code
/// that calls Paratext.
/// </summary>
public interface IScrProjectSettings
{
string FirstLevelStartQuotationMark { get; }
string FirstLevelEndQuotationMark { get; }
string SecondLevelStartQuotationMark { get; }
string SecondLevelEndQuotationMark { get; }
string ThirdLevelStartQuotationMark { get; }
string ThirdLevelEndQuotationMark { get; }
/// <summary>
/// Gets whether first-level quotation marks are used unambiguously to indicate first-level quotations.
/// If the same marks are used for 2nd or 3rd level quotations, then this should return false.
/// </summary>
bool FirstLevelQuotesAreUnique { get; }
}
}
| sillsdev/hearthis | src/HearThis/Script/IScripture.cs | C# | mit | 2,007 |
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>my-angular-cli-app documentation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="../images/favicon.ico">
<link rel="stylesheet" href="../styles/style.css">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top visible-xs">
<a href="../" class="navbar-brand">my-angular-cli-app documentation</a>
<button type="button" class="btn btn-default btn-menu fa fa-bars" id="btn-menu"></button>
</div>
<div class="xs-menu menu" id="mobile-menu">
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search">
</div>
<nav>
<ul class="list">
<li class="title">
<a href="../index.html">my-angular-cli-app documentation</a>
</li>
<li class="divider"></li>
<li class="chapter">
<a data-type="chapter-link" href="../index.html"><span class="fa fa-home"></span>Getting started</a>
<ul class="links">
<li class="link">
<a
href="../overview.html"
href="../overview.html"
>
<span class="fa fa-th"></span>Overview
</a>
</li>
<li class="link">
<a href="../index.html" ><span class="fa fa-file-text-o"></span>README</a>
</li>
<li class="link">
<a href="./license.html"
>
<span class="fa fa-file-text-o"></span>LICENSE
</a>
</li>
</ul>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../modules.html" >
<div class="menu-toggler linked" data-toggle="collapse"
data-target="#xs-modules-links"
>
<span class="fa fa-archive"></span>
<span class="link-name">Modules</span>
<span class="fa fa-angle-down"></span>
</div>
</a>
<ul class="links collapse "
id="xs-modules-links"
>
<li class="link">
<a href="../modules/AppModule.html" >AppModule</a>
</li>
<li class="link">
<a href="../modules/AppRoutingModule.html" >AppRoutingModule</a>
</li>
<li class="link">
<a href="../modules/CoreModule.html" >CoreModule</a>
</li>
<li class="link">
<a href="../modules/MyrecipesModule.html" >MyrecipesModule</a>
</li>
<li class="link">
<a href="../modules/RecipesModule.html" >RecipesModule</a>
</li>
<li class="link">
<a href="../modules/RecipesRoutingModule.html" >RecipesRoutingModule</a>
</li>
<li class="link">
<a href="../modules/SharedModule.html" >SharedModule</a>
</li>
<li class="link">
<a href="../modules/SharedRoutingModule.html" >SharedRoutingModule</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-components-links"
>
<span class="fa fa-cogs"></span>
<span>Components</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-components-links"
>
<li class="link">
<a href="../components/AppComponent.html" >AppComponent</a>
</li>
<li class="link">
<a href="../components/FooterComponent.html" >FooterComponent</a>
</li>
<li class="link">
<a href="../components/HeaderComponent.html" >HeaderComponent</a>
</li>
<li class="link">
<a href="../components/HomeComponent.html" >HomeComponent</a>
</li>
<li class="link">
<a href="../components/LoginComponent.html" >LoginComponent</a>
</li>
<li class="link">
<a href="../components/MyrecipesComponent.html" >MyrecipesComponent</a>
</li>
<li class="link">
<a href="../components/NotfoundComponent.html" >NotfoundComponent</a>
</li>
<li class="link">
<a href="../components/RecipeComponent.html" >RecipeComponent</a>
</li>
<li class="link">
<a href="../components/RecipeDetailsComponent.html" >RecipeDetailsComponent</a>
</li>
<li class="link">
<a href="../components/RecipesFavouritesComponent.html" >RecipesFavouritesComponent</a>
</li>
<li class="link">
<a href="../components/RecipesFilteredComponent.html" >RecipesFilteredComponent</a>
</li>
<li class="link">
<a href="../components/RecipesListComponent.html" >RecipesListComponent</a>
</li>
<li class="link">
<a href="../components/SliderComponent.html" >SliderComponent</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-directives-links"
>
<span class="fa fa-code"></span>
<span>Directives</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-directives-links"
>
<li class="link">
<a href="../directives/InputFormatDirective.html" >InputFormatDirective</a>
</li>
<li class="link">
<a href="../directives/InputStringValidationDirective.html" >InputStringValidationDirective</a>
</li>
<li class="link">
<a href="../directives/InputYearValidationDirective.html" data-type="entity-link" class="active" >InputYearValidationDirective</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-classes-links"
>
<span class="fa fa-file-code-o"></span>
<span>Classes</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-classes-links"
>
<li class="link">
<a href="../classes/Recipe.html" >Recipe</a>
</li>
<li class="link">
<a href="../classes/RecipeWithKey.html" >RecipeWithKey</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-injectables-links"
>
<span class="fa fa-long-arrow-down"></span>
<span>Injectables</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-injectables-links"
>
<li class="link">
<a href="../injectables/AuthGuard.html" >AuthGuard</a>
</li>
<li class="link">
<a href="../injectables/AuthService.html" >AuthService</a>
</li>
<li class="link">
<a href="../injectables/RecipeGuardService.html" >RecipeGuardService</a>
</li>
<li class="link">
<a href="../injectables/RecipesResolver.html" >RecipesResolver</a>
</li>
<li class="link">
<a href="../injectables/RecipesService.html" >RecipesService</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-pipes-links"
>
<span class="fa fa-plus"></span>
<span>Pipes</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-pipes-links"
>
<li class="link">
<a href="../pipes/SummaryPipe.html" >SummaryPipe</a>
</li>
<li class="link">
<a href="../pipes/WelcomePipe.html" >WelcomePipe</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#xs-miscellaneous-links"
>
<span class="fa fa-cubes"></span>
<span>Miscellaneous</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="xs-miscellaneous-links"
>
<li class="link">
<a href="../miscellaneous/functions.html" data-type="entity-link" >Functions</a>
</li>
<li class="link">
<a href="../miscellaneous/variables.html" data-type="entity-link" >Variables</a>
</li>
</ul>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../routes.html" ><span class="fa fa-code-fork"></span>Routes</a>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../coverage.html" ><span class="fa fa-tasks"></span>Documentation coverage</a>
</li>
<li class="divider"></li>
<li class="copyright">
Documentation generated using <a href="https://compodoc.github.io/website/" target="_blank">
<img src="..//images/compodoc-vectorise.svg" class="img-responsive">
</a>
</li>
</ul>
</nav>
</div>
<div class="container-fluid main">
<div class="row main">
<div class="hidden-xs menu">
<nav>
<ul class="list">
<li class="title">
<a href="../index.html">my-angular-cli-app documentation</a>
</li>
<li class="divider"></li>
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search">
</div>
<li class="chapter">
<a data-type="chapter-link" href="../index.html"><span class="fa fa-home"></span>Getting started</a>
<ul class="links">
<li class="link">
<a
href="../overview.html"
href="../overview.html"
>
<span class="fa fa-th"></span>Overview
</a>
</li>
<li class="link">
<a href="../index.html" ><span class="fa fa-file-text-o"></span>README</a>
</li>
<li class="link">
<a href="./license.html"
>
<span class="fa fa-file-text-o"></span>LICENSE
</a>
</li>
</ul>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../modules.html" >
<div class="menu-toggler linked" data-toggle="collapse"
data-target="#modules-links"
>
<span class="fa fa-archive"></span>
<span class="link-name">Modules</span>
<span class="fa fa-angle-down"></span>
</div>
</a>
<ul class="links collapse "
id="modules-links"
>
<li class="link">
<a href="../modules/AppModule.html" >AppModule</a>
</li>
<li class="link">
<a href="../modules/AppRoutingModule.html" >AppRoutingModule</a>
</li>
<li class="link">
<a href="../modules/CoreModule.html" >CoreModule</a>
</li>
<li class="link">
<a href="../modules/MyrecipesModule.html" >MyrecipesModule</a>
</li>
<li class="link">
<a href="../modules/RecipesModule.html" >RecipesModule</a>
</li>
<li class="link">
<a href="../modules/RecipesRoutingModule.html" >RecipesRoutingModule</a>
</li>
<li class="link">
<a href="../modules/SharedModule.html" >SharedModule</a>
</li>
<li class="link">
<a href="../modules/SharedRoutingModule.html" >SharedRoutingModule</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#components-links"
>
<span class="fa fa-cogs"></span>
<span>Components</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="components-links"
>
<li class="link">
<a href="../components/AppComponent.html" >AppComponent</a>
</li>
<li class="link">
<a href="../components/FooterComponent.html" >FooterComponent</a>
</li>
<li class="link">
<a href="../components/HeaderComponent.html" >HeaderComponent</a>
</li>
<li class="link">
<a href="../components/HomeComponent.html" >HomeComponent</a>
</li>
<li class="link">
<a href="../components/LoginComponent.html" >LoginComponent</a>
</li>
<li class="link">
<a href="../components/MyrecipesComponent.html" >MyrecipesComponent</a>
</li>
<li class="link">
<a href="../components/NotfoundComponent.html" >NotfoundComponent</a>
</li>
<li class="link">
<a href="../components/RecipeComponent.html" >RecipeComponent</a>
</li>
<li class="link">
<a href="../components/RecipeDetailsComponent.html" >RecipeDetailsComponent</a>
</li>
<li class="link">
<a href="../components/RecipesFavouritesComponent.html" >RecipesFavouritesComponent</a>
</li>
<li class="link">
<a href="../components/RecipesFilteredComponent.html" >RecipesFilteredComponent</a>
</li>
<li class="link">
<a href="../components/RecipesListComponent.html" >RecipesListComponent</a>
</li>
<li class="link">
<a href="../components/SliderComponent.html" >SliderComponent</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#directives-links"
>
<span class="fa fa-code"></span>
<span>Directives</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="directives-links"
>
<li class="link">
<a href="../directives/InputFormatDirective.html" >InputFormatDirective</a>
</li>
<li class="link">
<a href="../directives/InputStringValidationDirective.html" >InputStringValidationDirective</a>
</li>
<li class="link">
<a href="../directives/InputYearValidationDirective.html" data-type="entity-link" class="active" >InputYearValidationDirective</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#classes-links"
>
<span class="fa fa-file-code-o"></span>
<span>Classes</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="classes-links"
>
<li class="link">
<a href="../classes/Recipe.html" >Recipe</a>
</li>
<li class="link">
<a href="../classes/RecipeWithKey.html" >RecipeWithKey</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#injectables-links"
>
<span class="fa fa-long-arrow-down"></span>
<span>Injectables</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="injectables-links"
>
<li class="link">
<a href="../injectables/AuthGuard.html" >AuthGuard</a>
</li>
<li class="link">
<a href="../injectables/AuthService.html" >AuthService</a>
</li>
<li class="link">
<a href="../injectables/RecipeGuardService.html" >RecipeGuardService</a>
</li>
<li class="link">
<a href="../injectables/RecipesResolver.html" >RecipesResolver</a>
</li>
<li class="link">
<a href="../injectables/RecipesService.html" >RecipesService</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#pipes-links"
>
<span class="fa fa-plus"></span>
<span>Pipes</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="pipes-links"
>
<li class="link">
<a href="../pipes/SummaryPipe.html" >SummaryPipe</a>
</li>
<li class="link">
<a href="../pipes/WelcomePipe.html" >WelcomePipe</a>
</li>
</ul>
</li>
<li class="chapter">
<div class="simple menu-toggler" data-toggle="collapse"
data-target="#miscellaneous-links"
>
<span class="fa fa-cubes"></span>
<span>Miscellaneous</span>
<span class="fa fa-angle-down"></span>
</div>
<ul class="links collapse "
id="miscellaneous-links"
>
<li class="link">
<a href="../miscellaneous/functions.html" data-type="entity-link" >Functions</a>
</li>
<li class="link">
<a href="../miscellaneous/variables.html" data-type="entity-link" >Variables</a>
</li>
</ul>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../routes.html" ><span class="fa fa-code-fork"></span>Routes</a>
</li>
<li class="chapter">
<a data-type="chapter-link" href="../coverage.html" ><span class="fa fa-tasks"></span>Documentation coverage</a>
</li>
<li class="divider"></li>
<li class="copyright">
Documentation generated using <a href="https://compodoc.github.io/website/" target="_blank">
<img src="..//images/compodoc-vectorise.svg" class="img-responsive">
</a>
</li>
</ul>
</nav>
</div>
<div class="content directive">
<div class="content-data">
<ol class="breadcrumb">
<li>Directives</li>
<li>InputYearValidationDirective</li>
</ol>
<ul class="nav nav-tabs" role="tablist">
<li class="active">
<a href="#info" id="info-tab" role="tab" data-toggle="tab" data-link="info">Info</a>
</li>
<li>
<a href="#source" role="tab" id="source-tab" data-toggle="tab" data-link="source">Source</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active in" id="info">
<p class="comment">
<h3>File</h3>
</p>
<p class="comment">
<code>src/app/directives/input-year-validation.directive.ts</code>
</p>
<section>
<h3>Metadata</h3>
<table class="table table-sm table-hover">
<tbody>
<tr>
<td class="col-md-3">selector</td>
<td class="col-md-9"><code>[appInputYearValidation]</code></td>
</tr>
</tbody>
</table>
</section>
<section>
<h3 id="index">Index</h3>
<table class="table table-sm table-bordered index-table">
<tbody>
<tr>
<td class="col-md-4">
<h6><b>HostListeners</b></h6>
</td>
</tr>
<tr>
<td class="col-md-4">
<ul class="index-list">
<li>
<a href="#change">change</a>
</li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3 id="constructor">Constructor</h3>
<table class="table table-sm table-bordered">
<tbody>
<tr>
<td class="col-md-4">
<code>constructor(domElement: <a href="https://angular.io/docs/ts/latest/api/core/index/ElementRef-class.html" target="_blank">ElementRef</a>)</code>
</td>
</tr>
<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="6" class="link-to-prism">src/app/directives/input-year-validation.directive.ts:6</a></div>
</td>
</tr>
<tr>
<td class="col-md-4">
<div>
<b>Parameters :</b>
<table class="params">
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td>Optional</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td>domElement</td>
<td>
<code><a href="https://angular.io/docs/ts/latest/api/core/index/ElementRef-class.html" target="_blank" >ElementRef</a></code>
</td>
<td>
</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3>HostListeners</h3> <table class="table table-sm table-bordered">
<tbody>
<tr>
<td class="col-md-4">
<a name="change"></a>
<span class="name"><b> change</b><a href="#change"><span class="fa fa-link"></span></a></span>
</td>
</tr>
<tr>
<td class="col-md-4">
<code>change()</code>
</td>
</tr>
<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="10" class="link-to-prism">src/app/directives/input-year-validation.directive.ts:10</a></div>
</td>
</tr>
</tbody>
</table>
</section>
</div>
<div class="tab-pane fade tab-source-code" id="source">
<pre class="line-numbers"><code class="language-typescript">import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
selector: '[appInputYearValidation]'
})
export class InputYearValidationDirective {
constructor(private domElement: ElementRef) { }
@HostListener('change') onChange() {
const value = +this.domElement.nativeElement.value;
if (!value) {
this.domElement.nativeElement.value = '';
return;
}
if (value < 1900) {
this.domElement.nativeElement.value = '1900';
}
if (value > 2017) {
this.domElement.nativeElement.value = '2017';
}
}
}
</code></pre>
</div>
</div>
</div><div class="search-results">
<div class="has-results">
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
<ul class="search-results-list"></ul>
</div>
<div class="no-results">
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
</div>
</div>
</div>
</div>
</div>
<script src="../js/libs/bootstrap-native.js"></script>
<script src="../js/libs/es6-shim.min.js"></script>
<script src="../js/libs/EventDispatcher.js"></script>
<script src="../js/libs/promise.min.js"></script>
<script src="../js/libs/zepto.min.js"></script>
<script src="../js/compodoc.js"></script>
<script>var COMPODOC_CURRENT_PAGE_DEPTH = 1;</script>
<script src="../js/search/search.js"></script>
<script src="../js/search/lunr.min.js"></script>
<script src="../js/search/search-lunr.js"></script>
<script src="../js/tabs.js"></script>
<script src="../js/menu.js"></script>
<script src="../js/libs/prism.js"></script>
<script src="../js/sourceCode.js"></script>
<script src="../js/search/search_index.js"></script>
</body>
</html>
| Camyul/Angular2Project | documentation/directives/InputYearValidationDirective.html | HTML | mit | 38,723 |
module CdnBacon
VERSION = "0.0.1"
end
| bjedrocha/cdn_bacon | lib/cdn_bacon/version.rb | Ruby | mit | 40 |
## Build
Let's say your project name is Foo.
* cd to Foo.
* `npm run prod`
The command will generate all static files into build folder.
* `npm run start:prod`
You can test the build by run `npm run start:prod`, the command will bring up a node server which servers all static files under build foler.
Visit [http://localhost:5000](http://localhost:5000). If it works well, you'll see the page runs up.
* Deploy.
Put the files under build folder into your web server. | euler-ui/boilerplate | docs/build.md | Markdown | mit | 472 |
---
layout: post
title: "Georgia Tech Baseball: Schedule Preview and Prediction - May"
description: "This is the end of the line, friends. Do the Jackets get over the tourney hump?"
permalink: https://www.fromtherumbleseat.com/2019/2/8/18215049/georgia-tech-baseball-schedule-preview-and-prediction-may-duke-pitt-mercer-westerncarolina-acc-socon
--- | akeaswaran/akeaswaran.github.io | _posts/2019-2-8-georgia-tech-baseball-schedule-preview-and-prediction---may.md | Markdown | mit | 349 |
'use strict';
var eachAsync = require('each-async');
var onetime = require('onetime');
var arrify = require('arrify');
module.exports = function (hostnames, cb) {
cb = onetime(cb);
eachAsync(arrify(hostnames), function (hostname, i, next) {
var img = new Image();
img.onload = function () {
cb(true);
// skip to end
next(new Error());
};
img.onerror = function () {
next();
};
img.src = '//' + hostname + '/favicon.ico?' + Date.now();
}, function () {
cb(false);
});
};
| arthurvr/is-reachable | browser.js | JavaScript | mit | 506 |
<?php
class Ressource extends Thing {
var $name;
var $url;
var $schemaDefinition;
function __construct($url = null) {
if ($url) $this->url = $this->preparePath($url);
}
function preparePath($path) {
$path = str_replace(" ", "+", $path);
return $path;
}
function getFileName() {
if (strpos($this->ressource_url, "/") !== false) {
$slash_explode = explode("/", $this->ressource_url);
return $slash_explode[count($slash_explode) - 1] . ".pdf";
}
return "fuckit";
}
function load($noDownload = false, $enforcedType = null) {
error_reporting(E_ALL & ~E_NOTICE);
$finfo = new finfo(FILEINFO_MIME);
$fio = new FileIO();
if (!$this->is_connected() || $noDownload) {
//$this->content = file_get_contents('data/temp/structure/processing/processed.html');
$this->content = file_get_contents($this->url);
if ($enforcedType) {
$this->Type = $enforcedType;
} else {
$this->Type = $finfo->buffer($this->content);
}
$this->size = strlen($this->content);
if ($this->Type == "application/pdf; charset=binary" || $this->Type == "application/octet-stream; charset=binary") {
//$filetime = $fio->filemtime_remote('../data/temp/structure/processing/processed.html');
$filetime = $fio->filemtime_remote($this->url);
$this->modificationTime = date ("F d Y H:i:s.", $filetime);
}
} else {
$this->content = $fio->loadFile($this->url);
$this->Type = $finfo->buffer($this->content);
if ($this->Type === "text/plain; charset=us-ascii") {
if ($this->isJson($this->content)) {
$this->Type = "application/json; charset=utf-8";
}
}
$this->size = strlen($this->content);
if ($this->Type == "application/pdf; charset=binary" || $this->Type == "application/octet-stream; charset=binary") {
$filetime = $fio->filemtime_remote($this->url);
$this->modificationTime = date ("F d Y H:i:s.", $filetime);
}
}
}
function isJson($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
}
?>
| neuronalysis/engulfing-core | classes/EDI/Ressource.php | PHP | mit | 2,052 |
module Ldaptic
class Error < ::RuntimeError
end
class EntryNotSaved < Error
end
# All server errors are instances of this class. The error message and error
# code can be accessed with <tt>exception.message</tt> and
# <tt>exception.code</tt> respectively.
class ServerError < Error
attr_accessor :code
end
# The module houses all subclasses of Ldaptic::ServerError. The methods
# contained within are for internal use only.
module Errors
#{
# 0=>"Success",
# 1=>"Operations error",
# 2=>"Protocol error",
# 3=>"Time limit exceeded",
# 4=>"Size limit exceeded",
# 5=>"Compare False",
# 6=>"Compare True",
# 7=>"Authentication method not supported"
# 8=>"Strong(er) authentication required",
# 9=>"Partial results and referral received",
# 10=>"Referral",
# 11=>"Administrative limit exceeded",
# 12=>"Critical extension is unavailable",
# 13=>"Confidentiality required",
# 14=>"SASL bind in progress",
# 16=>"No such attribute",
# 17=>"Undefined attribute type",
# 18=>"Inappropriate matching",
# 19=>"Constraint violation",
# 20=>"Type or value exists",
# 21=>"Invalid syntax",
# 32=>"No such object",
# 33=>"Alias problem",
# 34=>"Invalid DN syntax",
# 35=>"Entry is a leaf",
# 36=>"Alias dereferencing problem",
# 47=>"Proxy Authorization Failure",
# 48=>"Inappropriate authentication",
# 49=>"Invalid credentials",
# 50=>"Insufficient access",
# 51=>"Server is busy",
# 52=>"Server is unavailable",
# 53=>"Server is unwilling to perform",
# 54=>"Loop detected",
# 64=>"Naming violation",
# 65=>"Object class violation",
# 66=>"Operation not allowed on non-leaf",
# 67=>"Operation not allowed on RDN",
# 68=>"Already exists",
# 69=>"Cannot modify object class",
# 70=>"Results too large",
# 71=>"Operation affects multiple DSAs",
# 80=>"Internal (implementation specific) error",
# 81=>"Can't contact LDAP server",
# 82=>"Local error",
# 83=>"Encoding error",
# 84=>"Decoding error",
# 85=>"Timed out",
# 86=>"Unknown authentication method",
# 87=>"Bad search filter",
# 88=>"User cancelled operation",
# 89=>"Bad parameter to an ldap routine",
# 90=>"Out of memory",
# 91=>"Connect error",
# 92=>"Not Supported",
# 93=>"Control not found",
# 94=>"No results returned",
# 95=>"More results to return",
# 96=>"Client Loop",
# 97=>"Referral Limit Exceeded",
#}
# Error code 32.
class NoSuchObject < ServerError
end
# Error code 5.
class CompareFalse < ServerError
end
# Error code 6.
class CompareTrue < ServerError
end
EXCEPTIONS = {
32 => NoSuchObject,
5 => CompareFalse,
6 => CompareTrue
}
class << self
# Provides a backtrace minus all files shipped with Ldaptic.
def application_backtrace
dir = File.dirname(File.dirname(__FILE__))
c = caller
c.shift while c.first[0,dir.length] == dir
c
end
# Raise an exception (object only, no strings or classes) with the
# backtrace stripped of all Ldaptic files.
def raise(exception)
exception.set_backtrace(application_backtrace)
Kernel.raise exception
end
def for(code, message = nil) #:nodoc:
message ||= "Unknown error #{code}"
klass = EXCEPTIONS[code] || ServerError
exception = klass.new(message)
exception.code = code
exception
end
# Given an error code and a message, raise an Ldaptic::ServerError unless
# the code is zero. The right subclass is selected automatically if it
# is available.
def raise_unless_zero(code, message = nil)
raise self.for(code, message) unless code.zero?
end
end
end
end
| tpope/ldaptic | lib/ldaptic/errors.rb | Ruby | mit | 3,960 |
package org.broadinstitute.sting.utils.codecs.table;
import org.broad.tribble.Feature;
import org.broad.tribble.readers.LineReader;
import org.broadinstitute.sting.gatk.refdata.ReferenceDependentFeatureCodec;
import org.broadinstitute.sting.utils.GenomeLocParser;
import org.broadinstitute.sting.utils.exceptions.UserException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
/**
* Reads tab deliminated tabular text files
*
* <p>
* <ul>
* <li>Header: must begin with line HEADER or track (for IGV), followed by any number of column names,
* separated by whitespace.</li>
* <li>Comment lines starting with # are ignored</li>
* <li>Each non-header and non-comment line is split into parts by whitespace,
* and these parts are assigned as a map to their corresponding column name in the header.
* Note that the first element (corresponding to the HEADER column) must be a valid genome loc
* such as 1, 1:1 or 1:1-10, which is the position of the Table element on the genome. TableCodec
* requires that there be one value for each column in the header, and no more, on all lines.</li>
* </ul>
* </p>
*
* </p>
*
* <h2>File format example</h2>
* <pre>
* HEADER a b c
* 1:1 1 2 3
* 1:2 4 5 6
* 1:3 7 8 9
* </pre>
*
* @author Mark DePristo
* @since 2009
*/
public class TableCodec implements ReferenceDependentFeatureCodec {
final static protected String delimiterRegex = "\\s+";
final static protected String headerDelimiter = "HEADER";
final static protected String igvHeaderDelimiter = "track";
final static protected String commentDelimiter = "#";
protected ArrayList<String> header = new ArrayList<String>();
/**
* The parser to use when resolving genome-wide locations.
*/
protected GenomeLocParser genomeLocParser;
/**
* Set the parser to use when resolving genetic data.
* @param genomeLocParser The supplied parser.
*/
@Override
public void setGenomeLocParser(GenomeLocParser genomeLocParser) {
this.genomeLocParser = genomeLocParser;
}
@Override
public Feature decodeLoc(String line) {
return decode(line);
}
@Override
public Feature decode(String line) {
if (line.startsWith(headerDelimiter) || line.startsWith(commentDelimiter) || line.startsWith(igvHeaderDelimiter))
return null;
String[] split = line.split(delimiterRegex);
if (split.length < 1)
throw new IllegalArgumentException("TableCodec line = " + line + " doesn't appear to be a valid table format");
return new TableFeature(genomeLocParser.parseGenomeLoc(split[0]),Arrays.asList(split),header);
}
@Override
public Class<TableFeature> getFeatureType() {
return TableFeature.class;
}
@Override
public Object readHeader(LineReader reader) {
String line = "";
try {
boolean isFirst = true;
while ((line = reader.readLine()) != null) {
if ( isFirst && ! line.startsWith(headerDelimiter) && ! line.startsWith(commentDelimiter)) {
throw new UserException.MalformedFile("TableCodec file does not have a header");
}
isFirst &= line.startsWith(commentDelimiter);
if (line.startsWith(headerDelimiter)) {
if (header.size() > 0) throw new IllegalStateException("Input table file seems to have two header lines. The second is = " + line);
String spl[] = line.split(delimiterRegex);
for (String s : spl) header.add(s);
return header;
} else if (!line.startsWith(commentDelimiter)) {
break;
}
}
} catch (IOException e) {
throw new UserException.MalformedFile("unable to parse header from TableCodec file",e);
}
return header;
}
public boolean canDecode(final String potentialInput) { return false; }
}
| iontorrent/Torrent-Variant-Caller-stable | public/java/src/org/broadinstitute/sting/utils/codecs/table/TableCodec.java | Java | mit | 4,090 |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Canadialog Inc. -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492272505164&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=8057&V_SEARCH.docsStart=8056&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=8055&V_DOCUMENT.docRank=8056&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492272519467&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567096469&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=8057&V_DOCUMENT.docRank=8058&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492272519467&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567001926&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Canadialog Inc.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Canadialog Inc.</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.canadialog.com"
target="_blank" title="Website URL">http://www.canadialog.com</a></p>
<p><a href="mailto:[email protected]" title="[email protected]">[email protected]</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
259-60 Atlantic Ave<br/>
Liberty Village<br/>
TORONTO,
Ontario<br/>
M6K 1X9
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
259-60 Atlantic Ave<br/>
Liberty Village<br/>
TORONTO,
Ontario<br/>
M6K 1X9
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(416) 800-6668
</p>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(888) 730-0003</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(437) 222-2001</p>
</div>
<div class="col-md-3 mrgn-tp-md">
<h2 class="wb-inv">Logo</h2>
<img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=234567135211&graphFileName=branding.png&applicationCode=AP&lang=eng" alt="Logo" />
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Canadialog is a part of an international group that strives to provide all the possible means to promote active and autonomous participation in society for the visually impaired with the use of assistive technologies.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Bruce
MacKenzie
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(888) 730-0003
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
201
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(604) 800-0655
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
[email protected]
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jad
Nohra
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Administrative Services,
Finance/Accounting.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(888) 730-0003
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
120
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(437) 222-2001
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
[email protected]
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
417930 - Professional Machinery, Equipment and Supplies Wholesaler-Distributors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Trading House / Wholesaler / Agent and Distributor
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Assistive Technology<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
RUBY - portable handheld magnifier<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
A portable handheld magnification solution. With a 4.3-inch, full color, high brightness video screen which makes it outstanding for reading bills, letters, checks, and receipts. It is so small and unobtrusive that it easily slips into a pocket or purse as the perfect traveling companion for visiting the grocery store, the pharmacy, the bank, the library, bookstore, restaurant, or anywhere else.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SAPPHIRE - low vision reading magnifier<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Macular degeneration, glaucoma, cataracts, and other causes of vision loss no longer will prevent you from reading small print on menus, maps, receipts, pill bottles, and other items. With the battery-operated SAPPHIRE® handheld magnifier, you can magnify reading and detailed illustrations from 3.4 to 16 times on a bright, high-contrast display screen while at the store, on trips near and far, and at home as you move from room to room.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOPAZ - Desktop Video Magnifier/CCTV<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Now you can maintain control over the essential, everyday activities of your life, even with macular degeneration or other visual impairments that result in low vision: leisure reading, corresponding with friends and family, reading contracts, bills, and prescriptions, enjoying needlepoint and other hobbies, and much more.
<br>
The TOPAZ with its bright, high-contrast image, large moveable reading table, and easy to reach and use buttons is a must for every home where people with macular degeneration, diabetic retinopathy, and other forms of low vision love to read books, do crossword puzzles, and see the details in cherished family photos<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
ONYX - Deskset XL far view camera<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The ONYX® Deskset XL 17, ONYX Deskset XL 19, and ONYX XL 22 feature the versatile ONYX camera mounted to a 17-inch, 19-inch, or widescreen 22-inch flat panel monitor that can be tilted forward and backward and raised and lowered. The camera rotates 350 degrees, and the unique telescopic arm swings 350 degrees, allowing you to look in any direction. Magnify close up and far away - there even is a mirror-image self view. The ONYX Deskset XL is exceptional for magnifying a white board, an instructor or speaker at the front of a room, PowerPoint presentations, and books and papers on a desk. And it all comes in one, compact portable package<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
LED Illuminated Magnifiers for Low Vision<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
These magnifying glasses combine precision German optics with bright LED lighting. The 10,000-hour LEDs illuminate the entire field of view, and the meticulously crafted aspheric lenses provide powerful magnification with less distortion - Great for those with limited vision due to macular degeneration, retinitis pigmentosa, diabetic retinopathy, glaucoma, or cataracts.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MAGic Screen Magnification Software<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Computer users who need low vision aids due to macular degeneration, retinitis pigmentosa, or other causes of low vision can take control of Web and software application pages. No longer will you struggle with type too small to see and images with indecipherable details. MAGic® screen magnification software not only increases the size of what you see on a monitor, but MAGic with Speech also speaks aloud screen contents. MAGic makes school research on the Web less challenging for those with vision loss. It smooths the way for work projects that involve report writing, spreadsheets, and working with common office-related software. MAGic even makes leisure Web browsing, letter writing, blogging, chatting, and other social activities that involve the computer possible and more fun for people with vision loss.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SARA CE - Camera Edition Scanning And Reading Appliance<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Place a printed page under the camera, and the SARA CE instantly starts reading it to you with RealSpeak human-sounding speech. No computer experience is needed. You dont even need to push a button to read almost any printed material books, magazines, mail, and more. The camera automatically senses when a new page is presented.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
JAWS - Screen Reading Software for Microsoft Windows<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Works with all your Microsoft and IBM Lotus® Symphony applications using JAWS®, the world's most popular screen reader. Developed for computer users whose vision loss prevents them from seeing screen content, JAWS reads aloud what's on the PC screen.
<br>
Compatible with the most frequently-used workplace and classroom applications
<br>
JAWS enables you to work with Lotus Symphony, a suite of IBM® tools for word processing, spreadsheets, and presentation creation and with Lotus Notes® by IBM. JAWS also is compatible with Microsoft® Office Suite, MSN Messenger®, Corel® WordPerfect, Adobe® Acrobat Reader, Internet Explorer, Firefox - and many more applications that used on a regular basis on the job and in school.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
OpenBook Scanning and Reading Software<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
OpenBook® converts printed documents or graphic-based text into an electronic text format on your PC, using quality speech and the latest optical character recognition (OCR) technology. Easy switching between the Nuance OmniPage® and ABBYY FineReader® OCR engines allows you to choose the OCR engine that works best for your particular use. You also can choose between two leading text-to-speech software synthesizers: RealSpeak Solo (natural, human-sounding voices) or Eloquence (efficient synthesized speech that often is preferred for editing and document skimming).<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Bruce
MacKenzie
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(888) 730-0003
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
201
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(604) 800-0655
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
[email protected]
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Jad
Nohra
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Administrative Services,
Finance/Accounting.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(888) 730-0003
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
120
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(437) 222-2001
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
[email protected]
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
417930 - Professional Machinery, Equipment and Supplies Wholesaler-Distributors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Trading House / Wholesaler / Agent and Distributor
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Assistive Technology<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
RUBY - portable handheld magnifier<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
A portable handheld magnification solution. With a 4.3-inch, full color, high brightness video screen which makes it outstanding for reading bills, letters, checks, and receipts. It is so small and unobtrusive that it easily slips into a pocket or purse as the perfect traveling companion for visiting the grocery store, the pharmacy, the bank, the library, bookstore, restaurant, or anywhere else.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SAPPHIRE - low vision reading magnifier<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Macular degeneration, glaucoma, cataracts, and other causes of vision loss no longer will prevent you from reading small print on menus, maps, receipts, pill bottles, and other items. With the battery-operated SAPPHIRE® handheld magnifier, you can magnify reading and detailed illustrations from 3.4 to 16 times on a bright, high-contrast display screen while at the store, on trips near and far, and at home as you move from room to room.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOPAZ - Desktop Video Magnifier/CCTV<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Now you can maintain control over the essential, everyday activities of your life, even with macular degeneration or other visual impairments that result in low vision: leisure reading, corresponding with friends and family, reading contracts, bills, and prescriptions, enjoying needlepoint and other hobbies, and much more.
<br>
The TOPAZ with its bright, high-contrast image, large moveable reading table, and easy to reach and use buttons is a must for every home where people with macular degeneration, diabetic retinopathy, and other forms of low vision love to read books, do crossword puzzles, and see the details in cherished family photos<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
ONYX - Deskset XL far view camera<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The ONYX® Deskset XL 17, ONYX Deskset XL 19, and ONYX XL 22 feature the versatile ONYX camera mounted to a 17-inch, 19-inch, or widescreen 22-inch flat panel monitor that can be tilted forward and backward and raised and lowered. The camera rotates 350 degrees, and the unique telescopic arm swings 350 degrees, allowing you to look in any direction. Magnify close up and far away - there even is a mirror-image self view. The ONYX Deskset XL is exceptional for magnifying a white board, an instructor or speaker at the front of a room, PowerPoint presentations, and books and papers on a desk. And it all comes in one, compact portable package<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
LED Illuminated Magnifiers for Low Vision<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
These magnifying glasses combine precision German optics with bright LED lighting. The 10,000-hour LEDs illuminate the entire field of view, and the meticulously crafted aspheric lenses provide powerful magnification with less distortion - Great for those with limited vision due to macular degeneration, retinitis pigmentosa, diabetic retinopathy, glaucoma, or cataracts.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MAGic Screen Magnification Software<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Computer users who need low vision aids due to macular degeneration, retinitis pigmentosa, or other causes of low vision can take control of Web and software application pages. No longer will you struggle with type too small to see and images with indecipherable details. MAGic® screen magnification software not only increases the size of what you see on a monitor, but MAGic with Speech also speaks aloud screen contents. MAGic makes school research on the Web less challenging for those with vision loss. It smooths the way for work projects that involve report writing, spreadsheets, and working with common office-related software. MAGic even makes leisure Web browsing, letter writing, blogging, chatting, and other social activities that involve the computer possible and more fun for people with vision loss.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SARA CE - Camera Edition Scanning And Reading Appliance<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Place a printed page under the camera, and the SARA CE instantly starts reading it to you with RealSpeak human-sounding speech. No computer experience is needed. You dont even need to push a button to read almost any printed material books, magazines, mail, and more. The camera automatically senses when a new page is presented.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
JAWS - Screen Reading Software for Microsoft Windows<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Works with all your Microsoft and IBM Lotus® Symphony applications using JAWS®, the world's most popular screen reader. Developed for computer users whose vision loss prevents them from seeing screen content, JAWS reads aloud what's on the PC screen.
<br>
Compatible with the most frequently-used workplace and classroom applications
<br>
JAWS enables you to work with Lotus Symphony, a suite of IBM® tools for word processing, spreadsheets, and presentation creation and with Lotus Notes® by IBM. JAWS also is compatible with Microsoft® Office Suite, MSN Messenger®, Corel® WordPerfect, Adobe® Acrobat Reader, Internet Explorer, Firefox - and many more applications that used on a regular basis on the job and in school.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
OpenBook Scanning and Reading Software<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
OpenBook® converts printed documents or graphic-based text into an electronic text format on your PC, using quality speech and the latest optical character recognition (OCR) technology. Easy switching between the Nuance OmniPage® and ABBYY FineReader® OCR engines allows you to choose the OCR engine that works best for your particular use. You also can choose between two leading text-to-speech software synthesizers: RealSpeak Solo (natural, human-sounding voices) or Eloquence (efficient synthesized speech that often is preferred for editing and document skimming).<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-06-15
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
| GoC-Spending/data-corporations | html/234567135211.html | HTML | mit | 81,600 |
<!-- THIS FILE IS GENERATED VIA '.template-helpers/generate-tag-details.pl' -->
# Tags of `ruby`
- [`ruby:2.0.0-p647`](#ruby200-p647)
- [`ruby:2.0.0`](#ruby200)
- [`ruby:2.0`](#ruby20)
- [`ruby:2.0.0-p647-onbuild`](#ruby200-p647-onbuild)
- [`ruby:2.0.0-onbuild`](#ruby200-onbuild)
- [`ruby:2.0-onbuild`](#ruby20-onbuild)
- [`ruby:2.0.0-p647-slim`](#ruby200-p647-slim)
- [`ruby:2.0.0-slim`](#ruby200-slim)
- [`ruby:2.0-slim`](#ruby20-slim)
- [`ruby:2.1.7`](#ruby217)
- [`ruby:2.1`](#ruby21)
- [`ruby:2.1.7-onbuild`](#ruby217-onbuild)
- [`ruby:2.1-onbuild`](#ruby21-onbuild)
- [`ruby:2.1.7-slim`](#ruby217-slim)
- [`ruby:2.1-slim`](#ruby21-slim)
- [`ruby:2.2.3`](#ruby223)
- [`ruby:2.2`](#ruby22)
- [`ruby:2`](#ruby2)
- [`ruby:latest`](#rubylatest)
- [`ruby:2.2.3-onbuild`](#ruby223-onbuild)
- [`ruby:2.2-onbuild`](#ruby22-onbuild)
- [`ruby:2-onbuild`](#ruby2-onbuild)
- [`ruby:onbuild`](#rubyonbuild)
- [`ruby:2.2.3-slim`](#ruby223-slim)
- [`ruby:2.2-slim`](#ruby22-slim)
- [`ruby:2-slim`](#ruby2-slim)
- [`ruby:slim`](#rubyslim)
## `ruby:2.0.0-p647`
- Total Virtual Size: 705.2 MB (705162696 bytes)
- Total v2 Content-Length: 269.4 MB (269376466 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0.0`
- Total Virtual Size: 705.2 MB (705162696 bytes)
- Total v2 Content-Length: 269.4 MB (269376466 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0`
- Total Virtual Size: 705.2 MB (705162696 bytes)
- Total v2 Content-Length: 269.4 MB (269376466 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0.0-p647-onbuild`
- Total Virtual Size: 705.2 MB (705162784 bytes)
- Total v2 Content-Length: 269.4 MB (269376968 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:23:04 GMT
- Parent Layer: `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
- Docker Version: 1.7.1
- Virtual Size: 88.0 B
- v2 Blob: `sha256:5df96711276bfc6747960854cb03957c98bc23edc32be0b71c58c3198ce9b38c`
- v2 Content-Length: 216.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:24 GMT
#### `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:bee8e5a45910b114e7778b7f591bb95beb903d44eafd1726a943ab918bd45904`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:23 GMT
#### `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5fdfcee3afdbd034cc58b769337ab7f5bf8e5ab2b3b6b6e0b4a5a10675b04b8e`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:07 GMT
- Parent Layer: `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0.0-onbuild`
- Total Virtual Size: 705.2 MB (705162784 bytes)
- Total v2 Content-Length: 269.4 MB (269376968 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:23:04 GMT
- Parent Layer: `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
- Docker Version: 1.7.1
- Virtual Size: 88.0 B
- v2 Blob: `sha256:5df96711276bfc6747960854cb03957c98bc23edc32be0b71c58c3198ce9b38c`
- v2 Content-Length: 216.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:24 GMT
#### `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:bee8e5a45910b114e7778b7f591bb95beb903d44eafd1726a943ab918bd45904`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:23 GMT
#### `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5fdfcee3afdbd034cc58b769337ab7f5bf8e5ab2b3b6b6e0b4a5a10675b04b8e`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:07 GMT
- Parent Layer: `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0-onbuild`
- Total Virtual Size: 705.2 MB (705162784 bytes)
- Total v2 Content-Length: 269.4 MB (269376968 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `57172606478fe544e87cadf7ef98be1f8337fb9a8fbe4cb5d027f25c6eef0d0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=c88aaf5b4ec72e2cb7d290ff854f04d135939f6134f517002a9d65d5fc5e5bec
```
- Created: Tue, 25 Aug 2015 08:17:43 GMT
- Parent Layer: `5f77e63e5730321adf6bebebe309224cedda159839b903a8db252c9f016608c1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:17:44 GMT
- Parent Layer: `f6f3b171327c0c8862537d062b61cbd3cafcb18030390e871281a504070d4fe9`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' > "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:17:45 GMT
- Parent Layer: `c5b051d2da18ec7ccf37b3523253d4e8c31363b75a493fc5457b85862fe8ff3f`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:bf6be5e09718d0c44661ae9835241ef4ea86fe5fc2905813585e7563b104b29f`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:04 GMT
#### `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:21:46 GMT
- Parent Layer: `cf475af3052e9fa149bf6686c85ffcb066ef6e523717aff0acb526f8cf8d420e`
- Docker Version: 1.7.1
- Virtual Size: 98.5 MB (98522047 bytes)
- v2 Blob: `sha256:c2d1fdfcb4c55a98415b2304167a91d6946d10ea4662386a4d516a47afea9a72`
- v2 Content-Length: 28.4 MB (28437522 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:47:01 GMT
#### `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `e197a3d883c8c0ad8f2a69140260f53b8e242631cda6dd9911f8afc525d7d4d4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:21:47 GMT
- Parent Layer: `682b7557535ccf234ddd723c34ce9d39d646cba9c37c388d894e64422cfa1fdd`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:21:48 GMT
- Parent Layer: `1a934001ef5e2b024acbd00b81d1363b956b07ad652ecf919da502ae1aff3584`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:21:51 GMT
- Parent Layer: `b2522c5019fd27ba60c909d85d4b8d6b350f2940dc481d187e26340a07cc135b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:4021d1190e5e92a1c97474c7f4f5a53fc8ac1ba3f582c60ebce10e1e6953d6c0`
- v2 Content-Length: 500.1 KB (500100 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:46:39 GMT
#### `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `f9f99542a15e92be20bafa01620453c667fc5a7b4df79bb2b0d5f228110d38bf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:21:52 GMT
- Parent Layer: `4630d301b9afed4108cc30d900c9e109800361d2bede9b1bcc659715efd408a2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:23:04 GMT
- Parent Layer: `041ca32db269c2c107351ac8028ad98ceeca1ed3cab9295d1e20d7cf1596cb99`
- Docker Version: 1.7.1
- Virtual Size: 88.0 B
- v2 Blob: `sha256:5df96711276bfc6747960854cb03957c98bc23edc32be0b71c58c3198ce9b38c`
- v2 Content-Length: 216.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:24 GMT
#### `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `57c6e615af052d62541154701cab208d14b7ef96e08c3caa713337f944e85b44`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:bee8e5a45910b114e7778b7f591bb95beb903d44eafd1726a943ab918bd45904`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:52:23 GMT
#### `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:05 GMT
- Parent Layer: `a44b7a274375df94cd2c628890b61a140261f21b659202a0071c936833bec81f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `15159a32521de2efc82e89f0a62b44d3a8c49f3c85018b38bbb886e874e7f1df`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `1a468e5c6fdee54ad3dbfcfc359089679d3778e65c2b520b341d4f2008f61eca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:23:06 GMT
- Parent Layer: `aae01a8d766a8e76af29864611778145bb6f0836c61a4eaca5d37ffceb5db4ce`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5fdfcee3afdbd034cc58b769337ab7f5bf8e5ab2b3b6b6e0b4a5a10675b04b8e`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:23:07 GMT
- Parent Layer: `9e870ea37727dcd8092ae59d8f161f91c5a629962031e080173858e14fa738a1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0.0-p647-slim`
- Total Virtual Size: 263.4 MB (263420564 bytes)
- Total v2 Content-Length: 94.1 MB (94094688 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:21:11 GMT
- Parent Layer: `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:21:13 GMT
- Parent Layer: `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:f39e989b2b6fa6ff4083aa633c7c8212e5d12a4fb420b8a4514e5aa10cc3302c`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:39 GMT
#### `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:26:21 GMT
- Parent Layer: `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
- Docker Version: 1.7.1
- Virtual Size: 99.4 MB (99368203 bytes)
- v2 Blob: `sha256:1432b334d9298b27c8d899c5ae30a0e922b07a6e6ee8ae3f36ab3820dd6fbf31`
- v2 Content-Length: 28.6 MB (28623192 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:36 GMT
#### `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:23 GMT
- Parent Layer: `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:26:24 GMT
- Parent Layer: `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:26:25 GMT
- Parent Layer: `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:26:28 GMT
- Parent Layer: `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:7ad4c9116880b0a6a769a6b72ba3f87374147a5b68499367c211e55fe7642776`
- v2 Content-Length: 500.1 KB (500101 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:13 GMT
#### `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:29 GMT
- Parent Layer: `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `393515ee1ea760910f4a6edefc9830f8b717f694b3cfdd330b7f38a1d87638a9`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:26:30 GMT
- Parent Layer: `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0.0-slim`
- Total Virtual Size: 263.4 MB (263420564 bytes)
- Total v2 Content-Length: 94.1 MB (94094688 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:21:11 GMT
- Parent Layer: `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:21:13 GMT
- Parent Layer: `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:f39e989b2b6fa6ff4083aa633c7c8212e5d12a4fb420b8a4514e5aa10cc3302c`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:39 GMT
#### `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:26:21 GMT
- Parent Layer: `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
- Docker Version: 1.7.1
- Virtual Size: 99.4 MB (99368203 bytes)
- v2 Blob: `sha256:1432b334d9298b27c8d899c5ae30a0e922b07a6e6ee8ae3f36ab3820dd6fbf31`
- v2 Content-Length: 28.6 MB (28623192 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:36 GMT
#### `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:23 GMT
- Parent Layer: `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:26:24 GMT
- Parent Layer: `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:26:25 GMT
- Parent Layer: `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:26:28 GMT
- Parent Layer: `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:7ad4c9116880b0a6a769a6b72ba3f87374147a5b68499367c211e55fe7642776`
- v2 Content-Length: 500.1 KB (500101 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:13 GMT
#### `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:29 GMT
- Parent Layer: `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `393515ee1ea760910f4a6edefc9830f8b717f694b3cfdd330b7f38a1d87638a9`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:26:30 GMT
- Parent Layer: `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.0-slim`
- Total Virtual Size: 263.4 MB (263420564 bytes)
- Total v2 Content-Length: 94.1 MB (94094688 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
```dockerfile
ENV RUBY_MAJOR=2.0
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
```dockerfile
ENV RUBY_VERSION=2.0.0-p647
```
- Created: Mon, 24 Aug 2015 22:21:10 GMT
- Parent Layer: `6e87852e6890247c4fec706ddb1a39712304723c373133414ed7051e9d3ff735`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:21:11 GMT
- Parent Layer: `8d48c48838f6849435f1f8f016e1d86a73a0cb7405dc6dd4bf2aea9f9a707c8b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:21:13 GMT
- Parent Layer: `d3255ddd41d5064b86ab69f0ae490fabb2d2bdcd25578efc86f1acb79a35ef43`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:f39e989b2b6fa6ff4083aa633c7c8212e5d12a4fb420b8a4514e5aa10cc3302c`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:39 GMT
#### `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:26:21 GMT
- Parent Layer: `ecf0120833a0e1fd2d133e4277bf5c9c70ae774c6a707330547cfe8e5bdbe709`
- Docker Version: 1.7.1
- Virtual Size: 99.4 MB (99368203 bytes)
- v2 Blob: `sha256:1432b334d9298b27c8d899c5ae30a0e922b07a6e6ee8ae3f36ab3820dd6fbf31`
- v2 Content-Length: 28.6 MB (28623192 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:36 GMT
#### `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:23 GMT
- Parent Layer: `429a3bb6cacf025bec45441038462b7aba32be6c394c9b8c1bda10e6413d6715`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:26:24 GMT
- Parent Layer: `df37e929d887e00cf6e49bf3157d2c2b3fcb4cbe9991ce7fbd3c5aa23ed21063`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:26:25 GMT
- Parent Layer: `92ff2cb87ab3e136fbf437886f32df786bee467b4a9170e853bb68cc0f26accf`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:26:28 GMT
- Parent Layer: `38f7b182376a49a3def8296374682137306a31d9d0f33fc1837355d96f653403`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124530 bytes)
- v2 Blob: `sha256:7ad4c9116880b0a6a769a6b72ba3f87374147a5b68499367c211e55fe7642776`
- v2 Content-Length: 500.1 KB (500101 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:13 GMT
#### `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:26:29 GMT
- Parent Layer: `0b69b083b2303c3c1f343e0f80b3393d652b12d97a8738c8547f54b4fb0c980e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `393515ee1ea760910f4a6edefc9830f8b717f694b3cfdd330b7f38a1d87638a9`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:26:30 GMT
- Parent Layer: `80b9fe9ce430ab6f8e97cd46050b038d371aa5e61e4f29d7f19ada79cbe65bec`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1.7`
- Total Virtual Size: 716.8 MB (716838138 bytes)
- Total v2 Content-Length: 272.7 MB (272732699 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Tue, 25 Aug 2015 08:23:50 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=f59c1596ac39cc7e60126e7d3698c19f482f04060674fdfe0124e1752ba6dd81
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:23:52 GMT
- Parent Layer: `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:23:53 GMT
- Parent Layer: `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:9007d89172fd58849f841803a73262de0589d83d7a9b63c3ac0dce3ab091c642`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:57:01 GMT
#### `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:27:59 GMT
- Parent Layer: `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110197485 bytes)
- v2 Blob: `sha256:035193dc6a3655fe2c2f1ead78c38593cba4049787a6f81724f48a815274128c`
- v2 Content-Length: 31.8 MB (31793751 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:58 GMT
#### `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:2a5c4075d0a765522ef9b9bb6c983bb6beb95b8e5fd9f121be7c7aedff457053`
- v2 Content-Length: 500.1 KB (500103 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:32 GMT
#### `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:28:05 GMT
- Parent Layer: `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1`
- Total Virtual Size: 716.8 MB (716838138 bytes)
- Total v2 Content-Length: 272.7 MB (272732699 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Tue, 25 Aug 2015 08:23:50 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=f59c1596ac39cc7e60126e7d3698c19f482f04060674fdfe0124e1752ba6dd81
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:23:52 GMT
- Parent Layer: `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:23:53 GMT
- Parent Layer: `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:9007d89172fd58849f841803a73262de0589d83d7a9b63c3ac0dce3ab091c642`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:57:01 GMT
#### `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:27:59 GMT
- Parent Layer: `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110197485 bytes)
- v2 Blob: `sha256:035193dc6a3655fe2c2f1ead78c38593cba4049787a6f81724f48a815274128c`
- v2 Content-Length: 31.8 MB (31793751 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:58 GMT
#### `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:2a5c4075d0a765522ef9b9bb6c983bb6beb95b8e5fd9f121be7c7aedff457053`
- v2 Content-Length: 500.1 KB (500103 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:32 GMT
#### `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:28:05 GMT
- Parent Layer: `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1.7-onbuild`
- Total Virtual Size: 716.8 MB (716838230 bytes)
- Total v2 Content-Length: 272.7 MB (272733206 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Tue, 25 Aug 2015 08:23:50 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=f59c1596ac39cc7e60126e7d3698c19f482f04060674fdfe0124e1752ba6dd81
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:23:52 GMT
- Parent Layer: `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:23:53 GMT
- Parent Layer: `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:9007d89172fd58849f841803a73262de0589d83d7a9b63c3ac0dce3ab091c642`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:57:01 GMT
#### `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:27:59 GMT
- Parent Layer: `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110197485 bytes)
- v2 Blob: `sha256:035193dc6a3655fe2c2f1ead78c38593cba4049787a6f81724f48a815274128c`
- v2 Content-Length: 31.8 MB (31793751 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:58 GMT
#### `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:2a5c4075d0a765522ef9b9bb6c983bb6beb95b8e5fd9f121be7c7aedff457053`
- v2 Content-Length: 500.1 KB (500103 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:32 GMT
#### `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:28:05 GMT
- Parent Layer: `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `70c3e9e3e3afa8e1634259e0610a15ac8dd42bc4a9dcbae75d8a028bfce6e793`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:28:43 GMT
- Parent Layer: `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:71a10371508ba8a10d35e82ac5816cddbea311d334bdc289e521fa05f339b8b0`
- v2 Content-Length: 219.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:58:26 GMT
#### `9db5dfd882affec1fc19613bd99b844a377c59db1b000328e9c7657ce165cf68`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:44 GMT
- Parent Layer: `70c3e9e3e3afa8e1634259e0610a15ac8dd42bc4a9dcbae75d8a028bfce6e793`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a7824ee8f4efbff4f095f5d2818f2422c72490a6f0d6e183a5c688a35baac277`
- v2 Content-Length: 128.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:58:24 GMT
#### `df3cb5f1b0467dc3823a8a28ae5305e051215aecd99e9b28f7031f5f8dabf17d`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:45 GMT
- Parent Layer: `9db5dfd882affec1fc19613bd99b844a377c59db1b000328e9c7657ce165cf68`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `da096598f8834170eec9248c012489ab1466090d4673c66bda52eb4fe82f21fe`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:28:45 GMT
- Parent Layer: `df3cb5f1b0467dc3823a8a28ae5305e051215aecd99e9b28f7031f5f8dabf17d`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `94669df62262baff9f01b193c12fb1b7806f58a8799c67a0113cd21534e95925`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:28:46 GMT
- Parent Layer: `da096598f8834170eec9248c012489ab1466090d4673c66bda52eb4fe82f21fe`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d01d3e451892fed309b1de04f47e05956572749ff2543e5391861bfaccf8ce6b`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:28:46 GMT
- Parent Layer: `94669df62262baff9f01b193c12fb1b7806f58a8799c67a0113cd21534e95925`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9baa615f97da9dcf7296b5bbcbdf0d3fd7f5f48790fda52202f077a96641d22e`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:47 GMT
- Parent Layer: `d01d3e451892fed309b1de04f47e05956572749ff2543e5391861bfaccf8ce6b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1-onbuild`
- Total Virtual Size: 716.8 MB (716838230 bytes)
- Total v2 Content-Length: 272.7 MB (272733206 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Tue, 25 Aug 2015 08:23:50 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `c3f6fcd16bdd0b9cdd4d5b64e3c48edf8ad0105f80c8a45d876cb80700aba22e`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=f59c1596ac39cc7e60126e7d3698c19f482f04060674fdfe0124e1752ba6dd81
```
- Created: Tue, 25 Aug 2015 08:23:51 GMT
- Parent Layer: `6f30b7ded6dd855984512fb60fb8e6d87e6925203d05e8ca9c83fdedb32dcd01`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:23:52 GMT
- Parent Layer: `af2fab4c662df0120df1ce4ec08ca29a657af04842644eca52edc722d52002af`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:23:53 GMT
- Parent Layer: `6cc30d208333c700fda0c6f9002756aec36586696fbbfd84fcf050a8faca59c4`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:9007d89172fd58849f841803a73262de0589d83d7a9b63c3ac0dce3ab091c642`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:57:01 GMT
#### `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:27:59 GMT
- Parent Layer: `e0fd6f8476b65b20df8617809873848c96db32a33f9b8eafdfb02c86f1afa646`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110197485 bytes)
- v2 Blob: `sha256:035193dc6a3655fe2c2f1ead78c38593cba4049787a6f81724f48a815274128c`
- v2 Content-Length: 31.8 MB (31793751 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:58 GMT
#### `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `2171d2db4770b341c56b9ceb2831aa6703c9a692aff8efd5862424a8c082c845`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `694ef7fc41df48f30328124d7a012ed6016bc2d0321b87a2b7dfaca79f92d653`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:28:00 GMT
- Parent Layer: `4cafcafe16c6a0bdbe256de5803d139cb991fa43b5c54ac4b70cb74e8f99deba`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `58cdb66ca394748e23991183b3d12f98ed216e63bc0a726583b47433f7765f61`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:2a5c4075d0a765522ef9b9bb6c983bb6beb95b8e5fd9f121be7c7aedff457053`
- v2 Content-Length: 500.1 KB (500103 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:56:32 GMT
#### `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:28:04 GMT
- Parent Layer: `51ef2697a3e69375dd4b42926e9a11c30c1fb94351cab390e3adf11e5ef6d746`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:28:05 GMT
- Parent Layer: `f791b6ef593cb86ffecf0b0dc99637174730478889ed854bef420a6dcfd74ba4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `70c3e9e3e3afa8e1634259e0610a15ac8dd42bc4a9dcbae75d8a028bfce6e793`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:28:43 GMT
- Parent Layer: `68cf55cf7c1df75921de73f54a8b3724c2941c3b8ef03474416382f10f8979cb`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:71a10371508ba8a10d35e82ac5816cddbea311d334bdc289e521fa05f339b8b0`
- v2 Content-Length: 219.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:58:26 GMT
#### `9db5dfd882affec1fc19613bd99b844a377c59db1b000328e9c7657ce165cf68`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:44 GMT
- Parent Layer: `70c3e9e3e3afa8e1634259e0610a15ac8dd42bc4a9dcbae75d8a028bfce6e793`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a7824ee8f4efbff4f095f5d2818f2422c72490a6f0d6e183a5c688a35baac277`
- v2 Content-Length: 128.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 05:58:24 GMT
#### `df3cb5f1b0467dc3823a8a28ae5305e051215aecd99e9b28f7031f5f8dabf17d`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:45 GMT
- Parent Layer: `9db5dfd882affec1fc19613bd99b844a377c59db1b000328e9c7657ce165cf68`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `da096598f8834170eec9248c012489ab1466090d4673c66bda52eb4fe82f21fe`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:28:45 GMT
- Parent Layer: `df3cb5f1b0467dc3823a8a28ae5305e051215aecd99e9b28f7031f5f8dabf17d`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `94669df62262baff9f01b193c12fb1b7806f58a8799c67a0113cd21534e95925`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:28:46 GMT
- Parent Layer: `da096598f8834170eec9248c012489ab1466090d4673c66bda52eb4fe82f21fe`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d01d3e451892fed309b1de04f47e05956572749ff2543e5391861bfaccf8ce6b`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:28:46 GMT
- Parent Layer: `94669df62262baff9f01b193c12fb1b7806f58a8799c67a0113cd21534e95925`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9baa615f97da9dcf7296b5bbcbdf0d3fd7f5f48790fda52202f077a96641d22e`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:28:47 GMT
- Parent Layer: `d01d3e451892fed309b1de04f47e05956572749ff2543e5391861bfaccf8ce6b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1.7-slim`
- Total Virtual Size: 275.1 MB (275096102 bytes)
- Total v2 Content-Length: 97.5 MB (97474326 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `ff276f454650c774fc07154672f66daca38da336377441b97c10653bce56d384`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Mon, 24 Aug 2015 22:28:15 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c6298be18e07abf3c5c14d5e2e6f26a923de477c83917706c341e2a1b636fff7`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Mon, 24 Aug 2015 22:28:15 GMT
- Parent Layer: `ff276f454650c774fc07154672f66daca38da336377441b97c10653bce56d384`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e3dd1078196e664c951a2c4101ae691b92c4c547cbe25a38305c76ae810cd853`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:28:16 GMT
- Parent Layer: `c6298be18e07abf3c5c14d5e2e6f26a923de477c83917706c341e2a1b636fff7`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c3054340778e5bcfb665aef2bae9accb593a86747c74a95a573b41516341e762`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:28:18 GMT
- Parent Layer: `e3dd1078196e664c951a2c4101ae691b92c4c547cbe25a38305c76ae810cd853`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:71127e78d00331fd6aa49b7c9c7db1feaca2151bc76c3f54c67dddd69fa07d59`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 06:00:06 GMT
#### `10ed5ecdc4404565cd8f2ba5377fe04d292fe1413bcf942fe111730c83505dd8`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:36:11 GMT
- Parent Layer: `c3054340778e5bcfb665aef2bae9accb593a86747c74a95a573b41516341e762`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111043737 bytes)
- v2 Blob: `sha256:034cd56236d37f12e77ead895770bd9c204cb7597b5316dbe60a54aab1c2875a`
- v2 Content-Length: 32.0 MB (32002823 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 06:00:02 GMT
#### `4c5d57b5960745fafe3085796699c158671d414e07ea2d85474de17deee30d7d`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:36:14 GMT
- Parent Layer: `10ed5ecdc4404565cd8f2ba5377fe04d292fe1413bcf942fe111730c83505dd8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `65f9e28996cc8717fd988569610f7cc972eafc80ef89b8190e43f083eb1c1153`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:36:15 GMT
- Parent Layer: `4c5d57b5960745fafe3085796699c158671d414e07ea2d85474de17deee30d7d`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `26226978c60f99ad5fdd71bceda088dfc6f5421dfb4b0e86d38f96fda497235c`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:36:16 GMT
- Parent Layer: `65f9e28996cc8717fd988569610f7cc972eafc80ef89b8190e43f083eb1c1153`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `003e7e1f320311437922ac325a0b23b75ca83a0a5857e042777ddcc9648d8d6b`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:36:20 GMT
- Parent Layer: `26226978c60f99ad5fdd71bceda088dfc6f5421dfb4b0e86d38f96fda497235c`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:02b9907763b4b4bae869335bd6bc6635d261e4b4fd425b1c6f4d226b7a160aa9`
- v2 Content-Length: 500.1 KB (500107 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:59:39 GMT
#### `249d6003544ae2da93d203fed581e4ca1e8011bed69950f62f2fc0d633b5a8fb`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:36:21 GMT
- Parent Layer: `003e7e1f320311437922ac325a0b23b75ca83a0a5857e042777ddcc9648d8d6b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `7285b84f6d9f512344cf12f2e960177a3f03ea7d0bc0c3559d7b5534afd251c7`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:36:22 GMT
- Parent Layer: `249d6003544ae2da93d203fed581e4ca1e8011bed69950f62f2fc0d633b5a8fb`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.1-slim`
- Total Virtual Size: 275.1 MB (275096102 bytes)
- Total v2 Content-Length: 97.5 MB (97474326 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `ff276f454650c774fc07154672f66daca38da336377441b97c10653bce56d384`
```dockerfile
ENV RUBY_MAJOR=2.1
```
- Created: Mon, 24 Aug 2015 22:28:15 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c6298be18e07abf3c5c14d5e2e6f26a923de477c83917706c341e2a1b636fff7`
```dockerfile
ENV RUBY_VERSION=2.1.7
```
- Created: Mon, 24 Aug 2015 22:28:15 GMT
- Parent Layer: `ff276f454650c774fc07154672f66daca38da336377441b97c10653bce56d384`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `e3dd1078196e664c951a2c4101ae691b92c4c547cbe25a38305c76ae810cd853`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:28:16 GMT
- Parent Layer: `c6298be18e07abf3c5c14d5e2e6f26a923de477c83917706c341e2a1b636fff7`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `c3054340778e5bcfb665aef2bae9accb593a86747c74a95a573b41516341e762`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:28:18 GMT
- Parent Layer: `e3dd1078196e664c951a2c4101ae691b92c4c547cbe25a38305c76ae810cd853`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:71127e78d00331fd6aa49b7c9c7db1feaca2151bc76c3f54c67dddd69fa07d59`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 06:00:06 GMT
#### `10ed5ecdc4404565cd8f2ba5377fe04d292fe1413bcf942fe111730c83505dd8`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:36:11 GMT
- Parent Layer: `c3054340778e5bcfb665aef2bae9accb593a86747c74a95a573b41516341e762`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111043737 bytes)
- v2 Blob: `sha256:034cd56236d37f12e77ead895770bd9c204cb7597b5316dbe60a54aab1c2875a`
- v2 Content-Length: 32.0 MB (32002823 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 06:00:02 GMT
#### `4c5d57b5960745fafe3085796699c158671d414e07ea2d85474de17deee30d7d`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:36:14 GMT
- Parent Layer: `10ed5ecdc4404565cd8f2ba5377fe04d292fe1413bcf942fe111730c83505dd8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `65f9e28996cc8717fd988569610f7cc972eafc80ef89b8190e43f083eb1c1153`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:36:15 GMT
- Parent Layer: `4c5d57b5960745fafe3085796699c158671d414e07ea2d85474de17deee30d7d`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `26226978c60f99ad5fdd71bceda088dfc6f5421dfb4b0e86d38f96fda497235c`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:36:16 GMT
- Parent Layer: `65f9e28996cc8717fd988569610f7cc972eafc80ef89b8190e43f083eb1c1153`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `003e7e1f320311437922ac325a0b23b75ca83a0a5857e042777ddcc9648d8d6b`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:36:20 GMT
- Parent Layer: `26226978c60f99ad5fdd71bceda088dfc6f5421dfb4b0e86d38f96fda497235c`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:02b9907763b4b4bae869335bd6bc6635d261e4b4fd425b1c6f4d226b7a160aa9`
- v2 Content-Length: 500.1 KB (500107 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:59:39 GMT
#### `249d6003544ae2da93d203fed581e4ca1e8011bed69950f62f2fc0d633b5a8fb`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:36:21 GMT
- Parent Layer: `003e7e1f320311437922ac325a0b23b75ca83a0a5857e042777ddcc9648d8d6b`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `7285b84f6d9f512344cf12f2e960177a3f03ea7d0bc0c3559d7b5534afd251c7`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:36:22 GMT
- Parent Layer: `249d6003544ae2da93d203fed581e4ca1e8011bed69950f62f2fc0d633b5a8fb`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2.3`
- Total Virtual Size: 716.8 MB (716832147 bytes)
- Total v2 Content-Length: 273.2 MB (273237799 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2`
- Total Virtual Size: 716.8 MB (716832147 bytes)
- Total v2 Content-Length: 273.2 MB (273237799 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2`
- Total Virtual Size: 716.8 MB (716832147 bytes)
- Total v2 Content-Length: 273.2 MB (273237799 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:latest`
- Total Virtual Size: 716.8 MB (716832147 bytes)
- Total v2 Content-Length: 273.2 MB (273237799 bytes)
### Layers (17)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2.3-onbuild`
- Total Virtual Size: 716.8 MB (716832239 bytes)
- Total v2 Content-Length: 273.2 MB (273238305 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:35:20 GMT
- Parent Layer: `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:b1bfa9837a997fb17786c0916a5086651334cebca75cfa1694226702394c1f6b`
- v2 Content-Length: 220.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:48 GMT
#### `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:e4fa71525059ee3ecaea3ea63e422453c684cfe5b07b8eee07cf016e12e4f3ee`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:46 GMT
#### `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38c58af3299b00966f51308111c4ad5a9840d94c5e2bde33b09eec80c4537068`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2-onbuild`
- Total Virtual Size: 716.8 MB (716832239 bytes)
- Total v2 Content-Length: 273.2 MB (273238305 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:35:20 GMT
- Parent Layer: `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:b1bfa9837a997fb17786c0916a5086651334cebca75cfa1694226702394c1f6b`
- v2 Content-Length: 220.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:48 GMT
#### `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:e4fa71525059ee3ecaea3ea63e422453c684cfe5b07b8eee07cf016e12e4f3ee`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:46 GMT
#### `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38c58af3299b00966f51308111c4ad5a9840d94c5e2bde33b09eec80c4537068`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2-onbuild`
- Total Virtual Size: 716.8 MB (716832239 bytes)
- Total v2 Content-Length: 273.2 MB (273238305 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:35:20 GMT
- Parent Layer: `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:b1bfa9837a997fb17786c0916a5086651334cebca75cfa1694226702394c1f6b`
- v2 Content-Length: 220.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:48 GMT
#### `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:e4fa71525059ee3ecaea3ea63e422453c684cfe5b07b8eee07cf016e12e4f3ee`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:46 GMT
#### `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38c58af3299b00966f51308111c4ad5a9840d94c5e2bde33b09eec80c4537068`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:onbuild`
- Total Virtual Size: 716.8 MB (716832239 bytes)
- Total v2 Content-Length: 273.2 MB (273238305 bytes)
### Layers (24)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:24:45 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 44.4 MB (44355942 bytes)
- v2 Blob: `sha256:eba087ca53a356384db448d54a51620cde9e91d4935e7cd134c3c571df8447c4`
- v2 Content-Length: 18.5 MB (18538916 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 22:15:52 GMT
#### `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
openssh-client \
subversion \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Thu, 20 Aug 2015 20:25:45 GMT
- Parent Layer: `f972ade4c9d5f9863b782ee685c8ec80da9bdb8e43834919214dd68d501687f0`
- Docker Version: 1.7.1
- Virtual Size: 122.3 MB (122318537 bytes)
- v2 Blob: `sha256:a068cb6fd68bb10bf1f97beedee2837c2b2a52109dbbb59ea25462d661006e0d`
- v2 Content-Length: 42.3 MB (42340018 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:59:13 GMT
#### `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
```dockerfile
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev \
libmagickcore-dev \
libmagickwand-dev \
libmysqlclient-dev \
libncurses-dev \
libpng-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libwebp-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
make \
patch \
xz-utils \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 16:11:35 GMT
- Parent Layer: `a0b6d62d8b494ada2b9a303ccf398021b2ca2838234f8d5f735743be77ab2726`
- Docker Version: 1.7.1
- Virtual Size: 313.7 MB (313666691 bytes)
- v2 Blob: `sha256:2ac01aa9d22a0c73405fe147734a6acf8929209620ca4a80fe8064449ab7d301`
- v2 Content-Length: 128.2 MB (128191020 bytes)
- v2 Last-Modified: Mon, 24 Aug 2015 16:55:37 GMT
#### `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Tue, 25 Aug 2015 08:29:10 GMT
- Parent Layer: `8f45ce3be01ef6cf47621675c4a75cfdb5b951fb495b9c72394038ac2097c975`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `289272cba3d53350c4caf940ee644847f756e2affcbf8395ef92d3957c7131c3`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
```dockerfile
ENV RUBY_DOWNLOAD_SHA256=df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce
```
- Created: Tue, 25 Aug 2015 08:29:11 GMT
- Parent Layer: `8e840dd94b7840c0765d58f87059e6c16f5c2cb3702501e5ce2a2ea171e5e6e4`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Tue, 25 Aug 2015 08:29:12 GMT
- Parent Layer: `bb92cab4f1d2c11eb4abe1aec0c0679bb8aab2e502571eb9a0e6831bca4aff6a`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Tue, 25 Aug 2015 08:29:13 GMT
- Parent Layer: `9492043fccad2045959a44f6369160ca1d0267ba56ef4f901f572d8d30f26d5d`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:5188b4571f63017808fb16c99b8a0d65877861ebd0ed012d40bfdca40bcb59c6`
- v2 Content-Length: 161.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:13 GMT
#### `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
```dockerfile
RUN apt-get update \
&& apt-get install -y bison libgdbm-dev ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& apt-get purge -y --auto-remove bison libgdbm-dev ruby \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
```
- Created: Tue, 25 Aug 2015 08:33:28 GMT
- Parent Layer: `88c67bfdcf7beb31434239ecbcb4d01a485928b07dff2623497e658fee831058`
- Docker Version: 1.7.1
- Virtual Size: 110.2 MB (110191494 bytes)
- v2 Blob: `sha256:9ae147d5c2ee8eb77098cf6758c9baa5326820e8b45bf8b1d6b881706d9a59b2`
- v2 Content-Length: 32.3 MB (32298846 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:10:10 GMT
#### `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:29 GMT
- Parent Layer: `6171e245fc5d75280f25a612ee2884baf062e6cd37ee9dc2549cc9355875f4f8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `ab3e12de2e0b9081e6524e66f16c853470be61017a2aca12015d0ba4560f7569`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Tue, 25 Aug 2015 08:33:30 GMT
- Parent Layer: `f81328f6b62f5d3c425ca7788ba5bc498671f934a2cd3e493d1b7850582bb2e8`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Tue, 25 Aug 2015 08:33:33 GMT
- Parent Layer: `5f9e00ef48855e50512bc66a11195d5399cb25a0c40da0bc0117c6668ad2d8f2`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:6cbfd2ac0a2d5fd80e389be09a55e474a7c19d0ac075f5bdc4f6f800a897b57c`
- v2 Content-Length: 500.1 KB (500109 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 04:09:45 GMT
#### `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `4d34bce3681fbe7d6e44dd64d64aec4bfba04be3d228ada179fe26a7cd8e0837`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
```dockerfile
CMD ["irb"]
```
- Created: Tue, 25 Aug 2015 08:33:34 GMT
- Parent Layer: `f4e06c3e530e394004179c8e95d4ac63d2901ba3dee2899b5c6aecd593d3cf17`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
```dockerfile
RUN bundle config --global frozen 1
```
- Created: Tue, 25 Aug 2015 08:35:20 GMT
- Parent Layer: `97e3c96f87f80b46f61a93599bec45fbf0600e3962d6e5cdf6abf37b563904a5`
- Docker Version: 1.7.1
- Virtual Size: 92.0 B
- v2 Blob: `sha256:b1bfa9837a997fb17786c0916a5086651334cebca75cfa1694226702394c1f6b`
- v2 Content-Length: 220.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:48 GMT
#### `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
```dockerfile
RUN mkdir -p /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `d8e0f924467616d8a3a488ce7dc887bbdaa2b6580d35dc8d07e7ea18e03cabe6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:e4fa71525059ee3ecaea3ea63e422453c684cfe5b07b8eee07cf016e12e4f3ee`
- v2 Content-Length: 126.0 B
- v2 Last-Modified: Thu, 27 Aug 2015 04:16:46 GMT
#### `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
```dockerfile
WORKDIR /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:21 GMT
- Parent Layer: `c632b2a2fb60c1b15ca386b9b4812823fdeb3abc27dab785bfc517d08d9893d5`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
```dockerfile
ONBUILD COPY Gemfile /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `b59fea84a8671a0f9970a5f42e02a0eca91be10d883a13a01be51526a0744b29`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
```dockerfile
ONBUILD COPY Gemfile.lock /usr/src/app/
```
- Created: Tue, 25 Aug 2015 08:35:22 GMT
- Parent Layer: `86747cd7cda492a86094ea378b0c6f8350f6437b23aab11ed3fba63c1e6410ca`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
```dockerfile
ONBUILD RUN bundle install
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `22fd69c6d4a0415870987586be71e41c81d7f8473362f3d3e83258c7e32e6cb1`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `38c58af3299b00966f51308111c4ad5a9840d94c5e2bde33b09eec80c4537068`
```dockerfile
ONBUILD COPY . /usr/src/app
```
- Created: Tue, 25 Aug 2015 08:35:23 GMT
- Parent Layer: `b5412c834ff7b533a987151a66a0e9802d91bdb893a72acc9074e3e0a35476b2`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2.3-slim`
- Total Virtual Size: 275.1 MB (275090124 bytes)
- Total v2 Content-Length: 98.0 MB (97978418 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:38:17 GMT
- Parent Layer: `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:38:19 GMT
- Parent Layer: `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:dc5f86b37acc5f9915dc99872437cd2e2fd5d9d3e2f701f3c0b259c9d967e699`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:21 GMT
#### `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:44:08 GMT
- Parent Layer: `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111037759 bytes)
- v2 Blob: `sha256:9feda6914fac5a52a06edba0a5704d91007d876ac4c9bd5d26c92a0fb303f276`
- v2 Content-Length: 32.5 MB (32506887 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:17 GMT
#### `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:10 GMT
- Parent Layer: `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:44:11 GMT
- Parent Layer: `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:44:12 GMT
- Parent Layer: `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:44:16 GMT
- Parent Layer: `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:4d0258f448812a5258a41ae85d22e3b9f23ff360c8c52918b7a5ccdd018d14e4`
- v2 Content-Length: 500.1 KB (500135 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:18:45 GMT
#### `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4519114432f55ae8eeb1ae042ea5e22386a5296b754aa95108ceab2bf82fa396`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2.2-slim`
- Total Virtual Size: 275.1 MB (275090124 bytes)
- Total v2 Content-Length: 98.0 MB (97978418 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:38:17 GMT
- Parent Layer: `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:38:19 GMT
- Parent Layer: `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:dc5f86b37acc5f9915dc99872437cd2e2fd5d9d3e2f701f3c0b259c9d967e699`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:21 GMT
#### `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:44:08 GMT
- Parent Layer: `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111037759 bytes)
- v2 Blob: `sha256:9feda6914fac5a52a06edba0a5704d91007d876ac4c9bd5d26c92a0fb303f276`
- v2 Content-Length: 32.5 MB (32506887 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:17 GMT
#### `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:10 GMT
- Parent Layer: `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:44:11 GMT
- Parent Layer: `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:44:12 GMT
- Parent Layer: `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:44:16 GMT
- Parent Layer: `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:4d0258f448812a5258a41ae85d22e3b9f23ff360c8c52918b7a5ccdd018d14e4`
- v2 Content-Length: 500.1 KB (500135 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:18:45 GMT
#### `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4519114432f55ae8eeb1ae042ea5e22386a5296b754aa95108ceab2bf82fa396`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:2-slim`
- Total Virtual Size: 275.1 MB (275090124 bytes)
- Total v2 Content-Length: 98.0 MB (97978418 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:38:17 GMT
- Parent Layer: `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:38:19 GMT
- Parent Layer: `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:dc5f86b37acc5f9915dc99872437cd2e2fd5d9d3e2f701f3c0b259c9d967e699`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:21 GMT
#### `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:44:08 GMT
- Parent Layer: `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111037759 bytes)
- v2 Blob: `sha256:9feda6914fac5a52a06edba0a5704d91007d876ac4c9bd5d26c92a0fb303f276`
- v2 Content-Length: 32.5 MB (32506887 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:17 GMT
#### `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:10 GMT
- Parent Layer: `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:44:11 GMT
- Parent Layer: `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:44:12 GMT
- Parent Layer: `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:44:16 GMT
- Parent Layer: `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:4d0258f448812a5258a41ae85d22e3b9f23ff360c8c52918b7a5ccdd018d14e4`
- v2 Content-Length: 500.1 KB (500135 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:18:45 GMT
#### `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4519114432f55ae8eeb1ae042ea5e22386a5296b754aa95108ceab2bf82fa396`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
## `ruby:slim`
- Total Virtual Size: 275.1 MB (275090124 bytes)
- Total v2 Content-Length: 98.0 MB (97978418 bytes)
### Layers (14)
#### `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
```dockerfile
ADD file:b770303e11edaa0ad0d8f43f6db4fa26673923912b5d5f7cb748ba025e6c4d3b in /
```
- Created: Thu, 20 Aug 2015 20:17:59 GMT
- Docker Version: 1.7.1
- Virtual Size: 125.2 MB (125174904 bytes)
- v2 Blob: `sha256:7ccc78f8af6db23a5013f7b90b5672b82d69dd2fb30d1e6736dba29209aceee7`
- v2 Content-Length: 51.4 MB (51368377 bytes)
- v2 Last-Modified: Thu, 20 Aug 2015 20:40:09 GMT
#### `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
```dockerfile
CMD ["/bin/bash"]
```
- Created: Thu, 20 Aug 2015 20:18:01 GMT
- Parent Layer: `2c49f83e0b13f73bf3d276c9fe26ba9aa94d2a1614e866642b95cb0245d0cdab`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
```dockerfile
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
curl \
libffi-dev \
libgdbm3 \
libssl-dev \
libyaml-dev \
procps \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
```
- Created: Mon, 24 Aug 2015 22:21:08 GMT
- Parent Layer: `4a5e6db8c0693a16de88b7559ded7c1cb804018571b137e13abb1713ce6a71cf`
- Docker Version: 1.7.1
- Virtual Size: 37.8 MB (37752882 bytes)
- v2 Blob: `sha256:7a0c5412f04c16fded90f2746384d0bbe4c221734daddf521e148d3dd591abac`
- v2 Content-Length: 13.6 MB (13602537 bytes)
- v2 Last-Modified: Thu, 27 Aug 2015 05:54:54 GMT
#### `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
```dockerfile
ENV RUBY_MAJOR=2.2
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `787f8f2047af77d883efef4fee3b2041f0722d1f311f1c174c461d7c7c7a6b0f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
```dockerfile
ENV RUBY_VERSION=2.2.3
```
- Created: Mon, 24 Aug 2015 22:38:16 GMT
- Parent Layer: `18204466700b87b24b7eca6b44fbf71a7a8789d1a95b9da853dfbab985f52924`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
```dockerfile
ENV RUBYGEMS_VERSION=2.4.8
```
- Created: Mon, 24 Aug 2015 22:38:17 GMT
- Parent Layer: `3c2287fb1a19c752f5351286c773ccad9e1bef2e3d03ef95c7fd248623115b4f`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
```dockerfile
RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc"
```
- Created: Mon, 24 Aug 2015 22:38:19 GMT
- Parent Layer: `09254ebefe0fb89295c31cb36b74ef85127ed21e87d7a0c691ee7823cabf0ffb`
- Docker Version: 1.7.1
- Virtual Size: 45.0 B
- v2 Blob: `sha256:dc5f86b37acc5f9915dc99872437cd2e2fd5d9d3e2f701f3c0b259c9d967e699`
- v2 Content-Length: 162.0 B
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:21 GMT
#### `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
```dockerfile
RUN buildDeps=' \
autoconf \
bison \
gcc \
libbz2-dev \
libgdbm-dev \
libglib2.0-dev \
libncurses-dev \
libreadline-dev \
libxml2-dev \
libxslt-dev \
make \
ruby \
' \
&& set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/ruby \
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
| tar -xjC /usr/src/ruby --strip-components=1 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby \
&& apt-get purge -y --auto-remove $buildDeps
```
- Created: Mon, 24 Aug 2015 22:44:08 GMT
- Parent Layer: `9573825b63f008a8aee81b269c0fedfb694d930de9a600b03e53469d4685874c`
- Docker Version: 1.7.1
- Virtual Size: 111.0 MB (111037759 bytes)
- v2 Blob: `sha256:9feda6914fac5a52a06edba0a5704d91007d876ac4c9bd5d26c92a0fb303f276`
- v2 Content-Length: 32.5 MB (32506887 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:19:17 GMT
#### `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
```dockerfile
ENV GEM_HOME=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:10 GMT
- Parent Layer: `bd00463fec325edfa318965b4d292474b1315d317fe12e2afb4840165124eb35`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
```dockerfile
ENV PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
```
- Created: Mon, 24 Aug 2015 22:44:11 GMT
- Parent Layer: `a5d28b49de754dcea0dcf48eb97ad9a02bbf59571ae32a7ab5602cf259baf43c`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
```dockerfile
ENV BUNDLER_VERSION=1.10.6
```
- Created: Mon, 24 Aug 2015 22:44:12 GMT
- Parent Layer: `743c29cf2dab1a1b0e9bbda35ce809014f12b74d82ee7f79ba3d49b4a6039f03`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
```dockerfile
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin"
```
- Created: Mon, 24 Aug 2015 22:44:16 GMT
- Parent Layer: `58756bf05dac55723ef781d33bac7abf2ec4c5c7c781410e89886e3a38d2c95b`
- Docker Version: 1.7.1
- Virtual Size: 1.1 MB (1124534 bytes)
- v2 Blob: `sha256:4d0258f448812a5258a41ae85d22e3b9f23ff360c8c52918b7a5ccdd018d14e4`
- v2 Content-Length: 500.1 KB (500135 bytes)
- v2 Last-Modified: Tue, 25 Aug 2015 03:18:45 GMT
#### `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
```dockerfile
ENV BUNDLE_APP_CONFIG=/usr/local/bundle
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `ba9a7583be6d65a43ab1f14750b977aadf69bf6ecd5d720978ad623877042ea6`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
#### `4519114432f55ae8eeb1ae042ea5e22386a5296b754aa95108ceab2bf82fa396`
```dockerfile
CMD ["irb"]
```
- Created: Mon, 24 Aug 2015 22:44:17 GMT
- Parent Layer: `1616eb4a729e54b52b9b6268fd9b77df9354b3ceb6f1e4a1dc81c9b9aa4d3011`
- Docker Version: 1.7.1
- Virtual Size: 0.0 B
- v2 Blob: `sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4`
- v2 Content-Length: 32.0 B
- v2 Last-Modified: Fri, 27 Mar 2015 17:18:47 GMT
| mattrobenolt/docs | ruby/tag-details.md | Markdown | mit | 274,905 |
<div class="commune_descr limited">
<p>
Neufchâtel-Hardelot est
une ville géographiquement positionnée dans le département des Pas-de-Calais en Nord-Pas-de-Calais. Elle comptait 3 759 habitants en 2008.</p>
<p>La commune propose de multiples aménagements, elle dispose, entre autres, de deux terrains de tennis, un centre d'équitation, deux parcours de golf et une base nautique.</p>
<p>À proximité de Neufchâtel-Hardelot sont situées les villes de
<a href="{{VLROOT}}/immobilier/camiers_62201/">Camiers</a> localisée à 5 km, 2 605 habitants,
<a href="{{VLROOT}}/immobilier/halinghen_62402/">Halinghen</a> située à 4 km, 274 habitants,
<a href="{{VLROOT}}/immobilier/hesdigneul-les-boulogne_62446/">Hesdigneul-lès-Boulogne</a> située à 5 km, 671 habitants,
<a href="{{VLROOT}}/immobilier/nesles_62603/">Nesles</a> à 1 km, 1 049 habitants,
<a href="{{VLROOT}}/immobilier/carly_62214/">Carly</a> localisée à 5 km, 542 habitants,
<a href="{{VLROOT}}/immobilier/condette_62235/">Condette</a> à 4 km, 2 596 habitants,
entre autres. De plus, Neufchâtel-Hardelot est située à seulement douze km de <a href="{{VLROOT}}/immobilier/boulogne-sur-mer_62160/">Boulogne-sur-Mer</a>.</p>
<p>À Neufchâtel-Hardelot le salaire médian mensuel par personne est situé à environ 2 484 € net. C'est supérieur à la moyenne du pays.</p>
<p>Le parc d'habitations, à Neufchâtel-Hardelot, se décomposait en 2011 en 2 477 appartements et 2 533 maisons soit
un marché relativement équilibré.</p>
<p>À Neufchâtel-Hardelot, le prix moyen à la vente d'un appartement s'évalue à 3 273 € du m² en vente. la valorisation moyenne d'une maison à l'achat se situe à 2 037 € du m². À la location la valeur moyenne se situe à 11,95 € du m² mensuel.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/62604.html | HTML | mit | 1,880 |
//IP Flow Information Export (IPFIX) Entities
// Last Updated 2013-01-15
// http://www.iana.org/assignments/ipfix/ipfix.xml
var entities = [];
//ipfix-information-elements
entities['elements'] = {
"1":{"name":"octetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"octets"},
"2":{"name":"packetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"packets"},
"3":{"name":"deltaFlowCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter"},
"4":{"name":"protocolIdentifier","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"5":{"name":"ipClassOfService","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"6":{"name":"tcpControlBits","dataType":"unsigned8","dataTypeSemantics":"flags","group":"minMax"},
"7":{"name":"sourceTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"8":{"name":"sourceIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"ipHeader"},
"9":{"name":"sourceIPv4PrefixLength","dataType":"unsigned8","group":"ipHeader","units":"bits"},
"10":{"name":"ingressInterface","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"11":{"name":"destinationTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"12":{"name":"destinationIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"ipHeader"},
"13":{"name":"destinationIPv4PrefixLength","dataType":"unsigned8","group":"ipHeader","units":"bits"},
"14":{"name":"egressInterface","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"15":{"name":"ipNextHopIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"derived"},
"16":{"name":"bgpSourceAsNumber","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"derived"},
"17":{"name":"bgpDestinationAsNumber","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"derived"},
"18":{"name":"bgpNextHopIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"derived"},
"19":{"name":"postMCastPacketDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"packets"},
"20":{"name":"postMCastOctetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"octets"},
"21":{"name":"flowEndSysUpTime","dataType":"unsigned32","group":"timestamp","units":"milliseconds"},
"22":{"name":"flowStartSysUpTime","dataType":"unsigned32","group":"timestamp","units":"milliseconds"},
"23":{"name":"postOctetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"octets"},
"24":{"name":"postPacketDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"packets"},
"25":{"name":"minimumIpTotalLength","dataType":"unsigned64","group":"minMax","units":"octets"},
"26":{"name":"maximumIpTotalLength","dataType":"unsigned64","group":"minMax","units":"octets"},
"27":{"name":"sourceIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"ipHeader"},
"28":{"name":"destinationIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"ipHeader"},
"29":{"name":"sourceIPv6PrefixLength","dataType":"unsigned8","group":"ipHeader","units":"bits"},
"30":{"name":"destinationIPv6PrefixLength","dataType":"unsigned8","group":"ipHeader","units":"bits"},
"31":{"name":"flowLabelIPv6","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"ipHeader"},
"32":{"name":"icmpTypeCodeIPv4","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"33":{"name":"igmpType","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"transportHeader"},
"36":{"name":"flowActiveTimeout","dataType":"unsigned16","group":"misc","units":"seconds"},
"37":{"name":"flowIdleTimeout","dataType":"unsigned16","group":"misc","units":"seconds"},
"40":{"name":"exportedOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"octets"},
"41":{"name":"exportedMessageTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"messages"},
"42":{"name":"exportedFlowRecordTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"flows"},
"44":{"name":"sourceIPv4Prefix","dataType":"ipv4Address","group":"ipHeader"},
"45":{"name":"destinationIPv4Prefix","dataType":"ipv4Address","group":"ipHeader"},
"46":{"name":"mplsTopLabelType","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"derived"},
"47":{"name":"mplsTopLabelIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"derived"},
"52":{"name":"minimumTTL","dataType":"unsigned8","group":"minMax","units":"hops"},
"53":{"name":"maximumTTL","dataType":"unsigned8","group":"minMax","units":"hops"},
"54":{"name":"fragmentIdentification","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"ipHeader"},
"55":{"name":"postIpClassOfService","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"56":{"name":"sourceMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier","group":"subIpHeader"},
"57":{"name":"postDestinationMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier","group":"subIpHeader"},
"58":{"name":"vlanId","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"subIpHeader"},
"59":{"name":"postVlanId","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"subIpHeader"},
"60":{"name":"ipVersion","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"61":{"name":"flowDirection","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"misc"},
"62":{"name":"ipNextHopIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"derived"},
"63":{"name":"bgpNextHopIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"derived"},
"64":{"name":"ipv6ExtensionHeaders","dataType":"unsigned32","dataTypeSemantics":"flags","group":"minMax"},
"70":{"name":"mplsTopLabelStackSection","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"71":{"name":"mplsLabelStackSection2","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"72":{"name":"mplsLabelStackSection3","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"73":{"name":"mplsLabelStackSection4","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"74":{"name":"mplsLabelStackSection5","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"75":{"name":"mplsLabelStackSection6","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"76":{"name":"mplsLabelStackSection7","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"77":{"name":"mplsLabelStackSection8","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"78":{"name":"mplsLabelStackSection9","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"79":{"name":"mplsLabelStackSection10","dataType":"octetArray","dataTypeSemantics":"identifier","group":"subIpHeader"},
"80":{"name":"destinationMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier","group":"subIpHeader"},
"81":{"name":"postSourceMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier","group":"subIpHeader"},
"82":{"name":"interfaceName","dataType":"string"},"83":{"name":"interfaceDescription","dataType":"string"},
"85":{"name":"octetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"octets"},
"86":{"name":"packetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"88":{"name":"fragmentOffset","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"ipHeader"},
"90":{"name":"mplsVpnRouteDistinguisher","dataType":"octetArray","dataTypeSemantics":"identifier","group":"derived"},
"91":{"name":"mplsTopLabelPrefixLength","dataType":"unsigned8","dataTypeSemantics":"identifier","units":"bits"},
"94":{"name":"applicationDescription","dataType":"string"},
"95":{"name":"applicationId","dataType":"octetArray","dataTypeSemantics":"identifier"},
"96":{"name":"applicationName","dataType":"string"},
"98":{"name":"postIpDiffServCodePoint","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"99":{"name":"multicastReplicationFactor","dataType":"unsigned32","dataTypeSemantics":"quantity"},
"101":{"name":"classificationEngineId","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"128":{"name":"bgpNextAdjacentAsNumber","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"derived"},
"129":{"name":"bgpPrevAdjacentAsNumber","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"derived"},
"130":{"name":"exporterIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"config"},
"131":{"name":"exporterIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"config"},
"132":{"name":"droppedOctetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"octets"},
"133":{"name":"droppedPacketDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","group":"flowCounter","units":"packets"},
"134":{"name":"droppedOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"octets"},
"135":{"name":"droppedPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"136":{"name":"flowEndReason","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"misc"},
"137":{"name":"commonPropertiesId","dataType":"unsigned64","dataTypeSemantics":"identifier","group":"scope"},
"138":{"name":"observationPointId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"139":{"name":"icmpTypeCodeIPv6","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"140":{"name":"mplsTopLabelIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"derived"},
"141":{"name":"lineCardId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"142":{"name":"portId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"143":{"name":"meteringProcessId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"144":{"name":"exportingProcessId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"145":{"name":"templateId","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"scope"},
"146":{"name":"wlanChannelId","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"subIpHeader"},
"147":{"name":"wlanSSID","dataType":"string","group":"subIpHeader"},
"148":{"name":"flowId","dataType":"unsigned64","dataTypeSemantics":"identifier","group":"scope"},
"149":{"name":"observationDomainId","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"scope"},
"150":{"name":"flowStartSeconds","dataType":"dateTimeSeconds","group":"timestamp","units":"seconds"},
"151":{"name":"flowEndSeconds","dataType":"dateTimeSeconds","group":"timestamp","units":"seconds"},
"152":{"name":"flowStartMilliseconds","dataType":"dateTimeMilliseconds","group":"timestamp","units":"milliseconds"},
"153":{"name":"flowEndMilliseconds","dataType":"dateTimeMilliseconds","group":"timestamp","units":"milliseconds"},
"154":{"name":"flowStartMicroseconds","dataType":"dateTimeMicroseconds","group":"timestamp","units":"microseconds"},
"155":{"name":"flowEndMicroseconds","dataType":"dateTimeMicroseconds","group":"timestamp","units":"microseconds"},
"156":{"name":"flowStartNanoseconds","dataType":"dateTimeNanoseconds","group":"timestamp","units":"nanoseconds"},
"157":{"name":"flowEndNanoseconds","dataType":"dateTimeNanoseconds","group":"timestamp","units":"nanoseconds"},
"158":{"name":"flowStartDeltaMicroseconds","dataType":"unsigned32","group":"timestamp","units":"microseconds"},
"159":{"name":"flowEndDeltaMicroseconds","dataType":"unsigned32","group":"timestamp","units":"microseconds"},
"160":{"name":"systemInitTimeMilliseconds","dataType":"dateTimeMilliseconds","group":"timestamp","units":"milliseconds"},
"161":{"name":"flowDurationMilliseconds","dataType":"unsigned32","group":"misc","units":"milliseconds"},
"162":{"name":"flowDurationMicroseconds","dataType":"unsigned32","group":"misc","units":"microseconds"},
"163":{"name":"observedFlowTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"flows"},
"164":{"name":"ignoredPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"packets"},
"165":{"name":"ignoredOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"octets"},
"166":{"name":"notSentFlowTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"flows"},
"167":{"name":"notSentPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"packets"},
"168":{"name":"notSentOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"processCounter","units":"octets"},
"169":{"name":"destinationIPv6Prefix","dataType":"ipv6Address","group":"ipHeader"},
"170":{"name":"sourceIPv6Prefix","dataType":"ipv6Address","group":"ipHeader"},
"171":{"name":"postOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"octets"},
"172":{"name":"postPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"173":{"name":"flowKeyIndicator","dataType":"unsigned64","dataTypeSemantics":"flags","group":"config"},
"174":{"name":"postMCastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"175":{"name":"postMCastOctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"octets"},
"176":{"name":"icmpTypeIPv4","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"transportHeader"},
"177":{"name":"icmpCodeIPv4","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"transportHeader"},
"178":{"name":"icmpTypeIPv6","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"transportHeader"},
"179":{"name":"icmpCodeIPv6","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"transportHeader"},
"180":{"name":"udpSourcePort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"181":{"name":"udpDestinationPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"182":{"name":"tcpSourcePort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"183":{"name":"tcpDestinationPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"transportHeader"},
"184":{"name":"tcpSequenceNumber","dataType":"unsigned32","group":"transportHeader"},
"185":{"name":"tcpAcknowledgementNumber","dataType":"unsigned32","group":"transportHeader"},
"186":{"name":"tcpWindowSize","dataType":"unsigned16","group":"transportHeader"},
"187":{"name":"tcpUrgentPointer","dataType":"unsigned16","group":"transportHeader"},
"188":{"name":"tcpHeaderLength","dataType":"unsigned8","group":"transportHeader","units":"octets"},
"189":{"name":"ipHeaderLength","dataType":"unsigned8","group":"ipHeader","units":"octets"},
"190":{"name":"totalLengthIPv4","dataType":"unsigned16","group":"ipHeader","units":"octets"},
"191":{"name":"payloadLengthIPv6","dataType":"unsigned16","group":"ipHeader","units":"octets"},
"192":{"name":"ipTTL","dataType":"unsigned8","group":"ipHeader","units":"hops"},
"193":{"name":"nextHeaderIPv6","dataType":"unsigned8","group":"ipHeader"},
"194":{"name":"mplsPayloadLength","dataType":"unsigned32","group":"subIpHeader","units":"octets"},
"195":{"name":"ipDiffServCodePoint","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"196":{"name":"ipPrecedence","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"ipHeader"},
"197":{"name":"fragmentFlags","dataType":"unsigned8","dataTypeSemantics":"flags","group":"ipHeader"},
"198":{"name":"octetDeltaSumOfSquares","dataType":"unsigned64","group":"flowCounter"},
"199":{"name":"octetTotalSumOfSquares","dataType":"unsigned64","group":"flowCounter","units":"octets"},
"200":{"name":"mplsTopLabelTTL","dataType":"unsigned8","group":"subIpHeader","units":"hops"},
"201":{"name":"mplsLabelStackLength","dataType":"unsigned32","group":"subIpHeader","units":"octets"},
"202":{"name":"mplsLabelStackDepth","dataType":"unsigned32","group":"subIpHeader","units":"label stack entries"},
"203":{"name":"mplsTopLabelExp","dataType":"unsigned8","dataTypeSemantics":"flags","group":"subIpHeader"},
"204":{"name":"ipPayloadLength","dataType":"unsigned32","group":"derived","units":"octets"},
"205":{"name":"udpMessageLength","dataType":"unsigned16","group":"transportHeader","units":"octets"},
"206":{"name":"isMulticast","dataType":"unsigned8","dataTypeSemantics":"flags","group":"ipHeader"},
"207":{"name":"ipv4IHL","dataType":"unsigned8","group":"ipHeader","units":"4 octets"},
"208":{"name":"ipv4Options","dataType":"unsigned32","dataTypeSemantics":"flags","group":"minMax"},
"209":{"name":"tcpOptions","dataType":"unsigned64","dataTypeSemantics":"flags","group":"minMax"},
"210":{"name":"paddingOctets","dataType":"octetArray","group":"padding"},
"211":{"name":"collectorIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier","group":"config"},
"212":{"name":"collectorIPv6Address","dataType":"ipv6Address","dataTypeSemantics":"identifier","group":"config"},
"213":{"name":"exportInterface","dataType":"unsigned32","dataTypeSemantics":"identifier","group":"config"},
"214":{"name":"exportProtocolVersion","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"config"},
"215":{"name":"exportTransportProtocol","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"config"},
"216":{"name":"collectorTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"config"},
"217":{"name":"exporterTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier","group":"config"},
"218":{"name":"tcpSynTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"219":{"name":"tcpFinTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"220":{"name":"tcpRstTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"221":{"name":"tcpPshTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"222":{"name":"tcpAckTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"223":{"name":"tcpUrgTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","group":"flowCounter","units":"packets"},
"224":{"name":"ipTotalLength","dataType":"unsigned64","group":"ipHeader","units":"octets"},
"225":{"name":"postNATSourceIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier"},
"226":{"name":"postNATDestinationIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier"},
"227":{"name":"postNAPTSourceTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"228":{"name":"postNAPTDestinationTransportPort","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"229":{"name":"natOriginatingAddressRealm","dataType":"unsigned8","dataTypeSemantics":"flags"},
"230":{"name":"natEvent","dataType":"unsigned8"},
"231":{"name":"initiatorOctets","dataType":"unsigned64","units":"octets"},
"232":{"name":"responderOctets","dataType":"unsigned64","units":"octets"},
"233":{"name":"firewallEvent","dataType":"unsigned8"},
"234":{"name":"ingressVRFID","dataType":"unsigned32"},
"235":{"name":"egressVRFID","dataType":"unsigned32"},
"236":{"name":"VRFname","dataType":"string"},
"237":{"name":"postMplsTopLabelExp","dataType":"unsigned8","dataTypeSemantics":"flags","group":"subIpHeader"},
"238":{"name":"tcpWindowScale","dataType":"unsigned16","group":"transportHeader"},
"239":{"name":"biflowDirection","dataType":"unsigned8","dataTypeSemantics":"identifier","group":"misc"},
"240":{"name":"ethernetHeaderLength","dataType":"unsigned8","dataTypeSemantics":"identifier","units":"octets"},
"241":{"name":"ethernetPayloadLength","dataType":"unsigned16","dataTypeSemantics":"identifier","units":"octets"},
"242":{"name":"ethernetTotalLength","dataType":"unsigned16","dataTypeSemantics":"identifier","units":"octets"},
"243":{"name":"dot1qVlanId","dataType":"unsigned16","dataTypeSemantics":"identifier","units":"octets"},
"244":{"name":"dot1qPriority","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"245":{"name":"dot1qCustomerVlanId","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"246":{"name":"dot1qCustomerPriority","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"247":{"name":"metroEvcId","dataType":"string"},
"248":{"name":"metroEvcType","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"249":{"name":"pseudoWireId","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"250":{"name":"pseudoWireType","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"251":{"name":"pseudoWireControlWord","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"252":{"name":"ingressPhysicalInterface","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"253":{"name":"egressPhysicalInterface","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"254":{"name":"postDot1qVlanId","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"255":{"name":"postDot1qCustomerVlanId","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"256":{"name":"ethernetType","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"257":{"name":"postIpPrecedence","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"258":{"name":"collectionTimeMilliseconds","dataType":"dateTimeMilliseconds"},
"259":{"name":"exportSctpStreamId","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"260":{"name":"maxExportSeconds","dataType":"dateTimeSeconds","units":"seconds"},
"261":{"name":"maxFlowEndSeconds","dataType":"dateTimeSeconds","units":"seconds"},
"262":{"name":"messageMD5Checksum","dataType":"octetArray"},
"263":{"name":"messageScope","dataType":"unsigned8"},
"264":{"name":"minExportSeconds","dataType":"dateTimeSeconds","units":"seconds"},
"265":{"name":"minFlowStartSeconds","dataType":"dateTimeSeconds","units":"seconds"},
"266":{"name":"opaqueOctets","dataType":"octetArray"},
"267":{"name":"sessionScope","dataType":"unsigned8"},
"268":{"name":"maxFlowEndMicroseconds","dataType":"dateTimeMicroseconds","units":"microseconds"},
"269":{"name":"maxFlowEndMilliseconds","dataType":"dateTimeMilliseconds","units":"milliseconds"},
"270":{"name":"maxFlowEndNanoseconds","dataType":"dateTimeNanoseconds","units":"nanoseconds"},
"271":{"name":"minFlowStartMicroseconds","dataType":"dateTimeMicroseconds","units":"microseconds"},
"272":{"name":"minFlowStartMilliseconds","dataType":"dateTimeMilliseconds","units":"milliseconds"},
"273":{"name":"minFlowStartNanoseconds","dataType":"dateTimeNanoseconds","units":"nanoseconds"},
"274":{"name":"collectorCertificate","dataType":"octetArray"},
"275":{"name":"exporterCertificate","dataType":"octetArray"},
"276":{"name":"dataRecordsReliability","dataType":"boolean","dataTypeSemantics":"identifier"},
"277":{"name":"observationPointType","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"278":{"name":"connectionCountNew","dataType":"unsigned32","dataTypeSemantics":"deltaCounter"},
"279":{"name":"connectionSumDuration","dataType":"unsigned64"},
"280":{"name":"connectionTransactionId","dataType":"unsigned64","dataTypeSemantics":"identifier"},
"281":{"name":"postNATSourceIPv6Address","dataType":"ipv6Address"},
"282":{"name":"postNATDestinationIPv6Address","dataType":"ipv6Address"},
"283":{"name":"natPoolId","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"284":{"name":"natPoolName","dataType":"string"},
"285":{"name":"anonymizationFlags","dataType":"unsigned16","dataTypeSemantics":"flags"},
"286":{"name":"anonymizationTechnique","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"287":{"name":"informationElementIndex","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"288":{"name":"p2pTechnology","dataType":"string"},
"289":{"name":"tunnelTechnology","dataType":"string"},
"290":{"name":"encryptedTechnology","dataType":"string"},
"291":{"name":"basicList","dataType":"basicList","dataTypeSemantics":"list"},
"292":{"name":"subTemplateList","dataType":"subTemplateList","dataTypeSemantics":"list"},
"293":{"name":"subTemplateMultiList","dataType":"subTemplateMultiList","dataTypeSemantics":"list"},
"294":{"name":"bgpValidityState","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"295":{"name":"IPSecSPI","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"296":{"name":"greKey","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"297":{"name":"natType","dataType":"unsigned8","dataTypeSemantics":"identifier"},
"298":{"name":"initiatorPackets","dataType":"unsigned64","dataTypeSemantics":"identifier","units":"packets"},
"299":{"name":"responderPackets","dataType":"unsigned64","dataTypeSemantics":"identifier","units":"packets"},
"300":{"name":"observationDomainName","dataType":"string"},
"301":{"name":"selectionSequenceId","dataType":"unsigned64","dataTypeSemantics":"identifier"},
"302":{"name":"selectorId","dataType":"unsigned64","dataTypeSemantics":"identifier"},
"303":{"name":"informationElementId","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"304":{"name":"selectorAlgorithm","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"305":{"name":"samplingPacketInterval","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"packets"},
"306":{"name":"samplingPacketSpace","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"packets"},
"307":{"name":"samplingTimeInterval","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"microseconds"},
"308":{"name":"samplingTimeSpace","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"microseconds"},
"309":{"name":"samplingSize","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"packets"},
"310":{"name":"samplingPopulation","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"packets"},
"311":{"name":"samplingProbability","dataType":"float64","dataTypeSemantics":"quantity"},
"312":{"name":"dataLinkFrameSize","dataType":"unsigned16"},
"313":{"name":"ipHeaderPacketSection","dataType":"octetArray"},
"314":{"name":"ipPayloadPacketSection","dataType":"octetArray"},
"315":{"name":"dataLinkFrameSection","dataType":"octetArray"},
"316":{"name":"mplsLabelStackSection","dataType":"octetArray"},
"317":{"name":"mplsPayloadPacketSection","dataType":"octetArray"},
"318":{"name":"selectorIdTotalPktsObserved","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"319":{"name":"selectorIdTotalPktsSelected","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"320":{"name":"absoluteError","dataType":"float64","dataTypeSemantics":"quantity","units":"The units of the Information Element for which the error is specified."},
"321":{"name":"relativeError","dataType":"float64","dataTypeSemantics":"quantity"},
"322":{"name":"observationTimeSeconds","dataType":"dateTimeSeconds","dataTypeSemantics":"quantity","units":"seconds"},
"323":{"name":"observationTimeMilliseconds","dataType":"dateTimeMilliseconds","dataTypeSemantics":"quantity","units":"milliseconds"},
"324":{"name":"observationTimeMicroseconds","dataType":"dateTimeMicroseconds","dataTypeSemantics":"quantity","units":"microseconds"},
"325":{"name":"observationTimeNanoseconds","dataType":"dateTimeNanoseconds","dataTypeSemantics":"quantity","units":"nanoseconds"},
"326":{"name":"digestHashValue","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"327":{"name":"hashIPPayloadOffset","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"328":{"name":"hashIPPayloadSize","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"329":{"name":"hashOutputRangeMin","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"330":{"name":"hashOutputRangeMax","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"331":{"name":"hashSelectedRangeMin","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"332":{"name":"hashSelectedRangeMax","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"333":{"name":"hashDigestOutput","dataType":"boolean","dataTypeSemantics":"quantity"},
"334":{"name":"hashInitialiserValue","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"335":{"name":"selectorName","dataType":"string"},
"336":{"name":"upperCILimit","dataType":"float64","dataTypeSemantics":"quantity"},
"337":{"name":"lowerCILimit","dataType":"float64","dataTypeSemantics":"quantity"},
"338":{"name":"confidenceLevel","dataType":"float64","dataTypeSemantics":"quantity"},
"339":{"name":"informationElementDataType","dataType":"unsigned8"},
"340":{"name":"informationElementDescription","dataType":"string"},
"341":{"name":"informationElementName","dataType":"string"},
"342":{"name":"informationElementRangeBegin","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"343":{"name":"informationElementRangeEnd","dataType":"unsigned64","dataTypeSemantics":"quantity"},
"344":{"name":"informationElementSemantics","dataType":"unsigned8"},
"345":{"name":"informationElementUnits","dataType":"unsigned16"},
"346":{"name":"privateEnterpriseNumber","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"347":{"name":"virtualStationInterfaceId","dataType":"octetArray","dataTypeSemantics":"identifier"},
"348":{"name":"virtualStationInterfaceName","dataType":"string"},
"349":{"name":"virtualStationUUID","dataType":"octetArray","dataTypeSemantics":"identifier"},
"350":{"name":"virtualStationName","dataType":"string"},
"351":{"name":"layer2SegmentId","dataType":"unsigned64","dataTypeSemantics":"identifier"},
"352":{"name":"layer2OctetDeltaCount","dataType":"unsigned64","dataTypeSemantics":"deltaCounter","units":"octets"},
"353":{"name":"layer2OctetTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"octets"},
"354":{"name":"ingressUnicastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"355":{"name":"ingressMulticastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"356":{"name":"ingressBroadcastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"357":{"name":"egressUnicastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"358":{"name":"egressBroadcastPacketTotalCount","dataType":"unsigned64","dataTypeSemantics":"totalCounter","units":"packets"},
"359":{"name":"monitoringIntervalStartMilliSeconds","dataType":"dateTimeMilliseconds","units":"milliseconds"},
"360":{"name":"monitoringIntervalEndMilliSeconds","dataType":"dateTimeMilliseconds","units":"milliseconds"},
"361":{"name":"portRangeStart","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"362":{"name":"portRangeEnd","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"363":{"name":"portRangeStepSize","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"364":{"name":"portRangeNumPorts","dataType":"unsigned16","dataTypeSemantics":"identifier"},
"365":{"name":"staMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier"},
"366":{"name":"staIPv4Address","dataType":"ipv4Address","dataTypeSemantics":"identifier"},
"367":{"name":"wtpMacAddress","dataType":"macAddress","dataTypeSemantics":"identifier"},
"368":{"name":"ingressInterfaceType","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"369":{"name":"egressInterfaceType","dataType":"unsigned32","dataTypeSemantics":"identifier"},
"370":{"name":"rtpSequenceNumber","dataType":"unsigned16"},
"371":{"name":"userName","dataType":"string"},
"372":{"name":"applicationCategoryName","dataType":"string"},
"373":{"name":"applicationSubCategoryName","dataType":"string"},
"374":{"name":"applicationGroupName","dataType":"string"},
"375":{"name":"originalFlowsPresent","dataType":"unsigned64","dataTypeSemantics":"deltaCounter"},
"376":{"name":"originalFlowsInitiated","dataType":"unsigned64","dataTypeSemantics":"deltaCounter"},
"377":{"name":"originalFlowsCompleted","dataType":"unsigned64","dataTypeSemantics":"deltaCounter"},
"378":{"name":"distinctCountOfSourceIPAddress","dataType":"unsigned64","dataTypeSemantics":"totalCounter"},
"379":{"name":"distinctCountOfDestinationIPAddress","dataType":"unsigned64","dataTypeSemantics":"totalCounter"},
"380":{"name":"distinctCountOfSourceIPv4Address","dataType":"unsigned32","dataTypeSemantics":"totalCounter"},
"381":{"name":"distinctCountOfDestinationIPv4Address","dataType":"unsigned32","dataTypeSemantics":"totalCounter"},
"382":{"name":"distinctCountOfSourceIPv6Address","dataType":"unsigned64","dataTypeSemantics":"totalCounter"},
"383":{"name":"distinctCountOfDestinationIPv6Address","dataType":"unsigned64","dataTypeSemantics":"totalCounter"},
"384":{"name":"valueDistributionMethod","dataType":"unsigned8"},
"385":{"name":"rfc3550JitterMilliseconds","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"milliseconds"},
"386":{"name":"rfc3550JitterMicroseconds","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"microseconds"},
"387":{"name":"rfc3550JitterNanoseconds","dataType":"unsigned32","dataTypeSemantics":"quantity","units":"nanoseconds"}
}
//ipfix-mpls-label-type
entities['mpls'] = {
"1":{"description":"TE-MIDPT: Any TE tunnel mid-point or tail label"},
"2":{"description":"Pseudowire: Any PWE3 or Cisco AToM based label"},
"3":{"description":"VPN: Any label associated with VPN"},
"4":{"description":"BGP: Any label associated with BGP or BGP routing"},
"5":{"description":"LDP: Any label associated with dynamically assigned labels using LDP"}
}
//classification-engine-ids
entities['engineIds'] = {
"1":{"description":"IANA-L3", "length":"1"},
"2":{"description":"PANA-L3", "length":"1"},
"3":{"description":"IANA-L4", "length":"2"},
"4":{"description":"PANA-L4", "length":"2"},
"6":{"description":"USER-Defined", "length":"3"},
"12":{"description":"PANA-L2", "length":"5"},
"13":{"description":"PANA-L7", "length":"3"},
"18":{"description":"ETHERTYPE", "length":"2"},
"19":{"description":"LLC", "length":"1"},
"20":{"description":"PANA-L7-PEN", "length":"3"},
}
//ipfix-version-numbers
entities['version'] = {
"9":{"version":"Cisco Systems NetFlow Version 9"},
"10":{"version":"IPFIX as documented in RFC5101"}
}
//ipfix-set-ids
entities['setIds'] = {
"2":{"setId":"Template Set"},
"3":{"setId":"Option Template Set"}
}
//ipfix-information-element-data-types
entities['dataTypes'] = {
"octetArray":{},
"unsigned8":{},
"unsigned16":{},
"unsigned32":{},
"unsigned64":{},
"signed8":{},
"signed16":{},
"signed32":{},
"signed64":{},
"float32":{},
"float64":{},
"boolean":{},
"macAddress":{ "key":"%0-%1-%2-%3-%4-%5"},
"string":{},
"dateTimeSeconds":{},
"dateTimeMilliseconds":{},
"dateTimeMicroseconds":{},
"dateTimeNanoseconds":{},
"ipv4Address":{"key":"%0.%1.%2.%3"},
"ipv6Address":{"key":"%0:%1:%2:%3:%4:%5:%6:%7"},
"basicList":{},
"subTemplateList":{},
"subTemplateMultiList":{}
}
//ipfix-information-element-semantics
entities['ieSemantics'] = {
"0":{"description":"default"},
"1":{"description":"quantity"},
"2":{"description":"totalCounter"},
"3":{"description":"deltaCounter"},
"4":{"description":"identifier"},
"5":{"description":"flags"},
"6":{"description":"list"}
}
//ipfix-information-element-units
entities['units'] = {
"0":{"name":"none"},
"1":{"name":"bits"},
"2":{"name":"octets"},
"3":{"name":"packets"},
"4":{"name":"flows"},
"5":{"name":"seconds"},
"6":{"name":"milliseconds"},
"7":{"name":"microseconds"},
"8":{"name":"nanoseconds"},
"9":{"name":"4-octet words"},
"10":{"name":"messages"},
"11":{"name":"hops"},
"12":{"name":"entries"}
}
//ipfix-structured-data-types-semantics
entities['sdSemantics'] = {
"0x00":{"name":"noneOf"},
"0x01":{"name":"exactlyOneOf"},
"0x02":{"name":"oneOrMoreOf"},
"0x03":{"name":"allOf"},
"0x04":{"name":"ordered"},
"0xFF":{"name":"undefined"},
}
exports.entities = entities;
| shaofis/Netflow | lib/ipfix.js | JavaScript | mit | 37,954 |
using System;
namespace Versioning
{
public class NominalData : Sage_Container, IData
{
/* Autogenerated by sage_wrapper_generator.pl */
SageDataObject110.NominalData nd11;
SageDataObject120.NominalData nd12;
SageDataObject130.NominalData nd13;
SageDataObject140.NominalData nd14;
SageDataObject150.NominalData nd15;
SageDataObject160.NominalData nd16;
SageDataObject170.NominalData nd17;
public NominalData(object inner, int version)
: base(version) {
switch (m_version) {
case 11: {
nd11 = (SageDataObject110.NominalData)inner;
m_fields = new Fields(nd11.Fields,m_version);
return;
}
case 12: {
nd12 = (SageDataObject120.NominalData)inner;
m_fields = new Fields(nd12.Fields,m_version);
return;
}
case 13: {
nd13 = (SageDataObject130.NominalData)inner;
m_fields = new Fields(nd13.Fields,m_version);
return;
}
case 14: {
nd14 = (SageDataObject140.NominalData)inner;
m_fields = new Fields(nd14.Fields,m_version);
return;
}
case 15: {
nd15 = (SageDataObject150.NominalData)inner;
m_fields = new Fields(nd15.Fields,m_version);
return;
}
case 16: {
nd16 = (SageDataObject160.NominalData)inner;
m_fields = new Fields(nd16.Fields,m_version);
return;
}
case 17: {
nd17 = (SageDataObject170.NominalData)inner;
m_fields = new Fields(nd17.Fields,m_version);
return;
}
default: throw new InvalidOperationException("ver");
}
}
/* Autogenerated with data_generator.pl */
const string ACCOUNT_REF = "ACCOUNT_REF";
const string NOMINALDATA = "NominalData";
public bool Open(OpenMode mode) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Open((SageDataObject110.OpenMode)mode);
break;
}
case 12: {
ret = nd12.Open((SageDataObject120.OpenMode)mode);
break;
}
case 13: {
ret = nd13.Open((SageDataObject130.OpenMode)mode);
break;
}
case 14: {
ret = nd14.Open((SageDataObject140.OpenMode)mode);
break;
}
case 15: {
ret = nd15.Open((SageDataObject150.OpenMode)mode);
break;
}
case 16: {
ret = nd16.Open((SageDataObject160.OpenMode)mode);
break;
}
case 17: {
ret = nd17.Open((SageDataObject170.OpenMode)mode);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public void Close() {
switch (m_version) {
case 11: {
nd11.Close();
break;
}
case 12: {
nd12.Close();
break;
}
case 13: {
nd13.Close();
break;
}
case 14: {
nd14.Close();
break;
}
case 15: {
nd15.Close();
break;
}
case 16: {
nd16.Close();
break;
}
case 17: {
nd17.Close();
break;
}
default: throw new InvalidOperationException("ver");
}
}
public bool Read(int IRecNo) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Read(IRecNo);
break;
}
case 12: {
ret = nd12.Read(IRecNo);
break;
}
case 13: {
ret = nd13.Read(IRecNo);
break;
}
case 14: {
ret = nd14.Read(IRecNo);
break;
}
case 15: {
ret = nd15.Read(IRecNo);
break;
}
case 16: {
ret = nd16.Read(IRecNo);
break;
}
case 17: {
ret = nd17.Read(IRecNo);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool Write(int IRecNo) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Write(IRecNo);
break;
}
case 12: {
ret = nd12.Write(IRecNo);
break;
}
case 13: {
ret = nd13.Write(IRecNo);
break;
}
case 14: {
ret = nd14.Write(IRecNo);
break;
}
case 15: {
ret = nd15.Write(IRecNo);
break;
}
case 16: {
ret = nd16.Write(IRecNo);
break;
}
case 17: {
ret = nd17.Write(IRecNo);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool Seek(int IRecNo) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Seek(IRecNo);
break;
}
case 12: {
ret = nd12.Seek(IRecNo);
break;
}
case 13: {
ret = nd13.Seek(IRecNo);
break;
}
case 14: {
ret = nd14.Seek(IRecNo);
break;
}
case 15: {
ret = nd15.Seek(IRecNo);
break;
}
case 16: {
ret = nd16.Seek(IRecNo);
break;
}
case 17: {
ret = nd17.Seek(IRecNo);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool Lock(int IRecNo) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Lock(IRecNo);
break;
}
case 12: {
ret = nd12.Lock(IRecNo);
break;
}
case 13: {
ret = nd13.Lock(IRecNo);
break;
}
case 14: {
ret = nd14.Lock(IRecNo);
break;
}
case 15: {
ret = nd15.Lock(IRecNo);
break;
}
case 16: {
ret = nd16.Lock(IRecNo);
break;
}
case 17: {
ret = nd17.Lock(IRecNo);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool Unlock(int IRecNo) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.Unlock(IRecNo);
break;
}
case 12: {
ret = nd12.Unlock(IRecNo);
break;
}
case 13: {
ret = nd13.Unlock(IRecNo);
break;
}
case 14: {
ret = nd14.Unlock(IRecNo);
break;
}
case 15: {
ret = nd15.Unlock(IRecNo);
break;
}
case 16: {
ret = nd16.Unlock(IRecNo);
break;
}
case 17: {
ret = nd17.Unlock(IRecNo);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool FindFirst(object varField, object varSearch) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.FindFirst(varField, varSearch);
break;
}
case 12: {
ret = nd12.FindFirst(varField, varSearch);
break;
}
case 13: {
ret = nd13.FindFirst(varField, varSearch);
break;
}
case 14: {
ret = nd14.FindFirst(varField, varSearch);
break;
}
case 15: {
ret = nd15.FindFirst(varField, varSearch);
break;
}
case 16: {
ret = nd16.FindFirst(varField, varSearch);
break;
}
case 17: {
ret = nd17.FindFirst(varField, varSearch);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public bool FindNext(object varField, object varSearch) {
bool ret;
switch (m_version) {
case 11: {
ret = nd11.FindNext(varField, varSearch);
break;
}
case 12: {
ret = nd12.FindNext(varField, varSearch);
break;
}
case 13: {
ret = nd13.FindNext(varField, varSearch);
break;
}
case 14: {
ret = nd14.FindNext(varField, varSearch);
break;
}
case 15: {
ret = nd15.FindNext(varField, varSearch);
break;
}
case 16: {
ret = nd16.FindNext(varField, varSearch);
break;
}
case 17: {
ret = nd17.FindNext(varField, varSearch);
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
public int Count {
get {
int ret;
switch (m_version) {
case 11: {
ret = nd11.Count();
break;
}
case 12: {
ret = nd12.Count();
break;
}
case 13: {
ret = nd13.Count();
break;
}
case 14: {
ret = nd14.Count();
break;
}
case 15: {
ret = nd15.Count();
break;
}
case 16: {
ret = nd16.Count();
break;
}
case 17: {
ret = nd17.Count();
break;
}
default: throw new InvalidOperationException("ver");
}
return ret;
}
}
}
}
| staafl/dotnet-bclext | to-integrate/libcs_staaflutil/Business/Versioning/Definitions/Data/NominalData.cs | C# | mit | 13,238 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Alphabet Table</title>
</head>
<body>
<table border="1px">
<tr>
<td colspan="3" align="center">Title goes here</td>
<td align="center">A</td>
<td align="right">B</td>
</tr>
<tr>
<td rowspan="3" align="left">C</td>
<td align="center">D</td>
<td align="center">E</td>
<td align="center">F</td>
<td align="right">G</td>
</tr>
<tr>
<td align="center">H</td>
<td colspan="2" align="center">I</td>
<td rowspan="2" align="right" valign="bottom">J</td>
</tr>
<tr>
<td align="center">K</td>
<td align="center">L</td>
<td align="center">M</td>
</tr>
<tr>
<td align="right">N</td>
<td colspan="4" align="center">O</td>
</tr>
</table>
</body>
</html>
| barrybantsova/Telerik-Academy | HTML/02.HTML Tables/alphabettable.html | HTML | mit | 1,049 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `uok` fn in crate `rustc_lint`.">
<meta name="keywords" content="rust, rustlang, rust-lang, uok">
<title>rustc_lint::middle::infer::uok - Rust</title>
<link rel="stylesheet" type="text/css" href="../../../main.css">
<link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<a href='../../../rustc_lint/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a>
<p class='location'><a href='../../index.html'>rustc_lint</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>infer</a></p><script>window.sidebarCurrent = {name: 'uok', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content fn">
<h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>rustc_lint</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>infer</a>::<wbr><a class='fn' href=''>uok</a><wbr><a class='stability Unstable' title=''>Unstable</a></span><span class='out-of-band'><span id='render-detail'>
<a id="collapse-all" href="#">[-]</a> <a id="expand-all" href="#">[+]</a>
</span><a id='src-98063' href='../../../rustc/middle/infer/fn.uok.html?gotosrc=98063'>[src]</a></span></h1>
<pre class='rust fn'>pub fn uok() -> <a class='enum' href='../../../core/result/enum.Result.html' title='core::result::Result'>Result</a><<a href='../../../std/primitive.tuple.html'>()</a>, <a class='enum' href='../../../rustc_lint/middle/ty/enum.type_err.html' title='rustc_lint::middle::ty::type_err'>type_err</a><'tcx>></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
</div>
</div>
<script>
window.rootPath = "../../../";
window.currentCrate = "rustc_lint";
window.playgroundUrl = "";
</script>
<script src="../../../jquery.js"></script>
<script src="../../../main.js"></script>
<script async src="../../../search-index.js"></script>
</body>
</html> | ArcherSys/ArcherSys | Rust/share/doc/rust/html/rustc_lint/middle/infer/fn.uok.html | HTML | mit | 4,052 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `color` mod in crate `term`.">
<meta name="keywords" content="rust, rustlang, rust-lang, color">
<title>term::color - Rust</title>
<link rel="stylesheet" type="text/css" href="../../main.css">
<link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<a href='../../term/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a>
<p class='location'><a href='../index.html'>term</a></p><script>window.sidebarCurrent = {name: 'color', ty: 'mod', relpath: '../'};</script><script defer src="../sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content mod">
<h1 class='fqn'><span class='in-band'>Module <a href='../index.html'>term</a>::<wbr><a class='mod' href=''>color</a><wbr><a class='stability Unstable' title='use the crates.io `term` library instead'>Unstable</a></span><span class='out-of-band'><span id='render-detail'>
<a id="collapse-all" href="#">[-]</a> <a id="expand-all" href="#">[+]</a>
</span><a id='src-8395' href='../../src/term/lib.rs.html#154-175'>[src]</a></span></h1>
<div class='docblock'><p>Terminal color definitions</p>
</div><h2 id='constants' class='section-header'><a href="#constants">Constants</a></h2>
<table>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BLACK.html'
title='term::color::BLACK'>BLACK</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BLUE.html'
title='term::color::BLUE'>BLUE</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_BLACK.html'
title='term::color::BRIGHT_BLACK'>BRIGHT_BLACK</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_BLUE.html'
title='term::color::BRIGHT_BLUE'>BRIGHT_BLUE</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_CYAN.html'
title='term::color::BRIGHT_CYAN'>BRIGHT_CYAN</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_GREEN.html'
title='term::color::BRIGHT_GREEN'>BRIGHT_GREEN</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_MAGENTA.html'
title='term::color::BRIGHT_MAGENTA'>BRIGHT_MAGENTA</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_RED.html'
title='term::color::BRIGHT_RED'>BRIGHT_RED</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_WHITE.html'
title='term::color::BRIGHT_WHITE'>BRIGHT_WHITE</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.BRIGHT_YELLOW.html'
title='term::color::BRIGHT_YELLOW'>BRIGHT_YELLOW</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.CYAN.html'
title='term::color::CYAN'>CYAN</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.GREEN.html'
title='term::color::GREEN'>GREEN</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.MAGENTA.html'
title='term::color::MAGENTA'>MAGENTA</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.RED.html'
title='term::color::RED'>RED</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.WHITE.html'
title='term::color::WHITE'>WHITE</a></td>
<td class='docblock short'></td>
</tr>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='constant' href='constant.YELLOW.html'
title='term::color::YELLOW'>YELLOW</a></td>
<td class='docblock short'></td>
</tr>
</table><h2 id='types' class='section-header'><a href="#types">Type Definitions</a></h2>
<table>
<tr>
<td><a class='stability Unstable' title='Unstable: use the crates.io `term` library instead'></a><a class='type' href='type.Color.html'
title='term::color::Color'>Color</a></td>
<td class='docblock short'><p>Number for a terminal color</p>
</td>
</tr>
</table></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
</div>
</div>
<script>
window.rootPath = "../../";
window.currentCrate = "term";
window.playgroundUrl = "http://play.rust-lang.org/";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script src="../../playpen.js"></script>
<script async src="../../search-index.js"></script>
</body>
</html> | ArcherSys/ArcherSys | Rust/share/doc/rust/html/term/color/index.html | HTML | mit | 10,248 |
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h> /* Definition of AT_* constants */
#ifndef _MSC_VER
#include <unistd.h>
#include <dirent.h>
#else
#pragma warning(disable:4996)
#endif
#include "logging.h"
#include "config.h"
#include "oracle.h"
#include "tempfs.h"
#include "util.h"
#include "query.h"
static int dbr_refresh_object(const char *schema,
const char *ora_type,
const char *object,
time_t last_ddl_time) {
char object_with_suffix[300];
// convert oracle type to filesystem type
char *fs_type = strdup(ora_type);
if (fs_type == NULL) {
logmsg(LOG_ERROR, "dbr_refresh_object(): unable to allocate memory for ora_type");
return EXIT_FAILURE;
}
utl_ora2fstype(&fs_type);
// get suffix based on type
char *suffix = NULL;
if (str_suffix(&suffix, ora_type) != EXIT_SUCCESS) {
logmsg(LOG_ERROR, "dbr_refresh_object(): unable to determine file suffix");
if (suffix != NULL)
free(suffix);
if (fs_type != NULL)
free(fs_type);
return EXIT_FAILURE;
}
snprintf(object_with_suffix, 299, "%s%s", object, suffix);
// get cache filename
char *fname = NULL;
if (qry_object_fname(schema, fs_type, object_with_suffix, &fname) != EXIT_SUCCESS) {
logmsg(LOG_ERROR, "dbr_refresh_object(): unable to determine cache filename for [%s] [%s].[%s]", ora_type, schema, object_with_suffix);
if (fname != NULL)
free(fname);
if (suffix != NULL)
free(suffix);
if (fs_type != NULL)
free(fs_type);
return EXIT_FAILURE;
}
// if cache file is already up2date
if (tfs_validate2(fname, last_ddl_time) == EXIT_SUCCESS) {
// then mark it as verified by this mount
if (tfs_setldt(fname, last_ddl_time) != EXIT_SUCCESS) {
logmsg(LOG_ERROR, "dbr_refresh_object(): unable to mark [%s] [%s].[%s] as verified by this mount.", ora_type, schema, object);
if (fname != NULL)
free(fname);
if (suffix != NULL)
free(suffix);
if (fs_type != NULL)
free(fs_type);
return EXIT_FAILURE;
}
}
free(fname);
free(suffix);
free(fs_type);
return EXIT_SUCCESS;
}
static int dbr_delete_obsolete() {
#ifdef _MSC_VER
logmsg(LOG_ERROR, "dbr_delete_obsolete() - this function is not yet implemented for Windows platform!");
return EXIT_FAILURE;
#else
char cache_fn[4096];
DIR *dir = opendir(g_conf._temppath);
if (dir == NULL) {
logmsg(LOG_ERROR, "dbr_delete_obsolete() - unable to open directory: %d - %s", errno, strerror(errno));
return EXIT_FAILURE;
}
struct dirent *dir_entry = NULL;
while ((dir_entry = readdir(dir)) != NULL) {
if (dir_entry->d_type != DT_REG)
continue;
size_t name_len = strlen(dir_entry->d_name);
if (name_len < 5)
continue;
char *suffix = dir_entry->d_name + name_len - 4;
if (strcmp(suffix, ".tmp") != 0)
continue;
snprintf(cache_fn, 4095, "%s/%s", g_conf._temppath, dir_entry->d_name);
time_t last_ddl_time = 0;
time_t mount_stamp = 0;
pid_t mount_pid = 0;
if (tfs_getldt(cache_fn, &last_ddl_time, &mount_pid, &mount_stamp) != EXIT_SUCCESS) {
logmsg(LOG_ERROR, "dbr_delete_obsolete() - tfs_getldt returned error");
closedir(dir);
return EXIT_FAILURE;
}
if ((mount_pid != g_conf._mount_pid) || (mount_stamp != g_conf._mount_stamp)) {
tfs_rmfile(cache_fn);
logmsg(LOG_DEBUG, "dbr_delete_obsolete() - removed obsolete cache file [%s]", cache_fn);
}
}
closedir(dir);
return EXIT_SUCCESS;
#endif
}
int dbr_refresh_cache() {
int retval = EXIT_SUCCESS;
const char *query =
"select o.owner, o.object_type, o.object_name, \
to_char(o.last_ddl_time, 'yyyy-mm-dd hh24:mi:ss') as last_ddl_time\
from all_objects o\
where generated='N'\
and (o.object_type != 'TYPE' or o.subobject_name IS NULL)\
and object_type IN (\
'TABLE',\
'VIEW',\
'PROCEDURE',\
'FUNCTION',\
'PACKAGE',\
'PACKAGE BODY',\
'TRIGGER',\
'TYPE',\
'TYPE BODY',\
'JAVA SOURCE')";
ORA_STMT_PREPARE(dbr_refresh_state);
ORA_STMT_DEFINE_STR_I(dbr_refresh_state, 1, schema, 300);
ORA_STMT_DEFINE_STR_I(dbr_refresh_state, 2, type, 300);
ORA_STMT_DEFINE_STR_I(dbr_refresh_state, 3, object, 300);
ORA_STMT_DEFINE_STR_I(dbr_refresh_state, 4, last_ddl_time, 25);
ORA_STMT_EXECUTE(dbr_refresh_state, 0);
while (ORA_STMT_FETCH) {
dbr_refresh_object(
ORA_NVL(schema, "_UNKNOWN_SCHEMA_"),
ORA_NVL(type, "_UNKNOWN_TYPE_"),
ORA_NVL(object, "_UNKNOWN_OBJECT_"),
utl_str2time(ORA_NVL(last_ddl_time, "1990-01-01 03:00:01")));
}
dbr_delete_obsolete();
dbr_refresh_state_cleanup:
ORA_STMT_FREE;
return retval;
}
| usrecnik/ddlfs | src/dbro_refresh.c | C | mit | 5,152 |
using AutoMapper;
using Bivi.Domaine;
using Bivi.FrontOffice.Web.ViewModels;
using Bivi.FrontOffice.Web.ViewModels.ModelBuilders;
using Bivi.FrontOffice.Web.ViewModels.Pages.Common;
using Bivi.Infrastructure.Attributes.Modularity;
using Bivi.Infrastructure.Constant;
using Bivi.Infrastructure.Services.Caching;
using Bivi.Infrastructure.Services.Depots;
using Bivi.Infrastructure.Services.Encryption;
using Bivi.Infrastructure.Services.Search;
using Castle.Core.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Bivi.FrontOffice.Web.Controllers.Controllers
{
public partial class PlanDuSiteController : ModularController
{
protected ISearchEngine _searchEngine;
public PlanDuSiteController(
ILogger logger,
ICryptography encryption,
IDepotFactory depotFactory,
ICaching cachingService,
ICommonModelBuilder commonModelBuilder,
ISearchEngine searchEngine)
: base(logger, encryption, depotFactory, cachingService, commonModelBuilder)
{
_searchEngine = searchEngine;
}
[PageAttribute("PLAN_DU_SITE")]
public ActionResult Index()
{
return ProcessPage();
}
}
}
| apo-j/Projects_Working | Bivi/src/Bivi.FrontOffice/Bivi.FrontOffice.Web.Controllers/Controllers/PlanDuSiteController.cs | C# | mit | 1,396 |
require 'filefm'
def test_config
File.join(File.dirname(__FILE__), 'config.yml')
end
def swift_server
ENV["SWIFT_SERVER"]
end
def swift_username
u = ENV["SWIFT_USERNAME"]
u
end
def swift_password
ENV["SWIFT_PASSWORD"]
end
def swift_test_container
ENV["SWIFT_TEST_CONTAINER"] || "filefm-test"
end
def swift_keystone_url
ENV["SWIFT_KEYSTONE_URL"]
end
| rubiojr/filefm | tests/helper.rb | Ruby | mit | 370 |
<div class="container">
<div class="jumbotron">
<h1>Best Offer</h1>
<p class="font-face">Welcome to BestOffer!</p>
</div>
<div class="row">
<div class="col-md-12">
<div ng-include="'/partials/main/our-customers.html'"></div>
</div>
</div>
</div> | liorzam/Best | public/app/main/main.html | HTML | mit | 305 |
module Rentjuicer
class Response
attr_accessor :body
def initialize(response, raise_error = false)
rash_response(response)
raise Error.new(self.body.code, self.body.message) if !success? && raise_error
end
def success?
self.body && !self.body.blank? && self.body.respond_to?(:status) && self.body.status == "ok"
end
def method_missing(method_name, *args)
if self.body.respond_to?(method_name)
self.body.send(method_name)
else
super
end
end
private
def rash_response(response)
if response.is_a?(Array)
self.body = []
response.each do |b|
if b.is_a?(Hash)
self.body << Hashie::Rash.new(b)
else
self.body << b
end
end
elsif response.is_a?(Hash)
self.body = Hashie::Rash.new(response)
else
self.body = response
end
end
end
end
| tcocca/rentjuicer | lib/rentjuicer/response.rb | Ruby | mit | 944 |
/***************************************************************************/
/* */
/* ftlist.h */
/* */
/* Generic list support for FreeType (specification). */
/* */
/* Copyright 1996-2018 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
/* modified, and distributed under the terms of the FreeType project */
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
/* this file you indicate that you have read the license and */
/* understand and accept it fully. */
/* */
/***************************************************************************/
/*************************************************************************/
/* */
/* This file implements functions relative to list processing. Its */
/* data structures are defined in `freetype.h'. */
/* */
/*************************************************************************/
#ifndef FTLIST_H_
#define FTLIST_H_
#include "ft2build.h"
#include FT_FREETYPE_H
#ifdef FREETYPE_H
#error "freetype.h of FreeType 1 has been loaded!"
#error "Please fix the directory search order for header files"
#error "so that freetype.h of FreeType 2 is found first."
#endif
FT_BEGIN_HEADER
/*************************************************************************/
/* */
/* <Section> */
/* list_processing */
/* */
/* <Title> */
/* List Processing */
/* */
/* <Abstract> */
/* Simple management of lists. */
/* */
/* <Description> */
/* This section contains various definitions related to list */
/* processing using doubly-linked nodes. */
/* */
/* <Order> */
/* FT_List */
/* FT_ListNode */
/* FT_ListRec */
/* FT_ListNodeRec */
/* */
/* FT_List_Add */
/* FT_List_Insert */
/* FT_List_Find */
/* FT_List_Remove */
/* FT_List_Up */
/* FT_List_Iterate */
/* FT_List_Iterator */
/* FT_List_Finalize */
/* FT_List_Destructor */
/* */
/*************************************************************************/
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Find */
/* */
/* <Description> */
/* Find the list node for a given listed object. */
/* */
/* <Input> */
/* list :: A pointer to the parent list. */
/* data :: The address of the listed object. */
/* */
/* <Return> */
/* List node. NULL if it wasn't found. */
/* */
FT_EXPORT( FT_ListNode )
FT_List_Find( FT_List list,
void* data );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Add */
/* */
/* <Description> */
/* Append an element to the end of a list. */
/* */
/* <InOut> */
/* list :: A pointer to the parent list. */
/* node :: The node to append. */
/* */
FT_EXPORT( void )
FT_List_Add( FT_List list,
FT_ListNode node );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Insert */
/* */
/* <Description> */
/* Insert an element at the head of a list. */
/* */
/* <InOut> */
/* list :: A pointer to parent list. */
/* node :: The node to insert. */
/* */
FT_EXPORT( void )
FT_List_Insert( FT_List list,
FT_ListNode node );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Remove */
/* */
/* <Description> */
/* Remove a node from a list. This function doesn't check whether */
/* the node is in the list! */
/* */
/* <Input> */
/* node :: The node to remove. */
/* */
/* <InOut> */
/* list :: A pointer to the parent list. */
/* */
FT_EXPORT( void )
FT_List_Remove( FT_List list,
FT_ListNode node );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Up */
/* */
/* <Description> */
/* Move a node to the head/top of a list. Used to maintain LRU */
/* lists. */
/* */
/* <InOut> */
/* list :: A pointer to the parent list. */
/* node :: The node to move. */
/* */
FT_EXPORT( void )
FT_List_Up( FT_List list,
FT_ListNode node );
/*************************************************************************/
/* */
/* <FuncType> */
/* FT_List_Iterator */
/* */
/* <Description> */
/* An FT_List iterator function that is called during a list parse */
/* by @FT_List_Iterate. */
/* */
/* <Input> */
/* node :: The current iteration list node. */
/* */
/* user :: A typeless pointer passed to @FT_List_Iterate. */
/* Can be used to point to the iteration's state. */
/* */
typedef FT_Error
(*FT_List_Iterator)( FT_ListNode node,
void* user );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Iterate */
/* */
/* <Description> */
/* Parse a list and calls a given iterator function on each element. */
/* Note that parsing is stopped as soon as one of the iterator calls */
/* returns a non-zero value. */
/* */
/* <Input> */
/* list :: A handle to the list. */
/* iterator :: An iterator function, called on each node of the list. */
/* user :: A user-supplied field that is passed as the second */
/* argument to the iterator. */
/* */
/* <Return> */
/* The result (a FreeType error code) of the last iterator call. */
/* */
FT_EXPORT( FT_Error )
FT_List_Iterate( FT_List list,
FT_List_Iterator iterator,
void* user );
/*************************************************************************/
/* */
/* <FuncType> */
/* FT_List_Destructor */
/* */
/* <Description> */
/* An @FT_List iterator function that is called during a list */
/* finalization by @FT_List_Finalize to destroy all elements in a */
/* given list. */
/* */
/* <Input> */
/* system :: The current system object. */
/* */
/* data :: The current object to destroy. */
/* */
/* user :: A typeless pointer passed to @FT_List_Iterate. It can */
/* be used to point to the iteration's state. */
/* */
typedef void
(*FT_List_Destructor)( FT_Memory memory,
void* data,
void* user );
/*************************************************************************/
/* */
/* <Function> */
/* FT_List_Finalize */
/* */
/* <Description> */
/* Destroy all elements in the list as well as the list itself. */
/* */
/* <Input> */
/* list :: A handle to the list. */
/* */
/* destroy :: A list destructor that will be applied to each element */
/* of the list. Set this to NULL if not needed. */
/* */
/* memory :: The current memory object that handles deallocation. */
/* */
/* user :: A user-supplied field that is passed as the last */
/* argument to the destructor. */
/* */
/* <Note> */
/* This function expects that all nodes added by @FT_List_Add or */
/* @FT_List_Insert have been dynamically allocated. */
/* */
FT_EXPORT( void )
FT_List_Finalize( FT_List list,
FT_List_Destructor destroy,
FT_Memory memory,
void* user );
/* */
FT_END_HEADER
#endif /* FTLIST_H_ */
/* END */
| SLIBIO/SLib | external/include/freetype/ftlist.h | C | mit | 16,754 |
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.references :post, index: true
t.integer :author_id
t.string :comment
t.timestamps
end
end
end
| morcov/socnet | db/migrate/20130906133507_create_comments.rb | Ruby | mit | 221 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.