Sha256: 38718424a5bc49871b29172dff924a7052958d0b17894161768de2f4e33d06e8

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 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'
  load 'tasks/test/setup.rake'
  Bones.setup
rescue LoadError
  load 'tasks/setup.rb'
end

ensure_in_path 'lib'
require 'juicer'

task :default => 'test:run'

PROJ.name = 'juicer'
PROJ.authors = 'Christian Johansen'
PROJ.email = 'christian@cjohansen.no'
PROJ.url = 'http://www.cjohansen.no/en/projects/juicer'
PROJ.version = Juicer::VERSION
PROJ.rubyforge.name = 'juicer'
PROJ.readme_file = 'Readme.rdoc'
PROJ.exclude = %w(tmp$ bak$ ~$ CVS \.svn ^pkg ^doc \.git ^rcov ^test\/data gemspec ^test\/bin$)
PROJ.rdoc.remote_dir = 'juicer'

PROJ.spec.opts << '--color'

PROJ.gem.extras[:post_install_message] = <<-MSG
Juicer does not ship with third party libraries. You probably want to install
Yui Compressor and JsLint now:

juicer install yui_compressor
juicer install jslint

Happy juicing!
MSG

CLOBBER.include "test/data"

depend_on 'cmdparse'
depend_on 'hpricot'
depend_on 'rubyzip'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
juicer-0.2.0 Rakefile