Sha256: c9f66018d998f3ce87b99e506abf073593b9b8341a732c252c9de84c50fbc0bf
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
require 'rake' require 'rake/testtask' require 'rake/rdoctask' desc 'Default: run unit tests.' task :default => :test begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "sexpistol" gemspec.summary = "An S-Expression Parser Library for Ruby" gemspec.description = "Sexpistol is an easy-to-use S-Expression parser for Ruby. It is fast and has no dependencies." gemspec.email = "aaron@aarongough.com" gemspec.homepage = "http://github.com/aarongough/sexpistol" gemspec.authors = ["Aaron Gough"] gemspec.rdoc_options << '--line-numbers' << '--inline-source' gemspec.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE'] end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end desc 'Test sexpistol.' Rake::TestTask.new(:test) do |t| t.libs << 'lib/*.rb' t.libs << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = true end desc 'Generate documentation for sexpistol.' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Koi' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') rdoc.rdoc_files.include('app/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
sexpistol-0.0.7 | Rakefile |
sexpistol-0.0.6 | Rakefile |
sexpistol-0.0.5 | Rakefile |
sexpistol-0.0.4 | Rakefile |
sexpistol-0.0.3 | Rakefile |
sexpistol-0.0.2 | Rakefile |
sexpistol-0.0.1 | Rakefile |