codefumes 0.1.0 → 0.1.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/Rakefile +6 -9
- data/lib/codefumes.rb +1 -1
- metadata +7 -25
data/Rakefile
CHANGED
|
@@ -15,15 +15,12 @@ begin
|
|
|
15
15
|
rescue LoadError
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
$hoe = Hoe.spec('codefumes') do
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
p.extra_dev_deps = [
|
|
25
|
-
['jscruggs-metric_fu', ">= 1.1.5"],
|
|
26
|
-
]
|
|
18
|
+
$hoe = Hoe.spec('codefumes') do
|
|
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']]
|
|
22
|
+
developer('Tom Kersten', 'tom.kersten@cosyntech.com')
|
|
23
|
+
developer('Joe Banks', 'freemarmoset@gmail.com')
|
|
27
24
|
end
|
|
28
25
|
|
|
29
26
|
Dir['tasks/**/*.rake'].each { |t| load t}
|
data/lib/codefumes.rb
CHANGED
metadata
CHANGED
|
@@ -1,37 +1,18 @@
|
|
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Tom Kersten
|
|
8
|
+
- Joe Banks
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
12
|
|
|
12
|
-
date: 2009-09-
|
|
13
|
+
date: 2009-09-10 00:00:00 -05:00
|
|
13
14
|
default_executable:
|
|
14
15
|
dependencies:
|
|
15
|
-
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: httparty
|
|
17
|
-
type: :runtime
|
|
18
|
-
version_requirement:
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 0.4.3
|
|
24
|
-
version:
|
|
25
|
-
- !ruby/object:Gem::Dependency
|
|
26
|
-
name: jscruggs-metric_fu
|
|
27
|
-
type: :development
|
|
28
|
-
version_requirement:
|
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.1.5
|
|
34
|
-
version:
|
|
35
16
|
- !ruby/object:Gem::Dependency
|
|
36
17
|
name: hoe
|
|
37
18
|
type: :development
|
|
@@ -44,7 +25,8 @@ dependencies:
|
|
|
44
25
|
version:
|
|
45
26
|
description: CodeFumes.com[http://codefumes.com] is a service intended to help people involved with software projects who are interested in tracking, sharing, and reviewing metrics/information about a project in relation to the commits of said project's repository. The site supports a small set of 'standard' metrics, but also provides a simple method of supplying and retrieving custom metrics, allowing users to gather any metric they are interested in tracking. The 'codefumes' gem is an implementation of the CodeFumes.com[http://codefumes.com] API. The intention of the gem is to simplify integration with CodeFumes.com for developers of other libraries & and applications. For an example of another library using the current features of this gem, you can refer to the 'codefumes_harvester[http://codefumes.rubyforge.org/codefumes_harvester]' gem.
|
|
46
27
|
email:
|
|
47
|
-
-
|
|
28
|
+
- tom.kersten@cosyntech.com
|
|
29
|
+
- freemarmoset@gmail.com
|
|
48
30
|
executables: []
|
|
49
31
|
|
|
50
32
|
extensions: []
|
|
@@ -105,6 +87,6 @@ rubyforge_project: codefumes
|
|
|
105
87
|
rubygems_version: 1.3.1
|
|
106
88
|
signing_key:
|
|
107
89
|
specification_version: 2
|
|
108
|
-
summary:
|
|
90
|
+
summary: A client-side implementation of the CodeFumes.com API.
|
|
109
91
|
test_files: []
|
|
110
92
|
|