Sha256: 928e244ef1b974a35841525b24c7784b68296dca823a01fe7be5b583ea1d7965

Contents?: true

Size: 817 Bytes

Versions: 13

Compression:

Stored size: 817 Bytes

Contents

require 'rubygems'
gem 'hoe', '>= 2.1.0'
require 'hoe'
require 'fileutils'
require './lib/arduino_firmata'

Hoe.plugin :newgem
# Hoe.plugin :website
# Hoe.plugin :cucumberfeatures

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.spec 'arduino_firmata' do
  self.developer 'Sho Hashimoto', 'hashimoto@shokai.org'
  #self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  self.rubyforge_name       = self.name # TODO this is default value
  self.extra_deps         = [['serialport','>= 1.1.0', '< 2.0.0']]

end

require 'newgem/tasks'
Dir['tasks/**/*.rake'].each { |t| load t }

# TODO - want other tests/tasks run by default? Add them to the list
# remove_task :default
# task :default => [:spec, :features]

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
arduino_firmata-0.1.3 Rakefile
arduino_firmata-0.1.2 Rakefile
arduino_firmata-0.1.1 Rakefile
arduino_firmata-0.1.0 Rakefile
arduino_firmata-0.0.9 Rakefile
arduino_firmata-0.0.8 Rakefile
arduino_firmata-0.0.7 Rakefile
arduino_firmata-0.0.6 Rakefile
arduino_firmata-0.0.5 Rakefile
arduino_firmata-0.0.4 Rakefile
arduino_firmata-0.0.3 Rakefile
arduino_firmata-0.0.2 Rakefile
arduino_firmata-0.0.1 Rakefile