Sha256: 23f65d4bc9403d54e4eb12525f0afe4637325d7808ca2c095be734595925104a

Contents?: true

Size: 1.55 KB

Versions: 10

Compression:

Stored size: 1.55 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "sidekiq-cron"
  gem.homepage = "http://github.com/ondrejbartas/sidekiq-cron"
  gem.license = "MIT"
  gem.summary = %Q{Sidekiq Cron helps to add repeated scheduled jobs}
  gem.description = %Q{Enables to set jobs to be run in specified time (using CRON notation)}
  gem.email = "ondrej@bartas.cz"
  gem.authors = ["Ondrej Bartas"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

#TESTING

task :doc do
  system 'sdoc -N .'
end

require 'rake/testtask'
task :default => :test

Rake::TestTask.new(:test) do |t|
  t.test_files = FileList['test/functional/**/*_test.rb', 'test/unit/**/*_test.rb','test/integration/**/*_test.rb']
  t.warning = false
  t.verbose = false
end

namespace :test do
  Rake::TestTask.new(:unit) do |t|
    t.test_files = FileList['test/unit/**/*_test.rb']
    t.warning = false
    t.verbose = false
  end

  Rake::TestTask.new(:functional) do |t|
    t.test_files = FileList['test/functional/**/*_test.rb']
    t.warning = false
    t.verbose = false
  end

  Rake::TestTask.new(:integration) do |t|
    t.test_files = FileList['test/integration/**/*_test.rb']
    t.warning = false
    t.verbose = false
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sidekiq-cron-0.2.0 Rakefile
sidekiq-cron-0.1.9 Rakefile
sidekiq-cron-0.1.8 Rakefile
sidekiq-cron-0.1.7 Rakefile
sidekiq-cron-0.1.6 Rakefile
sidekiq-cron-0.1.5 Rakefile
sidekiq-cron-0.1.4 Rakefile
sidekiq-cron-0.1.3 Rakefile
sidekiq-cron-0.1.2 Rakefile
sidekiq-cron-0.1.0 Rakefile