Sha256: 678551c7c9e85d42ef20bc2699024aa595efdef53d304eea8022967075091a73

Contents?: true

Size: 1.27 KB

Versions: 27

Compression:

Stored size: 1.27 KB

Contents

require 'spec/version'
require 'spec/rake/spectask'
require 'rake/rdoctask'

desc 'Default: run specs'
task :default => :spec

desc 'Test the jelly plugin with Rspec.'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.libs << 'lib'
  t.libs << 'spec'
  t.pattern = 'spec/**/*_spec.rb'
  t.verbose = true
end

desc 'Generate documentation for the jelly plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Jelly.'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = ENV["GEM_PREFIX"] ? "#{ENV["GEM_PREFIX"]}-jelly" : "jelly"
    gemspec.summary = "a sweet unobtrusive javascript framework for jQuery and Rails"
    gemspec.description = "Jelly provides a set of tools and conventions for creating rich ajax/javascript web applications with jQuery and Ruby on Rails."
    gemspec.email = "opensource@pivotallabs.com"
    gemspec.homepage = "http://github.com/pivotal/jelly"
    gemspec.authors = ["Pivotal Labs, Inc"]
    gemspec.files.exclude 'spec/**/*'
    gemspec.add_dependency('rails', '>= 2.3.0')
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install jeweler"
end

Version data entries

27 entries across 27 versions & 3 rubygems

Version Path
honkster-jelly-0.8.14 Rakefile
jelly-0.8.10 Rakefile
honkster-jelly-0.8.13 Rakefile
honkster-jelly-0.8.12 Rakefile
honkster-jelly-0.8.11 Rakefile
honkster-jelly-0.8.10 Rakefile
honkster-jelly-0.8.9 Rakefile
honkster-jelly-0.8.8 Rakefile
honkster-jelly-0.8.7 Rakefile
honkster-jelly-0.8.6 Rakefile
btakita-jelly-0.8.5 Rakefile
honkster-jelly-0.8.4 Rakefile
honkster-jelly-0.8.3 Rakefile
honkster-jelly-0.8.2 Rakefile
honkster-jelly-0.8.1 Rakefile
honkster-jelly-0.7.7 Rakefile
honkster-jelly-0.7.6 Rakefile
honkster-jelly-0.7.4 Rakefile
honkster-jelly-0.7.3 Rakefile
honkster-jelly-0.7.2 Rakefile