codefumes 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -1
- data/Rakefile +2 -2
- data/lib/codefumes.rb +1 -1
- data/website/index.html +58 -9
- data/website/index.txt +3 -29
- metadata +21 -1
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -17,8 +17,8 @@ end
|
|
17
17
|
|
18
18
|
$hoe = Hoe.spec('codefumes') do
|
19
19
|
self.summary = "A client-side implementation of the CodeFumes.com API."
|
20
|
-
extra_dev_deps = [['jscruggs-metric_fu', ">= 1.1.5"]]
|
21
|
-
extra_deps = [['httparty','>= 0.4.3']]
|
20
|
+
self.extra_dev_deps = [['jscruggs-metric_fu', ">= 1.1.5"]]
|
21
|
+
self.extra_deps = [['httparty','>= 0.4.3']]
|
22
22
|
developer('Tom Kersten', 'tom.kersten@cosyntech.com')
|
23
23
|
developer('Joe Banks', 'freemarmoset@gmail.com')
|
24
24
|
end
|
data/lib/codefumes.rb
CHANGED
data/website/index.html
CHANGED
@@ -1,11 +1,60 @@
|
|
1
1
|
<html>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
<head>
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
4
|
+
<title>codefumes</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<h1>CodeFumes.com</h1>
|
8
|
+
<p>
|
9
|
+
<a href="http://codefumes.com" target="blank">CodeFumes.com</a> is a site intended to simplify the process of gathering metrics and associating them with a particular revision of code. The gems described below integrate with this website and are intended to simplify the process of "fleshing out" the pictures you want to draw around your codebase.
|
10
|
+
</p>
|
11
|
+
<h2>Gems</h2>
|
12
|
+
<ul>
|
13
|
+
<li>
|
14
|
+
<ul>
|
15
|
+
<li class="name">codefumes</li>
|
16
|
+
<li>
|
17
|
+
<a href="./codefumes">[examples]</a>
|
18
|
+
</li>
|
19
|
+
<li>
|
20
|
+
<a href="http://codefumes.rubyforge.org/codefumes/codefumes">[rdoc]</a>
|
21
|
+
</li>
|
22
|
+
<li>
|
23
|
+
<a href="http://github.com/cosyn/codefumes.git">[repo]</a>
|
24
|
+
</li>
|
25
|
+
<li>
|
26
|
+
<a href="http://github.com/cosyn/codefumes.git">[bug tracker]</a>
|
27
|
+
</li>
|
28
|
+
</ul>
|
29
|
+
<p class="overview">
|
30
|
+
The 'codefumes' gem is an implementation of the
|
31
|
+
<a href="http://codefumes.com" target="blank">CodeFumes.com</a> API.
|
32
|
+
The intention of the gem is to simplify integration with CodeFumes.com
|
33
|
+
for developers of other libraries & and applications.
|
34
|
+
</p>
|
35
|
+
</li>
|
36
|
+
<li>
|
37
|
+
<ul>
|
38
|
+
<li class="name">codefumes_harvester</li>
|
39
|
+
<li>
|
40
|
+
<a href="./codefumes_harvester">[examples]</a>
|
41
|
+
</li>
|
42
|
+
<li>
|
43
|
+
<a href="http://codefumes.rubyforge.org/codefumes/codefumes_harvester">[rdoc]</a>
|
44
|
+
</li>
|
45
|
+
<li>
|
46
|
+
<a href="http://github.com/cosyn/codefumes_harvester.git">[repo]</a>
|
47
|
+
</li>
|
48
|
+
<li>
|
49
|
+
<a href="http://github.com/cosyn/codefumes_harvester.git">[bug tracker]</a>
|
50
|
+
</li>
|
51
|
+
</ul>
|
52
|
+
<p class="overview">
|
53
|
+
The codefumes_harvester gem provides a set of high-level tools for gathering
|
54
|
+
history and common metrics from a local repository and sending them to
|
55
|
+
<a href="http://codefumes.com" target="blank">CodeFumes.com</a>.
|
56
|
+
</p>
|
57
|
+
</li>
|
58
|
+
</ul>
|
59
|
+
</body>
|
11
60
|
</html>
|
data/website/index.txt
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
h1. codefumes
|
2
2
|
|
3
|
-
|
4
3
|
h2. What
|
5
4
|
|
6
|
-
|
7
5
|
h2. Installing
|
8
6
|
|
9
7
|
<pre syntax="ruby">sudo gem install codefumes</pre>
|
@@ -23,38 +21,14 @@ TODO - create Google Group - codefumes
|
|
23
21
|
|
24
22
|
h2. How to submit patches
|
25
23
|
|
26
|
-
Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section "8b: Submit patch to Google Groups":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
|
27
24
|
|
28
25
|
TODO - pick SVN or Git instructions
|
29
26
|
|
30
|
-
|
31
|
-
|
32
|
-
OOOORRRR
|
33
|
-
|
34
|
-
You can fetch the source from either:
|
35
|
-
|
36
|
-
<% if rubyforge_project_id %>
|
37
|
-
|
38
|
-
* rubyforge: "http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>":http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>
|
39
|
-
|
40
|
-
<pre>git clone git://rubyforge.org/codefumes.git</pre>
|
41
|
-
|
42
|
-
<% else %>
|
43
|
-
|
44
|
-
* rubyforge: MISSING IN ACTION
|
45
|
-
|
46
|
-
TODO - You can not created a RubyForge project, OR have not run <code>rubyforge config</code>
|
47
|
-
yet to refresh your local rubyforge data with this projects' id information.
|
48
|
-
|
49
|
-
When you do this, this message will magically disappear!
|
50
|
-
|
51
|
-
Or you can hack website/index.txt and make it all go away!!
|
52
|
-
|
53
|
-
<% end %>
|
27
|
+
You can fetch the source from github at:
|
54
28
|
|
55
|
-
* github: "http://github.com/
|
29
|
+
* github: "http://github.com/cosyn/codefumes/tree/master":http://github.com/cosyn/codefumes/tree/master
|
56
30
|
|
57
|
-
<pre>git clone git://github.com/
|
31
|
+
<pre>git clone git://github.com/cosyn/codefumes.git</pre>
|
58
32
|
|
59
33
|
|
60
34
|
TODO - add "github_username: username" to ~/.rubyforge/user-config.yml and newgem will reuse it for future projects.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codefumes
|
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
|
- Tom Kersten
|
@@ -13,6 +13,26 @@ cert_chain: []
|
|
13
13
|
date: 2009-09-10 00:00:00 -05:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: httparty
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.4.3
|
25
|
+
version:
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: jscruggs-metric_fu
|
28
|
+
type: :development
|
29
|
+
version_requirement:
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.1.5
|
35
|
+
version:
|
16
36
|
- !ruby/object:Gem::Dependency
|
17
37
|
name: hoe
|
18
38
|
type: :development
|