ktec-subtrac 0.1.25 → 0.1.26
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/README.markdown +9 -18
- data/VERSION.yml +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -2,23 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Simple and opinionated helper for creating and managing subversion and trac projects.
|
|
4
4
|
|
|
5
|
-
## Installation on a fresh jeos (ubuntu) slice
|
|
6
|
-
|
|
7
|
-
# install some basic requirements
|
|
8
|
-
sudo apt-get install openssh-server apache2 sqlite wget ruby1.8-dev ruby1.8 rubygems
|
|
9
|
-
# add github to package list
|
|
10
|
-
gem sources -a http://gems.github.com
|
|
11
|
-
# install the subtrac package and dependencies
|
|
12
|
-
sudo gem install --include-dependencies ktec-subtrac
|
|
13
|
-
|
|
14
|
-
Note: since gems and ubuntu don't entirely play nicely, its necessary to add the gem path to .bashrc file.
|
|
15
|
-
For all users, you can add it here:
|
|
16
|
-
sudo vi /etc/bash.bashrc
|
|
17
|
-
|
|
18
|
-
...
|
|
19
|
-
export PATH=$PATH:/var/lib/gems/1.8/bin
|
|
20
|
-
|
|
21
|
-
|
|
22
5
|
# Installing on VirtualBox 2.2
|
|
23
6
|
|
|
24
7
|
Start with a Fresh VM Image
|
|
@@ -88,7 +71,15 @@ OR
|
|
|
88
71
|
# add github to the gem sources list
|
|
89
72
|
sudo gem sources -a http://gems.github.com
|
|
90
73
|
# install subtrac gem package
|
|
91
|
-
sudo gem install
|
|
74
|
+
sudo gem install ktec-subtrac
|
|
75
|
+
|
|
76
|
+
Note: since gems and ubuntu don't entirely play nicely, its necessary to add the gem path to .bashrc file.
|
|
77
|
+
For all users, you can add it here:
|
|
78
|
+
sudo vi /etc/bash.bashrc
|
|
79
|
+
|
|
80
|
+
...
|
|
81
|
+
export PATH=$PATH:/var/lib/gems/1.8/bin
|
|
82
|
+
|
|
92
83
|
|
|
93
84
|
## install subtrac server
|
|
94
85
|
sudo subtrac install [--clean]
|
data/VERSION.yml
CHANGED