Sha256: 4c82a18f347d54c36d214f56a7f53f5c770e71f786ce24f7733ea12769c25a0c

Contents?: true

Size: 1.39 KB

Versions: 13

Compression:

Stored size: 1.39 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rdoc/task'
require 'yaml'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "resque_ui"
    gemspec.author = "Kevin Tyll"
    gemspec.email = "kevintyll@gmail.com"
    gemspec.homepage = %q{https://github.com/kevintyll/resque_ui}
    gemspec.summary = "A Rails engine port of the Sinatra app that is included in Chris Wanstrath's resque gem."
    gemspec.description = "A Rails UI for Resque for managing workers, failures and schedules."
  end

  Jeweler::GemcutterTasks.new

rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the resque_ui engine.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the resque_ui engine.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = "ResqueUi #{version}"
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('LICENSE*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
resque_ui-3.2.4 Rakefile
resque_ui-3.2.3 Rakefile
resque_ui-3.2.2 Rakefile
resque_ui-3.2.1 Rakefile
resque_ui-3.2.0 Rakefile
resque_ui-3.1.7 Rakefile
resque_ui-3.1.6 Rakefile
resque_ui-3.1.5 Rakefile
resque_ui-3.1.4 Rakefile
resque_ui-3.1.3 Rakefile
resque_ui-3.1.2 Rakefile
resque_ui-3.1.1 Rakefile
resque_ui-3.1.0 Rakefile