Sha256: fd593cc3e0953b9a9ce12adc1efa5b938dd5007e0dfb47265ba13c61a1f14ffa

Contents?: true

Size: 1.39 KB

Versions: 12

Compression:

Stored size: 1.39 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "ajaxlibs"
    gem.summary = %Q{helper to load various javascript libraries, locally or through google CDN}
    gem.description = %Q{ajaxlibs provides helpers to load various javascript libraries, specifying version number, locally served or using google CDN}
    gem.email = "fabien@jakimowicz.com"
    gem.homepage = "http://github.com/jakimowicz/ajaxlibs"
    gem.authors = ["Fabien Jakimowicz"]
    gem.add_development_dependency "rspec", ">= 1.2.9"
    # 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 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

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

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "ajaxlibs #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ajaxlibs-0.1.12 Rakefile
ajaxlibs-0.1.11 Rakefile
ajaxlibs-0.1.10 Rakefile
ajaxlibs-0.1.9 Rakefile
ajaxlibs-0.1.8 Rakefile
ajaxlibs-0.1.7 Rakefile
ajaxlibs-0.1.6 Rakefile
ajaxlibs-0.1.4 Rakefile
ajaxlibs-0.1.3 Rakefile
ajaxlibs-0.1.2 Rakefile
ajaxlibs-0.1.1 Rakefile
ajaxlibs-0.1.0 Rakefile