Sha256: 0e1a2737aea656ff5f2c6b885d52e41ba266d30a3e54950a211a7a6cf75be623

Contents?: true

Size: 1.71 KB

Versions: 4

Compression:

Stored size: 1.71 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "rfid-usb-gom-sensor"
    gem.summary = %Q{USB RFID to GOM sensor node gateway}
    gem.description = %Q{
      As an alternative to the gesture driven content selection on the wall
      guests may use an tablet-PC version of the content load application.
      After content selection the android handset must by adssociated with
      the selection for which the tablet PC has an USB RFID sensor installed.
      This gem now implements the RFID GOM sensor node mapping code which runs
      on the tablet PC.
    }.gsub /\n\n/, ''
    gem.email = "dirk.luesebrink@gmail.com"
    gem.homepage = "http://github.com/crux/rfid-usb-gom-sensor"
    gem.authors = ["art+com/dirk luesebrink"]

    gem.add_runtime_dependency "toholio-serialport"
    gem.add_runtime_dependency "gom-script", ">=0.1.4"

    gem.add_development_dependency "rspec"
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION')
    version = File.read('VERSION')
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "rfid-usb-gom-sensor #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rfid-usb-gom-sensor-0.1.6 Rakefile
rfid-usb-gom-sensor-0.1.5 Rakefile
rfid-usb-gom-sensor-0.1.4 Rakefile
rfid-usb-gom-sensor-0.1.3 Rakefile