Sha256: ca57ec7dd09d8fae7f9323fd5749a087d60cbf7d9f82d31cb62873ce74e0442a
Contents?: true
Size: 1.15 KB
Versions: 5
Compression:
Stored size: 1.15 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 ensure_in_path 'lib' require 'juicer' load 'tasks/test/setup.rake' 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
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
cjohansen-juicer-0.2.4 | Rakefile |
cjohansen-juicer-0.2.5 | Rakefile |
juicer-0.2.6 | Rakefile |
juicer-0.2.5 | Rakefile |
juicer-0.2.4 | Rakefile |