codefumes 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +6 -9
  2. data/lib/codefumes.rb +1 -1
  3. 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 |p|
19
- p.developer('Cosyn Technologies', 'devs@codefumes.com')
20
- p.summary = "API gem for the CodeFumes website"
21
- p.extra_deps = [
22
- ['httparty','>= 0.4.3']
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
@@ -7,5 +7,5 @@ require 'codefumes/payload'
7
7
  require 'codefumes/commit'
8
8
 
9
9
  module CodeFumes
10
- VERSION = '0.1.0'
10
+ VERSION = '0.1.1'
11
11
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Cosyn Technologies
7
+ - Tom Kersten
8
+ - Joe Banks
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
12
 
12
- date: 2009-09-08 00:00:00 -05:00
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
- - devs@codefumes.com
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: API gem for the CodeFumes website
90
+ summary: A client-side implementation of the CodeFumes.com API.
109
91
  test_files: []
110
92