Sha256: 81992882dde76b2c3252e76dcc30d440dac878420da377be4b6a6251ffd7f9cc

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "fancygrid"
    gem.summary = %Q{Table rendering for rails applications}
    gem.description = %Q{Enables easy table rendering in rails applications}
    gem.email = "giniedp@online.de"
    gem.homepage = "http://github.com/giniedp/fancygrid"
    gem.authors = ["Alexander Graefenstein"]
    # gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake'
require 'rdoc/task'

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fancygrid-2.0.7 Rakefile
fancygrid-2.0.6 Rakefile
fancygrid-2.0.5 Rakefile
fancygrid-2.0.4 Rakefile
fancygrid-2.0.3 Rakefile
fancygrid-2.0.2 Rakefile
fancygrid-2.0.1 Rakefile
fancygrid-2.0.0 Rakefile