warcorrespondent 0.0.3 → 0.0.6

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 CHANGED
@@ -10,8 +10,7 @@ begin
10
10
  gem.email = "stefanmaier@gmail.com"
11
11
  gem.homepage = "http://github.com/tliff/warcorrespondent"
12
12
  gem.authors = ["Stefan Maier"]
13
- gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
14
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
13
+ gem.add_dependency(["json"])
15
14
  end
16
15
  Jeweler::GemcutterTasks.new
17
16
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.6
@@ -1,6 +1,7 @@
1
1
  require 'warcorrespondent/reporter.rb'
2
2
  require 'warcorrespondent/uplink.rb'
3
3
  require 'json'
4
+ require 'yaml'
4
5
 
5
6
  module WarCorrespondent
6
7
  CONFIG_FILE = '/etc/warcorrespondent/warcorrespondent.yml'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 3
9
- version: 0.0.3
8
+ - 6
9
+ version: 0.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Stefan Maier
@@ -18,7 +18,7 @@ date: 2010-04-17 00:00:00 +02:00
18
18
  default_executable: warcorrespondent
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
- name: thoughtbot-shoulda
21
+ name: json
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  requirements:
@@ -27,7 +27,7 @@ dependencies:
27
27
  segments:
28
28
  - 0
29
29
  version: "0"
30
- type: :development
30
+ type: :runtime
31
31
  version_requirements: *id001
32
32
  description: warcorrespondent collects data and reports it back to warroom.
33
33
  email: stefanmaier@gmail.com
@@ -54,8 +54,6 @@ files:
54
54
  - lib/warcorrespondent/reporters/linux/net.rb
55
55
  - lib/warcorrespondent/reporters/users.rb
56
56
  - lib/warcorrespondent/uplink.rb
57
- - test/helper.rb
58
- - test/test_warcorrespondent.rb
59
57
  has_rdoc: true
60
58
  homepage: http://github.com/tliff/warcorrespondent
61
59
  licenses: []
@@ -86,6 +84,5 @@ rubygems_version: 1.3.6
86
84
  signing_key:
87
85
  specification_version: 3
88
86
  summary: warcorrespondent reports to the warroom.
89
- test_files:
90
- - test/helper.rb
91
- - test/test_warcorrespondent.rb
87
+ test_files: []
88
+
data/test/helper.rb DELETED
@@ -1,10 +0,0 @@
1
- require 'rubygems'
2
- require 'test/unit'
3
- require 'shoulda'
4
-
5
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
- $LOAD_PATH.unshift(File.dirname(__FILE__))
7
- require 'warcorrespondent'
8
-
9
- class Test::Unit::TestCase
10
- end
@@ -1,7 +0,0 @@
1
- require 'helper'
2
-
3
- class TestWarcorrespondent < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
6
- end
7
- end