Sha256: 508c1b3553a33ad29a2d04a9ace41c758af9b7831824072b1b619c1a459759de

Contents?: true

Size: 603 Bytes

Versions: 9

Compression:

Stored size: 603 Bytes

Contents

# encoding: utf-8

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn "Run `gem install bundler` to install Bundler."
  exit -1
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems."
  exit e.status_code
end

require 'rake'

require 'rubygems/tasks'
Gem::Tasks.new

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  rdoc.title = "feed_torrents"
end
task :doc => :rdoc

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

task :test    => :spec
task :default => :spec

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
feed_torrents-0.2.2 Rakefile
feed_torrents-0.2.1 Rakefile
feed_torrents-0.2.0 Rakefile
feed_torrents-0.1.5 Rakefile
feed_torrents-0.1.4 Rakefile
feed_torrents-0.1.3 Rakefile
feed_torrents-0.1.2 Rakefile
feed_torrents-0.1.1 Rakefile
feed_torrents-0.1.0 Rakefile