Sha256: 2a09a0b04ac401018a6e5536dd6dfba58df30ff792f80c1ad2f0a98aaeb39c45
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end require 'rubygems' require 'cucumber' require 'cucumber/rake/task' namespace :features do Cucumber::Rake::Task.new(:run) do |t| t.cucumber_opts = "features --format pretty" end end desc "Alias for 'features:run'" task :features => 'features:run' ensure_in_path 'lib' require 'jsdoc_helper' task :default => 'spec:run' PROJ.name = 'jsdoc_helper' PROJ.authors = 'Pete Gadomski' PROJ.email = 'pete.gadomski@gmail.com' PROJ.url = 'http://github.com/quentonc/jsdoc_helper/tree/master' PROJ.version = JsdocHelper::VERSION PROJ.rubyforge.name = 'jsdoc_helper' PROJ.readme_file = 'README.rdoc' PROJ.exclude << %w(.DS_Store) PROJ.rdoc.exclude << %w(ext/jsdoc-toolkit) PROJ.spec.opts << '--color' CLEAN.include('test/tmp/**/*', 'test/tmp') # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
quentonc-jsdoc_helper-0.0.2 | Rakefile |