public
Description: Ruby code for getting data from the CurrentCost energy monitor
Homepage:
Clone URL: git://github.com/Floppy/currentcost-ruby.git
 
Floppy (author)
Sun May 17 12:06:03 -0700 2009
commit  ab1f6b82a0f79a2f4909f3499a1a5ea44fa889f6
tree    36225f2a74c1441d17d76a5f88ac10dfca7149aa
parent  6823f1ecd110d93c3a5af6a77e6c2ce446382505
currentcost-ruby / currentcost-ruby.gemspec
100644 16 lines (16 sloc) 0.685 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "currentcost"
  s.version = "0.3.3"
  s.date = "2009-05-11"
  s.summary = "Ruby interface to the CurrentCost energy meter"
  s.email = "james@floppy.org.uk"
  s.homepage = "http://github.com/Floppy/currentcost-ruby"
  s.has_rdoc = true
  s.authors = ["James Smith"]
  s.files = ["README", "COPYING"]
  s.files += ["lib/currentcost.rb", "lib/currentcost/meter.rb", "lib/currentcost/reading.rb", "lib/currentcost/version.rb", "lib/currentcost/exceptions.rb"]
  s.files += ["examples/simple.rb"]
  s.files += ["bin/currentcost_tray_monitor.rb"]
  s.executables = ['currentcost_tray_monitor.rb']
  s.add_dependency('Floppy-rb232', [">= 0.2.4"])
end