keithsalisbury-subtrac 0.1.1 → 0.1.2
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 +21 -0
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- metadata +5 -5
- data/README.rdoc +0 -7
data/README.markdown
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# subtrac
|
|
2
|
+
|
|
3
|
+
Simple and opinionated helper for creating and managing subversion and trac projects.
|
|
4
|
+
|
|
5
|
+
## Installation on a fresh jeos (ubuntu) slice
|
|
6
|
+
|
|
7
|
+
# install some basic requirements
|
|
8
|
+
sudo apt-get install openssh-server
|
|
9
|
+
sudo apt-get install apache2 sqlite
|
|
10
|
+
sudo apt-get install wget
|
|
11
|
+
sudo apt-get install ruby1.8-dev ruby1.8
|
|
12
|
+
sudo apt-get install rubygems
|
|
13
|
+
# add github to package list
|
|
14
|
+
gem sources -a http://gems.github.com
|
|
15
|
+
# install the subtrac package and dependencies
|
|
16
|
+
sudo gem install --include-dependencies keithsalisbury-subtrac
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## Copyright
|
|
20
|
+
|
|
21
|
+
Copyright (c) 2009 =. See LICENSE for details.
|
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@ begin
|
|
|
5
5
|
require 'jeweler'
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "subtrac"
|
|
8
|
-
gem.summary = %Q{
|
|
8
|
+
gem.summary = %Q{Simple and opinionated helper for creating and managing subversion and trac projects.}
|
|
9
9
|
gem.email = "keithsalisbury@gmail.com"
|
|
10
10
|
gem.homepage = "http://github.com/keithsalisbury/subtrac"
|
|
11
11
|
gem.authors = ["="]
|
data/VERSION.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: keithsalisbury-subtrac
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "="
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-04-
|
|
12
|
+
date: 2009-04-16 00:00:00 -07:00
|
|
13
13
|
default_executable: subtrac
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -21,10 +21,10 @@ extensions: []
|
|
|
21
21
|
|
|
22
22
|
extra_rdoc_files:
|
|
23
23
|
- LICENSE
|
|
24
|
-
- README.
|
|
24
|
+
- README.markdown
|
|
25
25
|
files:
|
|
26
26
|
- LICENSE
|
|
27
|
-
- README.
|
|
27
|
+
- README.markdown
|
|
28
28
|
- Rakefile
|
|
29
29
|
- VERSION.yml
|
|
30
30
|
- bin/subtrac
|
|
@@ -186,6 +186,6 @@ rubyforge_project:
|
|
|
186
186
|
rubygems_version: 1.2.0
|
|
187
187
|
signing_key:
|
|
188
188
|
specification_version: 2
|
|
189
|
-
summary:
|
|
189
|
+
summary: Simple and opinionated helper for creating and managing subversion and trac projects.
|
|
190
190
|
test_files: []
|
|
191
191
|
|