haconiwa 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa21fa8f08a50b66d878955312eb2537b1a8c44d
4
- data.tar.gz: 378fe5fe360b75569622b78a9cf0c1c0e5300659
3
+ metadata.gz: 5de1f0420f88e24e73439d16e2683597e093433e
4
+ data.tar.gz: 2316e9ad22f71d6fdac5e7d2190747d43fdd41ea
5
5
  SHA512:
6
- metadata.gz: 575dcfbc3d35f4c8800e3b865c82fa96f785dc422f8481c6d7b1c783579a846c391514a9f0aefa9bde71c85d00fde2e36ec325899b2428b229899306e8dba708
7
- data.tar.gz: df4a100b6a234b8e6fd42550f2078cbb7ca916619a5de9e9b1c74d1ce306f78b9c528f3c30ad92fc2c5941e5585e4ff306354da81e2c3231428d1688817e9826
6
+ metadata.gz: c20d17ea87a779a5d2a042f6ca059b9b5c3b1e5f7583440430a06b78c38a42be2a3c77d4d234bf3dd8bf07f2c0c07249ba414d2e66f881980e2194afd133454c
7
+ data.tar.gz: 55d9bb82f4d1ca50437663a67b6ec3aa48f2684b231e3eb619ece0688af8a5ed28e1ce8801491a14a6e7a1e91e918bb1907b2c03b8a81d9ab76d23872127746b
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Haconiwa
2
2
 
3
- [![Build Status](https://travis-ci.org/udzura/haconiwa.svg?branch=master)](https://travis-ci.org/udzura/haconiwa)
3
+ [![Build Status](https://travis-ci.org/udzura/haconiwa.svg?branch=master)](https://travis-ci.org/udzura/haconiwa) [![Gem Version](https://badge.fury.io/rb/haconiwa.svg)](https://badge.fury.io/rb/haconiwa)
4
4
 
5
5
  Ruby on Container / helper tools with DSL for your handmade linux containers
6
6
 
@@ -28,6 +28,7 @@ module Haconiwa
28
28
  @capabilities = Capabilities.new
29
29
  @attached_capabilities = nil
30
30
  @name = "haconiwa-#{Time.now.to_i}"
31
+ @init_command = "/bin/bash" # FIXME: maybe /sbin/init is better
31
32
  @container_pid_file = nil
32
33
  @pid = nil
33
34
  end
@@ -1,3 +1,3 @@
1
1
  module Haconiwa
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haconiwa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uchio KONDO