Sha256: ea7ccc98ede82f0168195b268d2aa47f1a1ca74f69f443f5d85e72196f24f3a5

Contents?: true

Size: 935 Bytes

Versions: 6

Compression:

Stored size: 935 Bytes

Contents

require 'rubygems'
gem 'hoe', '>= 3.1.0'
require 'hoe'
require 'fileutils'
require './lib/sinatra-cometio'

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 'sinatra-cometio' do
  self.developer 'Sho Hashimoto', 'hashimoto@shokai.org'
  self.rubyforge_name       = self.name # TODO this is default value
  self.extra_deps         = [['sinatra','>= 1.3.3'],
                             ['eventmachine', '>= 1.0.0'],
                             ['json', '>= 1.7.0'],
                             ['sinatra-contrib', '>= 1.3.2'],
                             ['event_emitter', '>= 0.1.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

6 entries across 6 versions & 1 rubygems

Version Path
sinatra-cometio-0.0.8 Rakefile
sinatra-cometio-0.0.7 Rakefile
sinatra-cometio-0.0.6 Rakefile
sinatra-cometio-0.0.5 Rakefile
sinatra-cometio-0.0.4 Rakefile
sinatra-cometio-0.0.3 Rakefile