livecd 1.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8c2370a4b9f99dbca80cfe938834c1149a75ff6
4
- data.tar.gz: 0401fbb0a0e4620f9f72e8c3245fbf677d3f032c
3
+ metadata.gz: fe582020f5995fd99489242b191e90c5e3e441af
4
+ data.tar.gz: 3cf7ec2439a2f8f54f52caa0b690b9b1ae2a6dbd
5
5
  SHA512:
6
- metadata.gz: 399bfd5beae257c2ab90280b0b3b0dea30529bc587c4098138bba5ee2f92cab83f983ba05f89b17ded0046b7e4d2a9137876e43ed2bf156edb2f2ec6b92e9e0c
7
- data.tar.gz: a58a5f4262221004ed3e5b7b0140e2e06fd0f52df1dd067a68a0f0c66b001954aa3495ca3edf0718365606a34dd686a838cf455bc637b053d673de372c04fe2f
6
+ metadata.gz: 2326d17402fed544550a93071ad487424997565913404b95d4f39b22114b3f5e8c45d25a08e61ff2d26227add3c195f81211fcccf826d329c0446455e2868fe9
7
+ data.tar.gz: 7ee554a0414158c72ae557f32a1144ce82b425696683eb1c55c537cdabd4c1dc542c9202cbb3d9ff6e40580ea31f841ceb78e97fa332605e9ad206d19870bea1
@@ -5,4 +5,4 @@ rvm:
5
5
  - "1.9.3"
6
6
  - "2.0.0"
7
7
  - "jruby-19mode"
8
- - "rbx-19mode"
8
+ - "rbx-2.1.1"
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 1.0.1: improved documentation
2
+ support rubnius 2.1.1
1
3
  1.0: added thor to gem dependencies
2
4
  0.9: made virtual machine memory configurable
3
5
  0.8: fixed bug where sometimes machines aren't removed the first time you run stop
data/README.md CHANGED
@@ -5,6 +5,14 @@ livecd
5
5
 
6
6
  Run a livecd quickly and easily. Uses virtualbox for magic.
7
7
 
8
+ installation
9
+ ------------
10
+
11
+ gem install livecd
12
+
13
+ usage
14
+ -----
15
+
8
16
  ```bash
9
17
  livecd start myos.iso
10
18
 
@@ -14,6 +22,20 @@ livecd list
14
22
  livecd stop
15
23
  ```
16
24
 
25
+ Quickstart:
26
+
27
+ ```bash
28
+ # download damn small linux (http://www.damnsmalllinux.org/)
29
+ wget http://distro.ibiblio.org/damnsmall/release_candidate/dsl-4.11.rc2.iso
30
+ livecd start --memory 512 dsl-4.11.rc2.iso
31
+ ```
32
+
33
+ Configure the memory. The default is 128 MB, but you can change it.
34
+
35
+ ```bash
36
+ livecd start --memory 512 myos.iso
37
+ ```
38
+
17
39
  Run multiple livecds at the same time:
18
40
 
19
41
  ```bash
@@ -31,7 +53,7 @@ livecd stop cd_a
31
53
  livecd stop
32
54
  ```
33
55
 
34
- installation
35
- ------------
56
+ kudos / contributions
57
+ ---------------------
36
58
 
37
- gem install livecd
59
+ * chris-rock
data/bin/livecd CHANGED
@@ -6,7 +6,7 @@ require 'livecd'
6
6
  class LivecdCLI < Thor
7
7
  include Livecd
8
8
 
9
- desc "start <mycd.iso>", "start the iso livecd"
9
+ desc "start [--memory 128] <mycd.iso>", "start the iso livecd"
10
10
  option :memory, type: :numeric, banner: 'how much memory the vm should get'
11
11
  def start(file)
12
12
  iso = File::expand_path( file )
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Livecd
3
- VERSION = '1.0'
3
+ VERSION = '1.0.1'
4
4
  VM_PREFIX = 'livecd-'
5
5
 
6
6
  def list_vms
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: livecd
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominik Richter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-21 00:00:00.000000000 Z
11
+ date: 2014-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -61,8 +61,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  version: '0'
62
62
  requirements: []
63
63
  rubyforge_project:
64
- rubygems_version: 2.0.3
64
+ rubygems_version: 2.0.14
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: run livecds easily
68
68
  test_files: []
69
+ has_rdoc: