maid 0.1.2 → 0.1.3.beta.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.
data/configure DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -o errexit
3
-
4
- curl -so .roboconf.sh https://raw.github.com/benjaminoakes/roboconf/master/roboconf.sh
5
- source .roboconf.sh
6
-
7
- roboconf-bundler '~> 1.0.0'
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env sh
2
- # Script for testing Maid from scratch on MicroCore Linux (a 10 MB Linux distribution which is enough to run Maid)
3
-
4
- if [ `whoami` == 'root' ]; then
5
- mkdir maid
6
- cd maid
7
- tce-fetch.sh ruby.tcz
8
- tce-load -i ruby.tcz
9
- wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.5.tgz
10
- tar xvfz rubygems-1.8.5.tgz
11
- cd rubygems-1.8.5
12
- ruby setup.rb
13
- # wget http://githubredir.debian.net/github/benjaminoakes/maid/0~master.tar.gz -O maid-master.tar.gz
14
- # tar xvfz maid-master.tar.gz
15
- gem install maid --pre
16
- else
17
- echo This should be run as root.
18
- fi