davidrichards-tegu_labs 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown ADDED
@@ -0,0 +1,24 @@
1
+ == Tegu Labs
2
+
3
+ So, this is the collaboration part of Tegu. The basic components:
4
+
5
+ * Logger
6
+ * Links to Repositories
7
+ * API to Issue Tracking
8
+ * Service persistence
9
+ * ACL for collaborators
10
+ * irb, HTML, and RESTful CRUD on logs, notes, documents
11
+ * Impermanent locally running website for project length
12
+
13
+ == Installation
14
+
15
+ sudo gem install davidrichards-tegu_labs
16
+
17
+ === Dependencies
18
+
19
+ * log4r (sudo gem install log4r)
20
+ * god (sudo gem install god)
21
+
22
+ == COPYRIGHT
23
+
24
+ Copyright (c) 2009 David Richards. See LICENSE for details.
data/VERSION.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 0
4
+ :patch: 2
data/lib/tegu_labs.rb ADDED
File without changes
@@ -0,0 +1,8 @@
1
+ $: << File.join(File.dirname(__FILE__), "/../lib")
2
+ require 'rubygems'
3
+ require 'spec'
4
+ require 'tegu_labs'
5
+
6
+ Spec::Runner.configure do |config|
7
+
8
+ end
@@ -0,0 +1,7 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe "TeguLabs" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: davidrichards-tegu_labs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - David Richards
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-18 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: log4r
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.0.5
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: god
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ description: "Collaboration tool for analytical work: project notes, log, repositories, roles, and participants with a website and RESTful API."
36
+ email: davidlamontrichards@gmail.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files: []
42
+
43
+ files:
44
+ - README.markdown
45
+ - VERSION.yml
46
+ - lib/tegu_labs.rb
47
+ - spec/spec_helper.rb
48
+ - spec/tegu_labs_spec.rb
49
+ has_rdoc: true
50
+ homepage: http://github.com/davidrichards/tegu_labs
51
+ post_install_message:
52
+ rdoc_options:
53
+ - --inline-source
54
+ - --charset=UTF-8
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ requirements: []
70
+
71
+ rubyforge_project:
72
+ rubygems_version: 1.2.0
73
+ signing_key:
74
+ specification_version: 2
75
+ summary: Collaboration tool for analytical work.
76
+ test_files: []
77
+